diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:13:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:13:38 +0000 |
commit | fbdad670e432b9e422e360a59b012ce92dc735c6 (patch) | |
tree | de36ed65bc94d62d3c537afd6c4acf5c970d0f00 /libavcodec/h263dec.c | |
parent | 10313fe08e4f7b8261ef27f9edb3341f7e789b23 (diff) | |
download | ffmpeg-fbdad670e432b9e422e360a59b012ce92dc735c6.tar.gz |
const
Originally committed as revision 11761 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 9cb6295185..eddaadc837 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -322,7 +322,7 @@ static int decode_slice(MpegEncContext *s){ int ff_h263_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { MpegEncContext *s = avctx->priv_data; int ret; |