From 37d8fb0db35e3ec379e169ade89b604523fbdd47 Mon Sep 17 00:00:00 2001
From: CaiYuHan <240947104@qq.com>
Date: Wed, 15 Sep 2021 10:11:44 +0800
Subject: [PATCH] libavcodec/h2645_parse.h:Add SVC decoding function based on
 Temporal scalability for H.264/AVC

Signed-off-by: CaiYuHan <240947104@qq.com>
---
 libavcodec/h2645_parse.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 mode change 100644 => 100755 libavcodec/h2645_parse.h

diff --git a/libavcodec/h2645_parse.h b/libavcodec/h2645_parse.h
old mode 100644
new mode 100755
index 20a9d35..6958602
--- a/libavcodec/h2645_parse.h
+++ b/libavcodec/h2645_parse.h
@@ -70,6 +70,22 @@ typedef struct H2645NAL {
      * H.264 only, nal_ref_idc
      */
     int ref_idc;
+/**
+ *Add SVC decoding function based on Temporal scalability for H.264/AVC
+*/
+#if SVC_DEC_H264
+	int svc_ext_flag;
+	int idr_flag;
+	int priority_id;
+	int no_inter_layer_pred_flag;
+	int dependency_id;
+	int quality_id;
+	int itemporal_id;
+	int use_ref_base_pic_flag;
+	int discardable_flag;
+	int output_flag;
+	int reserved_three_2bits;
+#endif
 } H2645NAL;
 
 typedef struct H2645RBSP {
-- 
2.29.2

