summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-21 16:08:55 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-21 16:12:08 +0200
commitc717af5c0ab19a9d747c7e5e43b776f0e8e57378 (patch)
treef10d3aa58b91b492aa6e2cb0695235dfae29dc28 /gst
parent51fdc78786412474e77d7d52887356ce29e21e09 (diff)
mpegdemux: Only error out at EOS push failure if we don't have any streams.
This should remove the bogus error messages while still keeping the original intent of this, which is to inform the pipeline/application/user that we could not find any valid streams. There are many reasons why pushing an event can fail, and not all of them are because there's no link downstream (it could be because it was blocked, or flushing).
Diffstat (limited to 'gst')
-rw-r--r--gst/mpegdemux/gstmpegdemux.c27
1 files changed, 21 insertions, 6 deletions
diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c
index 40f778f01..439bb563e 100644
--- a/gst/mpegdemux/gstmpegdemux.c
+++ b/gst/mpegdemux/gstmpegdemux.c
@@ -790,6 +790,19 @@ gst_flups_demux_close_segment (GstFluPSDemux * demux)
}
}
+static inline gboolean
+have_open_streams (GstFluPSDemux * demux)
+{
+ gint id;
+
+ for (id = 0; id < GST_FLUPS_DEMUX_MAX_STREAMS; id++) {
+ if (demux->streams[id])
+ return TRUE;
+ }
+
+ return FALSE;
+}
+
static gboolean
gst_flups_demux_sink_event (GstPad * pad, GstEvent * event)
{
@@ -861,10 +874,11 @@ gst_flups_demux_sink_event (GstPad * pad, GstEvent * event)
}
case GST_EVENT_EOS:
GST_INFO_OBJECT (demux, "Received EOS");
- if (!gst_flups_demux_send_event (demux, event)) {
- GST_WARNING_OBJECT (demux, "failed pushing EOS on streams");
+ if (!gst_flups_demux_send_event (demux, event)
+ && !have_open_streams (demux)) {
+ GST_WARNING_OBJECT (demux, "EOS and no streams open");
GST_ELEMENT_ERROR (demux, STREAM, FAILED,
- ("Internal data stream error."), ("Can't push EOS downstream"));
+ ("Internal data stream error."), ("No valid streams detected"));
}
break;
case GST_EVENT_CUSTOM_DOWNSTREAM:
@@ -2515,10 +2529,11 @@ pause:
/* normal playback, send EOS to all linked pads */
gst_element_no_more_pads (GST_ELEMENT (demux));
GST_LOG_OBJECT (demux, "Sending EOS, at end of stream");
- if (!gst_flups_demux_send_event (demux, gst_event_new_eos ())) {
- GST_WARNING_OBJECT (demux, "failed pushing EOS on streams");
+ if (!gst_flups_demux_send_event (demux, gst_event_new_eos ())
+ && !have_open_streams (demux)) {
+ GST_WARNING_OBJECT (demux, "EOS and no streams open");
GST_ELEMENT_ERROR (demux, STREAM, FAILED,
- ("Internal data stream error."), ("Can't push EOS downstream"));
+ ("Internal data stream error."), ("No valid streams detected"));
}
}
} else {