[vlc-commits] audio: display the channel mapping for 8.1 wav
Jean-Baptiste Kempf
git at videolan.org
Wed Jun 1 21:54:12 CEST 2016
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Jun 1 21:53:44 2016 +0200| [a472d7d2b4cb99031449af13a76d37136ff5af18] | committer: Jean-Baptiste Kempf
audio: display the channel mapping for 8.1 wav
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a472d7d2b4cb99031449af13a76d37136ff5af18
---
src/audio_output/common.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/audio_output/common.c b/src/audio_output/common.c
index 188067c..e2b2f1c 100644
--- a/src/audio_output/common.c
+++ b/src/audio_output/common.c
@@ -207,6 +207,10 @@ const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format )
| AOUT_CHAN_REARCENTER | AOUT_CHAN_MIDDLELEFT
| AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
return "3F2M1R/LFE";
+ case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
+ | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_REARCENTER
+ | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
+ return "3F2M3R/LFE";
}
return "ERROR";
More information about the vlc-commits
mailing list