mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
audio: Don't check for channel positions in valid order when converting to a channel mask
This commit is contained in:
parent
08a6621b2d
commit
bb3eb93ee9
1 changed files with 2 additions and 1 deletions
|
@ -1098,7 +1098,8 @@ gboolean
|
||||||
gst_audio_channel_positions_to_mask (const GstAudioChannelPosition * position,
|
gst_audio_channel_positions_to_mask (const GstAudioChannelPosition * position,
|
||||||
gint channels, guint64 * channel_mask)
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue