1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

aacenc: Make chan_map const correct

This commit is contained in:
Alex Converse 2011-06-29 14:33:33 -07:00
parent 812f2376ee
commit ce2649af3d

View File

@ -61,7 +61,7 @@ typedef struct AACEncContext {
int16_t *samples; ///< saved preprocessed input int16_t *samples; ///< saved preprocessed input
int samplerate_index; ///< MPEG-4 samplerate index 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 ChannelElement *cpe; ///< channel elements
FFPsyContext psy; FFPsyContext psy;