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/vp5.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/vp5.c')
-rw-r--r-- | libavcodec/vp5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp5.c b/libavcodec/vp5.c index ef2d326eea..fc8119c2f5 100644 --- a/libavcodec/vp5.c +++ b/libavcodec/vp5.c @@ -34,7 +34,7 @@ #include "vp5data.h" -static int vp5_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size, +static int vp5_parse_header(vp56_context_t *s, const uint8_t *buf, int buf_size, int *golden_frame) { vp56_range_coder_t *c = &s->c; |