From e8d24859ca5629198c581b570402e9a459839d7c Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Mon, 18 Jul 2011 14:53:31 -0400 Subject: Fix compilation for unused but not set https://bugzilla.gnome.org/show_bug.cgi?id=654572 --- ext/modplug/gstmodplug.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/modplug') diff --git a/ext/modplug/gstmodplug.cc b/ext/modplug/gstmodplug.cc index b6b59eb12..6faaa0c83 100644 --- a/ext/modplug/gstmodplug.cc +++ b/ext/modplug/gstmodplug.cc @@ -370,15 +370,20 @@ gst_modplug_src_event (GstPad * pad, GstEvent * event) GstSeekType cur_type, stop_type; gboolean flush; gint64 cur, stop; +/* FIXME timestamp is set but not used */ +#if 0 guint64 timestamp; +#endif if (modplug->frequency == 0) { GST_DEBUG_OBJECT (modplug, "no song loaded yet"); break; } +#if 0 timestamp = gst_util_uint64_scale_int (modplug->offset, GST_SECOND, modplug->frequency); +#endif gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &cur, &stop_type, &stop); -- cgit v1.2.3