diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:54:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:54:28 +0000 |
commit | bed9dc1662c0d8bea55297fbe5a389749654297c (patch) | |
tree | 85ab934b9a03009567ef5678b48acc3d2bfef639 /libavcodec/vp3.c | |
parent | 4894578b58998d77e1522060786a917cca5320e2 (diff) | |
download | ffmpeg-bed9dc1662c0d8bea55297fbe5a389749654297c.tar.gz |
const
Originally committed as revision 11776 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 1bc4c39aed..387d39b496 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2126,7 +2126,7 @@ static int vp3_decode_init(AVCodecContext *avctx) */ static int vp3_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { Vp3DecodeContext *s = avctx->priv_data; GetBitContext gb; |