mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
h264parser: Fix the type of a parameter
From spec, the value of second_chroma_qp_index_offset is in the range of -12 to +12 inclusive. Fix its type from guint8 to gint8. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3966>
This commit is contained in:
parent
7278c31ea8
commit
bca3a3c923
1 changed files with 1 additions and 1 deletions
|
@ -840,7 +840,7 @@ struct _GstH264PPS
|
|||
guint8 scaling_lists_4x4[6][16];
|
||||
guint8 scaling_lists_8x8[6][64];
|
||||
|
||||
guint8 second_chroma_qp_index_offset;
|
||||
gint8 second_chroma_qp_index_offset;
|
||||
|
||||
gboolean valid;
|
||||
|
||||
|
|
Loading…
Reference in a new issue