mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-21 17:21:13 +00:00
av12json: silence a maybe-unitialized warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
parent
e2d143f65d
commit
382ed4630e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue