summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-06-21 17:13:07 +0100
committerTim-Philipp Müller <tim@centricular.com>2015-06-21 17:13:07 +0100
commitbd5db4f72f6b34eed808293bccbfad5500badc23 (patch)
tree1b3e96432a815addc9d68a52e515598276f35b05
parent35c819ad7881918244525542d0522f17d49b8578 (diff)
downloadgstreamer-plugins-bad-bd5db4f72f6b34eed808293bccbfad5500badc23.tar.gz
codecparsers: jpeg: add some padding to ScanHdr struct
For bits that we don't parse out at the moment.
-rw-r--r--gst-libs/gst/codecparsers/gstjpegparser.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gst-libs/gst/codecparsers/gstjpegparser.h b/gst-libs/gst/codecparsers/gstjpegparser.h
index 5ba5a358a..98db43618 100644
--- a/gst-libs/gst/codecparsers/gstjpegparser.h
+++ b/gst-libs/gst/codecparsers/gstjpegparser.h
@@ -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 */
};
/**