diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2011-12-07 15:20:10 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-01-23 11:40:46 -0800 |
commit | 04af2efaae661fd48334bab52f6561450a403f20 (patch) | |
tree | dcc2223a7a6ed7039d4966b1f88ef04e1fa61bf4 /libavcodec/aacenc.h | |
parent | 80d44277e6ae6291a1ddba476939bb394a2ed822 (diff) | |
download | ffmpeg-04af2efaae661fd48334bab52f6561450a403f20.tar.gz |
aacenc: Store channel count in AACEncContext.
Signed-off-by: Alex Converse <alex.converse@gmail.com>
Diffstat (limited to 'libavcodec/aacenc.h')
-rw-r--r-- | libavcodec/aacenc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index 79d542f70a..211c70a805 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -61,6 +61,7 @@ typedef struct AACEncContext { float *samples; ///< saved preprocessed input int samplerate_index; ///< MPEG-4 samplerate index + int channels; ///< channel count const uint8_t *chan_map; ///< channel configuration map ChannelElement *cpe; ///< channel elements |