From cfdcb14730afbb596fa7cffea0b7a70a1e3c18ba Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Tue, 24 Mar 2015 16:17:00 +0000 Subject: [PATCH] Revert "audioaggregator: check sink caps are valid" This reverts commit 6d4d0d1cdf7c7531fbf72ce39e1eab1260d20550. Never put code with side effects into an assertion, it can be compiled out --- gst/audiomixer/gstaudioaggregator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/audiomixer/gstaudioaggregator.c b/gst/audiomixer/gstaudioaggregator.c index 647f36a234..b52635015d 100644 --- a/gst/audiomixer/gstaudioaggregator.c +++ b/gst/audiomixer/gstaudioaggregator.c @@ -617,7 +617,7 @@ gst_audio_aggregator_set_sink_caps (GstAudioAggregator * aagg, GstAudioAggregatorPad * pad, GstCaps * caps) { GST_OBJECT_LOCK (pad); - g_assert (gst_audio_info_from_caps (&pad->info, caps)); + gst_audio_info_from_caps (&pad->info, caps); GST_OBJECT_UNLOCK (pad); }