[vlc-commits] Audio: display a coherent channel order for 6.1 vorbis
Jean-Baptiste Kempf
git at videolan.org
Mon Aug 20 11:53:36 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Aug 20 11:52:55 2012 +0200| [f26c823b76c930c2b94aab9e396a0c7b9ba8e209] | committer: Jean-Baptiste Kempf
Audio: display a coherent channel order for 6.1 vorbis
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f26c823b76c930c2b94aab9e396a0c7b9ba8e209
---
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 502cc99..c12a7a9 100644
--- a/src/audio_output/common.c
+++ b/src/audio_output/common.c
@@ -372,6 +372,10 @@ const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format )
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
| AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
return "3F2M2R/LFE";
+ case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
+ | AOUT_CHAN_REARCENTER | AOUT_CHAN_MIDDLELEFT
+ | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
+ return "3F2M1R/LFE";
}
return "ERROR";
More information about the vlc-commits
mailing list