Browse Source

tests/rotozoom: make some things const.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
add40b7b6a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/rotozoom.c

+ 2
- 2
tests/rotozoom.c View File

@@ -58,12 +58,12 @@ static int64_t int_sin(int64_t a)
#define FIX(x) ((int) ((x) * (1L << SCALEBITS) + 0.5)) #define FIX(x) ((int) ((x) * (1L << SCALEBITS) + 0.5))


static void rgb24_to_yuv420p(unsigned char *lum, unsigned char *cb, 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 width, int height)
{ {
int wrap, wrap3, x, y; int wrap, wrap3, x, y;
int r, g, b, r1, g1, b1; int r, g, b, r1, g1, b1;
unsigned char *p;
const unsigned char *p;


wrap = width; wrap = width;
wrap3 = width * 3; wrap3 = width * 3;


Loading…
Cancel
Save