diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 03:59:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 03:59:06 +0000 |
commit | 1a2c94cb69ebd2c31383552e6b32891977675627 (patch) | |
tree | 7fe1e76e3f47bbd1e16de04ea3c897d73165996e /libavcodec/cavsdec.c | |
parent | 8687f7679dafcc684edaf69297b6139855ed0632 (diff) | |
download | ffmpeg-1a2c94cb69ebd2c31383552e6b32891977675627.tar.gz |
const
Originally committed as revision 11719 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index a9e4cc2b8d..b3849a434d 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -614,7 +614,7 @@ static void cavs_flush(AVCodecContext * avctx) { } static int cavs_decode_frame(AVCodecContext * avctx,void *data, int *data_size, - uint8_t * buf, int buf_size) { + const uint8_t * buf, int buf_size) { AVSContext *h = avctx->priv_data; MpegEncContext *s = &h->s; int input_size; |