summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux/qtdemux.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-06-25 07:40:26 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-06-25 07:41:43 +0200
commitb9d7f2527ec318e03befee4c11c9d1608ce578fd (patch)
tree2a8f52dfbf158a4217080c58366d9ca43a37feb7 /gst/qtdemux/qtdemux.c
parentd260a92dce54033ff878cad94d234d32dc88cb19 (diff)
qtdemux: Fix uninitialized variables. Fixes build on macosx
Diffstat (limited to 'gst/qtdemux/qtdemux.c')
-rw-r--r--gst/qtdemux/qtdemux.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 27e0200c..ea40ce11 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -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;