resindvd: silence unused-but-set warning

../ext/resindvd/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/2046>
This commit is contained in:
Matthew Waters 2022-03-28 18:38:23 +11:00 committed by GStreamer Marge Bot
parent 6f95f7263f
commit fc28db57ae

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;