mpegdemux: silence unused-but-set werror

../gst/mpegdemux/gstpesfilter.c:117:11: error: variable 'STD_buffer_size_bound' set but not used [-Werror,-Wunused-but-set-variable]
  guint16 STD_buffer_size_bound;
          ^

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2044>
This commit is contained in:
Matthew Waters 2022-03-28 15:56:22 +11:00 committed by GStreamer Marge Bot
parent 432354e6d4
commit 063ca24bd8

View file

@ -114,7 +114,7 @@ gst_pes_filter_parse (GstPESFilter * filter)
guint32 start_code;
gboolean STD_buffer_bound_scale G_GNUC_UNUSED;
guint16 STD_buffer_size_bound;
guint16 STD_buffer_size_bound G_GNUC_UNUSED;
const guint8 *data;
gint avail, datalen;
gboolean have_size = FALSE;