From d7bcf7206f081c5503489233733fa8d3b89f37e7 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 30 Mar 2013 10:25:24 +0100 Subject: [PATCH] mpegpsdemux: push stream start event --- gst/mpegdemux/gstmpegdemux.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c index cd8f5c73d8..b2734b0439 100644 --- a/gst/mpegdemux/gstmpegdemux.c +++ b/gst/mpegdemux/gstmpegdemux.c @@ -349,6 +349,7 @@ gst_flups_demux_create_stream (GstFluPSDemux * demux, gint id, gint stream_type) GstFluPSDemuxClass *klass = GST_FLUPS_DEMUX_GET_CLASS (demux); GstCaps *caps; GstClockTime threshold = SEGMENT_THRESHOLD; + gchar *stream_id; name = NULL; template = NULL; @@ -468,6 +469,12 @@ gst_flups_demux_create_stream (GstFluPSDemux * demux, gint id, gint stream_type) /* needed for set_caps to work */ gst_pad_set_active (stream->pad, TRUE); + stream_id = + gst_pad_create_stream_id_printf (stream->pad, GST_ELEMENT_CAST (demux), + "%02x", id); + gst_pad_push_event (stream->pad, gst_event_new_stream_start (stream_id)); + g_free (stream_id); + gst_pad_set_caps (stream->pad, caps); gst_caps_unref (caps); GST_DEBUG_OBJECT (demux, "create pad %s, caps %" GST_PTR_FORMAT, name, caps);