From fc28db57ae7ba5cd5d40412aa4c6ff71f57c247b Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 28 Mar 2022 18:38:23 +1100 Subject: [PATCH] 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: --- subprojects/gst-plugins-bad/ext/resindvd/gstpesfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/resindvd/gstpesfilter.c b/subprojects/gst-plugins-bad/ext/resindvd/gstpesfilter.c index 0c4b1fb549..1771b64b4a 100644 --- a/subprojects/gst-plugins-bad/ext/resindvd/gstpesfilter.c +++ b/subprojects/gst-plugins-bad/ext/resindvd/gstpesfilter.c @@ -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;