oggdemux: fix wedge when seeking twice quickly in push mode
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Wed, 14 Sep 2011 11:23:19 +0000 (12:23 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 16 Sep 2011 19:07:33 +0000 (20:07 +0100)
This could happen when testing with navseek, and pressing
right and left at roughly the same time. The current chain
is temporarily moved away, and this caused the flush events
not to be sent to the source pads, which would cause the
data queues downstream to reject incoming data after the
seek, and shut down, wedging the pipeline.

Now, I can't really decide whether this is a nasty steaming
hack or a good fix, but it certainly does fix the issue, and
does not seem to break anything else so far.

https://bugzilla.gnome.org/show_bug.cgi?id=621897

ext/ogg/gstoggdemux.c

index 16f559e..ade8645 100644 (file)
@@ -3982,6 +3982,9 @@ gst_ogg_demux_send_event (GstOggDemux * ogg, GstEvent * event)
   GstOggChain *chain = ogg->current_chain;
   gboolean res = TRUE;
 
+  if (!chain)
+    chain = ogg->building_chain;
+
   if (chain) {
     gint i;
 
@@ -3992,6 +3995,8 @@ gst_ogg_demux_send_event (GstOggDemux * ogg, GstEvent * event)
       GST_DEBUG_OBJECT (pad, "Pushing event %" GST_PTR_FORMAT, event);
       res &= gst_pad_push_event (GST_PAD (pad), event);
     }
+  } else {
+    GST_WARNING_OBJECT (ogg, "No chain to forward event to");
   }
   gst_event_unref (event);