diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:21:22 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:21:22 +0000 |
commit | 896b438915c656b877901a8514e70bfcd1915390 (patch) | |
tree | 65b512cb96916e1ed7bbb0d29aa588cddb905c19 /libavcodec/xl.c | |
parent | 1786784259fcd7287db3095874177629b180632e (diff) | |
download | ffmpeg-896b438915c656b877901a8514e70bfcd1915390.tar.gz |
const
Originally committed as revision 11794 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/xl.c')
-rw-r--r-- | libavcodec/xl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c index e7dd7923fb..b48a369b8b 100644 --- a/libavcodec/xl.c +++ b/libavcodec/xl.c @@ -40,7 +40,7 @@ static const int xl_table[32] = { static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { VideoXLContext * const a = avctx->priv_data; AVFrame * const p= (AVFrame*)&a->pic; |