From 382ed4630e69e6a569aab37503da58a1f35bcd11 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Wed, 13 Nov 2024 16:58:15 +1100 Subject: [PATCH] av12json: silence a maybe-unitialized warning Part-of: --- subprojects/gst-plugins-bad/ext/codec2json/gstav12json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/codec2json/gstav12json.c b/subprojects/gst-plugins-bad/ext/codec2json/gstav12json.c index 5bc8907eb5..e457d8f252 100644 --- a/subprojects/gst-plugins-bad/ext/codec2json/gstav12json.c +++ b/subprojects/gst-plugins-bad/ext/codec2json/gstav12json.c @@ -869,7 +869,7 @@ gst_av1_2_json_chain (GstPad * sinkpad, GstObject * object, GstBuffer * in_buf) { GstAV12json *self = GST_AV1_2_JSON (object); JsonObject *json = self->json; - GstAV1ParserResult pres; + GstAV1ParserResult pres = GST_AV1_PARSER_OK; GstAV1OBU obu; GstBuffer *out_buf; gchar *json_string;