From add40b7b6afc18eb1cf410bc814db3a3ec5858cf Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 15 Mar 2012 21:52:11 +0100 Subject: tests/rotozoom: make some things const. Signed-off-by: Michael Niedermayer --- tests/rotozoom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/rotozoom.c') diff --git a/tests/rotozoom.c b/tests/rotozoom.c index 4406290..a18667a 100644 --- a/tests/rotozoom.c +++ b/tests/rotozoom.c @@ -58,12 +58,12 @@ static int64_t int_sin(int64_t a) #define FIX(x) ((int) ((x) * (1L << SCALEBITS) + 0.5)) static void rgb24_to_yuv420p(unsigned char *lum, unsigned char *cb, - unsigned char *cr, unsigned char *src, + unsigned char *cr, const unsigned char *src, int width, int height) { int wrap, wrap3, x, y; int r, g, b, r1, g1, b1; - unsigned char *p; + const unsigned char *p; wrap = width; wrap3 = width * 3; -- cgit v1.1