Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 19:16:40 +0300
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 19:16:40 +0300
commit7e5cdb5b1bcdc7ac71a426850de7ed40df420d39 (patch)
tree3f995eba689e302101c72c2f63040d3f5923e919 /libavcodec/vp6.c
parent74dc7448506a203c8981c63e6fcfadd566d9e4eb (diff)
const
Originally committed as revision 11791 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp6.c')
-rw-r--r--libavcodec/vp6.c2
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;