From fd8b04a8e7a715fdc8c8b681f366dabbbcdbb15b Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 9 Jan 2005 20:08:45 +0000 Subject: gst/tta/gstttaparse.c: Fix gcc-2.95 compile (#163485). Original commit message from CVS: Reviewed by: Ronald S. Bultje * gst/tta/gstttaparse.c: (gst_tta_src_event): Fix gcc-2.95 compile (#163485). --- gst/tta/gstttaparse.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gst') diff --git a/gst/tta/gstttaparse.c b/gst/tta/gstttaparse.c index 3c480d9c..3509d359 100644 --- a/gst/tta/gstttaparse.c +++ b/gst/tta/gstttaparse.c @@ -162,11 +162,14 @@ gst_tta_src_event (GstPad * pad, GstEvent * event) case GST_EVENT_SEEK: { if (GST_EVENT_SEEK_FORMAT (event) == GST_FORMAT_TIME) { - GST_DEBUG_OBJECT (ttaparse, "got seek event"); GstEvent *seek_event; - guint64 time = GST_EVENT_SEEK_OFFSET (event); - guint64 seek_frame = time / (FRAME_TIME * 1000000000); - guint64 seekpos = ttaparse->index[seek_frame].pos; + guint64 time; + guint64 seek_frame; + guint64 seekpos; + + time = GST_EVENT_SEEK_OFFSET (event); + seek_frame = time / (FRAME_TIME * 1000000000); + seekpos = ttaparse->index[seek_frame].pos; GST_DEBUG_OBJECT (ttaparse, "seeking to %u", (guint) seekpos); seek_event = -- cgit v1.2.1