summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.h
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2011-06-29 14:33:33 -0700
committerAlex Converse <alex.converse@gmail.com>2011-06-29 17:37:31 -0700
commitce2649af3d012d36d2f70d77867f18270f0e296d (patch)
treed055af1d71e8a02b976be47d259f76edde4b2f90 /libavcodec/aacenc.h
parent812f2376eecc19c40a95ade1f7a43b762106e0f7 (diff)
aacenc: Make chan_map const correct
Diffstat (limited to 'libavcodec/aacenc.h')
-rw-r--r--libavcodec/aacenc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index 3f590fefea..acd185a809 100644
--- a/libavcodec/aacenc.h
+++ b/libavcodec/aacenc.h
@@ -61,7 +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
+ const uint8_t *chan_map; ///< channel configuration map
ChannelElement *cpe; ///< channel elements
FFPsyContext psy;