mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
qtdemux: Fix uninitialized variables. Fixes build on macosx
This commit is contained in:
parent
d260a92dce
commit
b9d7f2527e
1 changed files with 5 additions and 5 deletions
|
@ -2165,11 +2165,11 @@ gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
|
|||
GstBuffer *buf = NULL;
|
||||
QtDemuxStream *stream;
|
||||
guint64 min_time;
|
||||
guint64 offset;
|
||||
guint64 timestamp;
|
||||
guint64 duration;
|
||||
gboolean keyframe;
|
||||
guint size;
|
||||
guint64 offset = 0;
|
||||
guint64 timestamp = GST_CLOCK_TIME_NONE;
|
||||
guint64 duration = 0;
|
||||
gboolean keyframe = FALSE;
|
||||
guint size = 0;
|
||||
gint index;
|
||||
gint i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue