[FFmpeg-cvslog] aacenc: Make chan_map const correct

Alex Converse git at videolan.org
Fri Jul 1 05:45:51 CEST 2011


ffmpeg | branch: master | Alex Converse <alex.converse at gmail.com> | Wed Jun 29 14:33:33 2011 -0700| [ce2649af3d012d36d2f70d77867f18270f0e296d] | committer: Alex Converse

aacenc: Make chan_map const correct

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ce2649af3d012d36d2f70d77867f18270f0e296d
---

 libavcodec/aacenc.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index 3f590fe..acd185a 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;



More information about the ffmpeg-cvslog mailing list