diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 13:32:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 13:32:41 +0000 |
commit | 9bb5e9e945417f2de94a9db24914a3e5723baccf (patch) | |
tree | e8ba20e56dba8fa5a2f8646335a015a2728e7a0d | |
parent | 99fb79b55ad9e6be52c16f2fd794f350bd76154a (diff) | |
download | ffmpeg-9bb5e9e945417f2de94a9db24914a3e5723baccf.tar.gz |
const
Originally committed as revision 11729 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h261dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index f35f79185e..264a7d3f58 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -540,7 +540,7 @@ static int get_consumed_bytes(MpegEncContext *s, int buf_size){ static int h261_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { H261Context *h= avctx->priv_data; MpegEncContext *s = &h->s; |