diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:14:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:14:32 +0000 |
commit | 74dc7448506a203c8981c63e6fcfadd566d9e4eb (patch) | |
tree | 05116341f66b99002e1f073b9665536600304f3b /libavcodec | |
parent | 473dde1700f3939be476b7ebb9fa5e943e291080 (diff) | |
download | ffmpeg-74dc7448506a203c8981c63e6fcfadd566d9e4eb.tar.gz |
const
Originally committed as revision 11790 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/wmadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 740f8b34ea..9e19584193 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -755,7 +755,7 @@ static int wma_decode_frame(WMACodecContext *s, int16_t *samples) static int wma_decode_superframe(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { WMACodecContext *s = avctx->priv_data; int nb_frames, bit_offset, i, pos, len; |