mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
deinterleave: output channels should be marked as MONO, not FRONT_LEFT, if
we're not preserving input channel positions.
This commit is contained in:
parent
7522cd1595
commit
7aed5a4b4b
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ gst_deinterleave_add_new_pads (GstDeinterleave * self, GstCaps * caps)
|
|||
GstAudioInfo info;
|
||||
GstAudioFormat format = GST_AUDIO_INFO_FORMAT (&self->audio_info);
|
||||
gint rate = GST_AUDIO_INFO_RATE (&self->audio_info);
|
||||
GstAudioChannelPosition position = 0;
|
||||
GstAudioChannelPosition position = GST_AUDIO_CHANNEL_POSITION_MONO;
|
||||
|
||||
/* Set channel position if we know it */
|
||||
if (self->keep_positions)
|
||||
|
|
Loading…
Reference in a new issue