From ae76c1af16e52e1c69172c471094bf35b4dca5e0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 15 Mar 2012 22:07:54 +0100 Subject: [PATCH] 4xm: make mcdc() src const Signed-off-by: Michael Niedermayer --- libavcodec/4xm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 8758c6de4a..53ee855160 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -281,7 +281,7 @@ static void init_mv(FourXContext *f) } #endif -static inline void mcdc(uint16_t *dst, uint16_t *src, int log2w, +static inline void mcdc(uint16_t *dst, const uint16_t *src, int log2w, int h, int stride, int scale, unsigned dc) { int i;