modplug: remove unused variable

This commit is contained in:
Luis de Bethencourt 2015-02-24 13:51:24 +00:00
parent 9078702b52
commit 65e5f68437

View file

@ -328,19 +328,10 @@ gst_modplug_do_seek (GstModPlug * modplug, GstEvent * event)
gboolean flush; gboolean flush;
gint64 cur, stop; gint64 cur, stop;
GstSegment seg; GstSegment seg;
/* FIXME timestamp is set but not used */
#if 0
guint64 timestamp;
#endif
if (modplug->frequency == 0) if (modplug->frequency == 0)
goto no_song; goto no_song;
#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, gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &cur,
&stop_type, &stop); &stop_type, &stop);