diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2008-08-21 07:57:51 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2008-08-21 07:57:51 +0000 |
commit | f339908843cce10677c99394bed492691fc95985 (patch) | |
tree | 951650e2de624a9af771bfd947f3c963f418037a /libavcodec/aac.c | |
parent | 4991f3ce3cdf390ffa400558c11c9ed5e11e180f (diff) | |
download | ffmpeg-f339908843cce10677c99394bed492691fc95985.tar.gz |
The comment about channel order for AAC 5.1 audio was not correct, fix it.
Originally committed as revision 14875 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index 61c27638f6..2fd7bb0a73 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -118,7 +118,7 @@ static int output_configure(AACContext *ac, enum ChannelPosition che_pos[4][MAX_ * Set up default 1:1 output mapping. * * For a 5.1 stream the output order will be: - * [ Front Left ] [ Front Right ] [ Center ] [ LFE ] [ Surround Left ] [ Surround Right ] + * [ Center ] [ Front Left ] [ Front Right ] [ LFE ] [ Surround Left ] [ Surround Right ] */ for(i = 0; i < MAX_ELEM_ID; i++) { |