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:
Mengkejiergeli Ba 2023-02-15 09:32:57 +08:00 committed by GStreamer Marge Bot
parent 7278c31ea8
commit bca3a3c923

View file

@ -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;