diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:16:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:16:40 +0000 |
commit | 7e5cdb5b1bcdc7ac71a426850de7ed40df420d39 (patch) | |
tree | 3f995eba689e302101c72c2f63040d3f5923e919 /libavcodec/vp6.c | |
parent | 74dc7448506a203c8981c63e6fcfadd566d9e4eb (diff) | |
download | ffmpeg-7e5cdb5b1bcdc7ac71a426850de7ed40df420d39.tar.gz |
const
Originally committed as revision 11791 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp6.c')
-rw-r--r-- | libavcodec/vp6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c index 9f912d36ee..896f06d4c4 100644 --- a/libavcodec/vp6.c +++ b/libavcodec/vp6.c @@ -41,7 +41,7 @@ static void vp6_parse_coeff(vp56_context_t *s); static void vp6_parse_coeff_huffman(vp56_context_t *s); -static int vp6_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size, +static int vp6_parse_header(vp56_context_t *s, const uint8_t *buf, int buf_size, int *golden_frame) { vp56_range_coder_t *c = &s->c; |