From 26e1c2d628a024da6b72e5ce6ba706f27e869a00 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Sun, 16 Oct 2011 11:32:41 +0100 Subject: [PATCH] oggdemux: do not retry seeking indefinitely https://bugzilla.gnome.org/show_bug.cgi?id=661897 --- ext/ogg/gstoggdemux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index c883d12733..3a880d48d5 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -3098,6 +3098,7 @@ gst_ogg_demux_get_duration_push (GstOggDemux * ogg, int flags) } else { GST_INFO_OBJECT (ogg, "Seek failed, duration will stay unknown"); ogg->push_state = PUSH_PLAYING; + ogg->push_disable_seeking = TRUE; return FALSE; } }