diff options
author | Cyril Russo <stage.nexvision@laposte.net> | 2010-05-27 14:50:19 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-05-27 14:50:19 +0000 |
commit | 5d55bb9f11ec955efbe21d055f45aabc7c606b2b (patch) | |
tree | c22f22f23e72558af5ad9eaf2f16594cdfaf608c /libavcodec | |
parent | e84c276f31640d4ae75bce0aa9c82098235c41c8 (diff) | |
download | ffmpeg-5d55bb9f11ec955efbe21d055f45aabc7c606b2b.tar.gz |
aacdec: Clarify a channel mapping comment.
Patch by Cyril Russo >stage nexvision laposte net<
Originally committed as revision 23351 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index 3330e1cefe..bfe766c4e8 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -127,8 +127,8 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id) } case 6: /* Some streams incorrectly code 5.1 audio as SCE[0] CPE[0] CPE[1] SCE[1] - instead of SCE[0] CPE[0] CPE[0] LFE[0]. If we seem to have - encountered such a stream, transfer the LFE[0] element to SCE[1] */ + instead of SCE[0] CPE[0] CPE[1] LFE[0]. If we seem to have + encountered such a stream, transfer the LFE[0] element to the SCE[1]'s mapping */ if (ac->tags_mapped == tags_per_config[ac->m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) { ac->tags_mapped++; return ac->tag_che_map[type][elem_id] = ac->che[TYPE_LFE][0]; |