diff options
author | Michael Niedermayer | 2008-02-01 16:16:40 +0000 |
---|---|---|
committer | Michael Niedermayer | 2008-02-01 16:16:40 +0000 |
commit | 7e5cdb5b1bcdc7ac71a426850de7ed40df420d39 (patch) | |
tree | 3f995eba689e302101c72c2f63040d3f5923e919 /libavcodec/vp56.c | |
parent | 74dc7448506a203c8981c63e6fcfadd566d9e4eb (diff) |
const
Originally committed as revision 11791 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56.c')
-rw-r--r-- | libavcodec/vp56.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index 8b2a61a9e2..ca6ae76f9e 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -495,7 +495,7 @@ static int vp56_size_changed(AVCodecContext *avctx) } int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { vp56_context_t *s = avctx->priv_data; AVFrame *const p = s->framep[VP56_FRAME_CURRENT]; |