mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
libs: codecparsers: H266 GstH266RefPicListStruct's abs_delta_poc_st should be 16 bits
Its value range is 0~(2^15 − 1) according to the spec. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5710>
This commit is contained in:
parent
9f79d39b1b
commit
5b768ce0cc
1 changed files with 1 additions and 1 deletions
|
@ -1116,7 +1116,7 @@ struct _GstH266RefPicListStruct {
|
|||
guint8 ltrp_in_header_flag;
|
||||
guint8 inter_layer_ref_pic_flag[GST_H266_MAX_REF_ENTRIES];
|
||||
guint8 st_ref_pic_flag[GST_H266_MAX_REF_ENTRIES];
|
||||
guint8 abs_delta_poc_st[GST_H266_MAX_REF_ENTRIES];
|
||||
guint16 abs_delta_poc_st[GST_H266_MAX_REF_ENTRIES];
|
||||
guint8 strp_entry_sign_flag[GST_H266_MAX_REF_ENTRIES];
|
||||
guint8 rpls_poc_lsb_lt[GST_H266_MAX_REF_ENTRIES];
|
||||
guint num_short_term_pic;
|
||||
|
|
Loading…
Reference in a new issue