You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
tests/rotozoom: make some things const.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user