audio: Don't check for channel positions in valid order when converting to a channel mask

This commit is contained in:
Sebastian Dröge 2012-01-09 08:24:23 +01:00
parent 08a6621b2d
commit bb3eb93ee9

View 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);
}
/**