From bd5db4f72f6b34eed808293bccbfad5500badc23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 21 Jun 2015 17:13:07 +0100 Subject: [PATCH] codecparsers: jpeg: add some padding to ScanHdr struct For bits that we don't parse out at the moment. --- gst-libs/gst/codecparsers/gstjpegparser.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gst-libs/gst/codecparsers/gstjpegparser.h b/gst-libs/gst/codecparsers/gstjpegparser.h index 5ba5a358ae..98db436186 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 */ }; /**