Commit adaa274f authored by Michael Niedermayer's avatar Michael Niedermayer

tests/utils: make arguments const that arent changed

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6edd6a4f
...@@ -35,12 +35,12 @@ ...@@ -35,12 +35,12 @@
} while (0) } while (0)
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;
...@@ -104,7 +104,7 @@ static void rgb24_to_yuv420p(unsigned char *lum, unsigned char *cb, ...@@ -104,7 +104,7 @@ static void rgb24_to_yuv420p(unsigned char *lum, unsigned char *cb,
#define DEFAULT_NB_PICT 50 #define DEFAULT_NB_PICT 50
static void pgmyuv_save(const char *filename, int w, int h, static void pgmyuv_save(const char *filename, int w, int h,
unsigned char *rgb_tab) const unsigned char *rgb_tab)
{ {
FILE *f; FILE *f;
int i, h2, w2; int i, h2, w2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment