mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
h264parse: Start slice header parsing work
This commit is contained in:
parent
e1cfd384d6
commit
e55fb077e6
1 changed files with 8 additions and 0 deletions
|
@ -81,6 +81,14 @@ struct _GstH264Parse
|
||||||
GstH264Pps *pps_buffers[MAX_PPS_COUNT];
|
GstH264Pps *pps_buffers[MAX_PPS_COUNT];
|
||||||
GstH264Pps *pps; /* Current PPS */
|
GstH264Pps *pps; /* Current PPS */
|
||||||
|
|
||||||
|
/* slice header */
|
||||||
|
guint8 first_mb_in_slice;
|
||||||
|
guint8 slice_type;
|
||||||
|
guint8 pps_id;
|
||||||
|
guint32 frame_num;
|
||||||
|
gboolean field_pic_flag;
|
||||||
|
gboolean bottom_field_flag;
|
||||||
|
|
||||||
/* SEI: supplemental enhancement messages */
|
/* SEI: supplemental enhancement messages */
|
||||||
/* buffering period */
|
/* buffering period */
|
||||||
guint32 initial_cpb_removal_delay[32];
|
guint32 initial_cpb_removal_delay[32];
|
||||||
|
|
Loading…
Reference in a new issue