codecparsers: jpeg: add some padding to ScanHdr struct

For bits that we don't parse out at the moment.
This commit is contained in:
Tim-Philipp Müller 2015-06-21 17:13:07 +01:00
parent 35c819ad78
commit bd5db4f72f

View file

@ -303,6 +303,12 @@ struct _GstJpegScanHdr
{
guint8 num_components; /* 1 .. 4 */
GstJpegScanComponent components[GST_JPEG_MAX_SCAN_COMPONENTS];
/*< private >*/
guint8 _reserved1; /* Ss */
guint8 _reserved2; /* Se */
guint8 _reserved3; /* Al */
guint8 _reserved4; /* Ah */
};
/**