[FFmpeg-cvslog] mlp_parser: fix the channel mask value used for the top surround channel

Tim Walker git at videolan.org
Sun Feb 26 05:21:48 CET 2012


ffmpeg | branch: master | Tim Walker <tdskywalker at gmail.com> | Sat Feb 25 22:33:48 2012 +0100| [0a9efe4c6eb48bf863e2e630b3ad907a198961c5] | committer: Justin Ruggles

mlp_parser: fix the channel mask value used for the top surround channel

Signed-off-by: Justin Ruggles <justin.ruggles at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0a9efe4c6eb48bf863e2e630b3ad907a198961c5
---

 libavcodec/mlp_parser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/mlp_parser.c b/libavcodec/mlp_parser.c
index 3bf38c7..1879e00 100644
--- a/libavcodec/mlp_parser.c
+++ b/libavcodec/mlp_parser.c
@@ -82,7 +82,7 @@ static const uint64_t thd_layout[13] = {
     AV_CH_FRONT_LEFT_OF_CENTER|AV_CH_FRONT_RIGHT_OF_CENTER, // LRc
     AV_CH_BACK_LEFT|AV_CH_BACK_RIGHT,                       // LRrs
     AV_CH_BACK_CENTER,                                      // Cs
-    AV_CH_TOP_BACK_CENTER,                                  // Ts
+    AV_CH_TOP_CENTER,                                       // Ts
     AV_CH_SIDE_LEFT|AV_CH_SIDE_RIGHT,                       // LRsd
     AV_CH_WIDE_LEFT|AV_CH_WIDE_RIGHT,                       // LRw
     AV_CH_TOP_FRONT_CENTER,                                 // Cvh



More information about the ffmpeg-cvslog mailing list