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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-16 01:07:54 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-03-16 01:07:54 +0400
commitae76c1af16e52e1c69172c471094bf35b4dca5e0 (patch)
tree859b1292d1f39d133d3c1c53a90808472016a83a /libavcodec/4xm.c
parentbf3a40457264556ec1a39aa0659af921a5dd5df9 (diff)
4xm: make mcdc() src const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c2
1 files changed, 1 insertions, 1 deletions
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;