Revert "audioaggregator: check sink caps are valid"

This reverts commit 6d4d0d1cdf.

Never put code with side effects into an assertion, it can be compiled out
This commit is contained in:
Luis de Bethencourt 2015-03-24 16:17:00 +00:00
parent 6d4d0d1cdf
commit cfdcb14730

View file

@ -617,7 +617,7 @@ gst_audio_aggregator_set_sink_caps (GstAudioAggregator * aagg,
GstAudioAggregatorPad * pad, GstCaps * caps) GstAudioAggregatorPad * pad, GstCaps * caps)
{ {
GST_OBJECT_LOCK (pad); 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); GST_OBJECT_UNLOCK (pad);
} }