diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 04:14:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 04:14:04 +0000 |
commit | fb2cf1bcf0f97cf3110a4e88098db1b7aa87fda0 (patch) | |
tree | cdc76fff0a04fefebb26975f38335da3af033bcb /libavcodec/ffv1.c | |
parent | bd0e945f8e3f9d6c64c58d469e539307a5413253 (diff) | |
download | ffmpeg-fb2cf1bcf0f97cf3110a4e88098db1b7aa87fda0.tar.gz |
const
Originally committed as revision 11724 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r-- | libavcodec/ffv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 0131b837cf..d0f2efbfe3 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -936,7 +936,7 @@ static int decode_init(AVCodecContext *avctx) return 0; } -static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size){ +static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size){ FFV1Context *f = avctx->priv_data; RangeCoder * const c= &f->c; const int width= f->width; |