Browse code

aacenc: Make chan_map const correct

Alex Converse authored on 2011/06/30 06:33:33
Showing 1 changed files
... ...
@@ -61,7 +61,7 @@ typedef struct AACEncContext {
61 61
     int16_t *samples;                            ///< saved preprocessed input
62 62
 
63 63
     int samplerate_index;                        ///< MPEG-4 samplerate index
64
-    uint8_t *chan_map;                           ///< channel configuration map
64
+    const uint8_t *chan_map;                     ///< channel configuration map
65 65
 
66 66
     ChannelElement *cpe;                         ///< channel elements
67 67
     FFPsyContext psy;