mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
matroska: Fix unitialized variable.
Yes, it's stupid, but macosx compilers are even more stupid.
This commit is contained in:
parent
3ac6f5e48b
commit
188725811f
1 changed files with 1 additions and 1 deletions
|
@ -5362,7 +5362,7 @@ gst_matroska_demux_chain (GstPad * pad, GstBuffer * buffer)
|
||||||
GstEbmlRead *ebml = GST_EBML_READ (demux);
|
GstEbmlRead *ebml = GST_EBML_READ (demux);
|
||||||
guint available;
|
guint available;
|
||||||
GstFlowReturn ret = GST_FLOW_OK;
|
GstFlowReturn ret = GST_FLOW_OK;
|
||||||
guint needed;
|
guint needed = 0;
|
||||||
guint32 id;
|
guint32 id;
|
||||||
guint64 length;
|
guint64 length;
|
||||||
gchar *name;
|
gchar *name;
|
||||||
|
|
Loading…
Reference in a new issue