From 3472efda75566540ef5b7396f83dd4b1bb689afd Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Wed, 10 Apr 2013 18:09:19 -0300 Subject: [PATCH] dashdemux: remove wrong asserts Those asserts should be the contrary that they are. And also the surround functions should already check that. Removing them. --- ext/dash/gstdashdemux.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/dash/gstdashdemux.c b/ext/dash/gstdashdemux.c index a14b223857..a34a8afe13 100644 --- a/ext/dash/gstdashdemux.c +++ b/ext/dash/gstdashdemux.c @@ -972,7 +972,6 @@ gst_dash_demux_expose_streams (GstDashDemux * demux) GST_LOG_OBJECT (demux, "Exposing stream %d %" GST_PTR_FORMAT, stream->index, stream->input_caps); - g_assert (stream->pad == NULL); gst_element_add_pad (GST_ELEMENT (demux), gst_object_ref (stream->pad)); } gst_element_no_more_pads (GST_ELEMENT_CAST (demux)); @@ -989,7 +988,6 @@ gst_dash_demux_remove_streams (GstDashDemux * demux, GSList * streams) GST_LOG_OBJECT (demux, "Removing stream %d %" GST_PTR_FORMAT, stream->index, stream->input_caps); - g_assert (stream->pad == NULL); gst_pad_push_event (stream->pad, gst_event_ref (eos)); gst_pad_set_active (stream->pad, FALSE); gst_element_remove_pad (GST_ELEMENT (demux), stream->pad);