From 341a8009548348054c9fa4b45d548271636461e2 Mon Sep 17 00:00:00 2001 From: Doug Nazar Date: Sat, 3 Aug 2019 05:21:29 -0400 Subject: [PATCH] mpegdemux: Finish setting up stream before adding pad. --- gst/mpegdemux/gstmpegdemux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c index cbcfb79..8f00918 100644 --- a/gst/mpegdemux/gstmpegdemux.c +++ b/gst/mpegdemux/gstmpegdemux.c @@ -536,6 +536,9 @@ gst_ps_demux_get_stream (GstPsDemux * demux, gint id, gint type) GST_DEBUG_OBJECT (demux, "adding pad for stream id 0x%02x type 0x%02x", id, type); + demux->streams[id] = stream; + demux->streams_found[demux->found_count++] = stream; + if (demux->need_no_more_pads) { gst_element_add_pad (GST_ELEMENT (demux), stream->pad); gst_flow_combiner_add_pad (demux->flowcombiner, stream->pad); @@ -547,9 +550,6 @@ gst_ps_demux_get_stream (GstPsDemux * demux, gint id, gint type) "but already signalled no-more-pads; not adding"); gst_object_ref_sink (stream->pad); } - - demux->streams[id] = stream; - demux->streams_found[demux->found_count++] = stream; } return stream; -- 2.7.4