diff options
author | Alex Converse <alex.converse@gmail.com> | 2008-10-06 16:18:18 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-10-06 16:18:18 +0000 |
commit | 5c2cb17206b71b67304f5a9d3caeac5ab2b471ab (patch) | |
tree | 3843fac3037a4ccf5db74840a97e3fd3ffe8719c /libavcodec | |
parent | 88de95c2f9e4a6e08149e1ce731a5ce7db01a8e8 (diff) | |
download | ffmpeg-5c2cb17206b71b67304f5a9d3caeac5ab2b471ab.tar.gz |
Correct documentation of ch_select array.
Patch by Alex Converse (alex converse gmail com)
Originally committed as revision 15574 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 0a9cc81604..6c5de4264a 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -190,8 +190,8 @@ typedef struct { int num_coupled; ///< number of target elements enum RawDataBlockType type[8]; ///< Type of channel element to be coupled - SCE or CPE. int id_select[8]; ///< element id - int ch_select[8]; /**< [0] shared list of gains; [1] list of gains for left channel; - * [2] list of gains for right channel; [3] lists of gains for both channels + int ch_select[8]; /**< [0] shared list of gains; [1] list of gains for right channel; + * [2] list of gains for left channel; [3] lists of gains for both channels */ float gain[16][120]; } ChannelCoupling; |