summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.h
diff options
context:
space:
mode:
authorNathan Caldwell <saintdev@gmail.com>2011-06-19 22:29:37 -0600
committerAlex Converse <alex.converse@gmail.com>2011-06-27 21:49:01 -0700
commit1bb52045d3a6eb3fa35dbe8c9775ae07329e4cd6 (patch)
treef40bf7a5a969f6d9663fdb5898cf40801ef40332 /libavcodec/aacenc.h
parent8dbaa5bd695e9f0fc3f7bbf52a76fd0d7caa2b80 (diff)
aacenc: Save channel configuration for later use.
Diffstat (limited to 'libavcodec/aacenc.h')
-rw-r--r--libavcodec/aacenc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index 067a9b04f3..3f590fefea 100644
--- a/libavcodec/aacenc.h
+++ b/libavcodec/aacenc.h
@@ -61,6 +61,7 @@ typedef struct AACEncContext {
int16_t *samples; ///< saved preprocessed input
int samplerate_index; ///< MPEG-4 samplerate index
+ uint8_t *chan_map; ///< channel configuration map
ChannelElement *cpe; ///< channel elements
FFPsyContext psy;