diff options
author | James Almer <jamrial@gmail.com> | 2023-06-30 22:20:28 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-07-01 19:41:12 -0300 |
commit | a77f5019f5731d79eb6f6dee7c3eb2d9d447ef2c (patch) | |
tree | 485758a74610b49988451ed9ed58622ddee2bcdf /libavcodec/cbs_h266.h | |
parent | e7f152a8c2214f5d82dccdc49734f050469f5869 (diff) | |
download | ffmpeg-a77f5019f5731d79eb6f6dee7c3eb2d9d447ef2c.tar.gz |
avcodec/cbs_h266: store SubpicIdVal in the context
And use it to derive CurrSubpicIdx
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/cbs_h266.h')
-rw-r--r-- | libavcodec/cbs_h266.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cbs_h266.h b/libavcodec/cbs_h266.h index be3c744426..9e823919af 100644 --- a/libavcodec/cbs_h266.h +++ b/libavcodec/cbs_h266.h @@ -552,6 +552,7 @@ typedef struct H266RawPPS { uint16_t num_tiles_in_pic; uint16_t slice_height_in_ctus[VVC_MAX_SLICES]; uint16_t num_slices_in_subpic[VVC_MAX_SLICES]; + uint16_t sub_pic_id_val[VVC_MAX_SLICES]; } H266RawPPS; typedef struct H266RawAUD { |