summaryrefslogtreecommitdiff
path: root/libavcodec/hevc_ps.h
diff options
context:
space:
mode:
authorXu Guangxin <guangxin.xu@intel.com>2020-05-12 21:42:49 +0800
committerLinjie Fu <linjie.fu@intel.com>2020-05-27 14:39:36 +0800
commit939a4db227be629b7ff5492c6cc7cd75f40bf0f8 (patch)
treeca4bc4d3fd7106ca024a3c9cdceb9757e247e802 /libavcodec/hevc_ps.h
parentd5f87f85675cd7893200590a7d123622878fd9fc (diff)
lavc/hevc: Add poc_msb_present filed in LongTermRPS
delta_poc_msb_present_flag is needed in find_ref_idx() to indicate whether MSB of POC should be taken into account. Details in 8.3.2. Signed-off-by: Xu Guangxin <guangxin.xu@intel.com> Signed-off-by: Linjie Fu <linjie.fu@intel.com>
Diffstat (limited to 'libavcodec/hevc_ps.h')
-rw-r--r--libavcodec/hevc_ps.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/hevc_ps.h b/libavcodec/hevc_ps.h
index 8e1bccdaaf..238edd3ddc 100644
--- a/libavcodec/hevc_ps.h
+++ b/libavcodec/hevc_ps.h
@@ -41,6 +41,7 @@ typedef struct ShortTermRPS {
typedef struct LongTermRPS {
int poc[32];
+ uint8_t poc_msb_present[32];
uint8_t used[32];
uint8_t nb_refs;
} LongTermRPS;