summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatej Knopp <matej.knopp@gmail.com>2013-09-02 22:54:32 +0200
committerTim-Philipp Müller <tim@centricular.net>2013-09-02 23:24:08 +0100
commite43d1959a866ebcc838424db412095426428a7f5 (patch)
tree0b4471c447406f1689231c084fb99e38a68408d8
parentef7a8c2ca86590d994f6cf768070d75b05dd7b61 (diff)
downloadgstreamer-plugins-bad-e43d1959a866ebcc838424db412095426428a7f5.tar.gz
mpegdemux: send events on pads that are not linked
Someone might be waiting for certain events with a probe. https://bugzilla.gnome.org/show_bug.cgi?id=707317
-rw-r--r--gst/mpegdemux/gstmpegdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c
index 2b57d70d1..ec7f47524 100644
--- a/gst/mpegdemux/gstmpegdemux.c
+++ b/gst/mpegdemux/gstmpegdemux.c
@@ -707,7 +707,7 @@ gst_flups_demux_send_event (GstFluPSDemux * demux, GstEvent * event)
for (i = 0; i < count; i++) {
GstFluPSStream *stream = demux->streams_found[i];
- if (stream && !stream->notlinked) {
+ if (stream) {
(void) gst_event_ref (event);
if (!gst_pad_push_event (stream->pad, event)) {