From: Alex Converse Date: Wed, 29 Jun 2011 21:33:33 +0000 (-0700) Subject: aacenc: Make chan_map const correct X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ce2649af3d012d36d2f70d77867f18270f0e296d;p=coroid%2Flibav_saccubus.git aacenc: Make chan_map const correct --- diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index 3f590fefe..acd185a80 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;