diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 04:16:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 04:16:26 +0000 |
commit | c82fbf7fba0c4f70b9563bb395158e97213405c8 (patch) | |
tree | b44fd8c2881e86e9af78d58dc15011124a5b12e3 /libavcodec/flashsv.c | |
parent | 1545c5e5350a1926febdfc9a58d2d86758a582a6 (diff) | |
download | ffmpeg-c82fbf7fba0c4f70b9563bb395158e97213405c8.tar.gz |
const
Originally committed as revision 11726 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flashsv.c')
-rw-r--r-- | libavcodec/flashsv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c index 0be0e464f5..842a7ccaf8 100644 --- a/libavcodec/flashsv.c +++ b/libavcodec/flashsv.c @@ -102,7 +102,7 @@ static int flashsv_decode_init(AVCodecContext *avctx) static int flashsv_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { FlashSVContext *s = avctx->priv_data; int h_blocks, v_blocks, h_part, v_part, i, j; |