audio: Don't check for channel positions in valid order when converting to a channel...
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 9 Jan 2012 07:24:23 +0000 (08:24 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 9 Jan 2012 07:24:23 +0000 (08:24 +0100)
gst-libs/gst/audio/audio.c

index bb287b5..f0acfb5 100644 (file)
@@ -1098,7 +1098,8 @@ gboolean
 gst_audio_channel_positions_to_mask (const GstAudioChannelPosition * position,
     gint channels, guint64 * channel_mask)
 {
-  return check_valid_channel_positions (position, channels, TRUE, channel_mask);
+  return check_valid_channel_positions (position, channels, FALSE,
+      channel_mask);
 }
 
 /**