From e9c10459a36869b5779a4c6cd52d879f23c6b294 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 9 May 2011 12:23:55 +0200 Subject: rotozoom: Drop some unnecessary parentheses. --- tests/rotozoom.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/rotozoom.c') diff --git a/tests/rotozoom.c b/tests/rotozoom.c index 03e9afb86f..209ed027d1 100644 --- a/tests/rotozoom.c +++ b/tests/rotozoom.c @@ -135,13 +135,13 @@ static void pgmyuv_save(const char *filename, int w, int h, unsigned char *lum_tab, *cb_tab, *cr_tab; lum_tab = malloc(w * h); - cb_tab = malloc((w * h) / 4); - cr_tab = malloc((w * h) / 4); + cb_tab = malloc(w * h / 4); + cr_tab = malloc(w * h / 4); rgb24_to_yuv420p(lum_tab, cb_tab, cr_tab, rgb_tab, w, h); f = fopen(filename, "wb"); - fprintf(f, "P5\n%d %d\n%d\n", w, (h * 3) / 2, 255); + fprintf(f, "P5\n%d %d\n%d\n", w, h * 3 / 2, 255); fwrite(lum_tab, 1, w * h, f); h2 = h / 2; w2 = w / 2; @@ -264,8 +264,8 @@ static void init_demo(const char *filename) for (i = 0; i < 360; i++) { radian = 2 * i * MY_PI / 360; h = 2 * FIXP + int_sin (radian); - h_cos[i] = (h * int_sin(radian + MY_PI / 2)) / 2 / FIXP; - h_sin[i] = (h * int_sin(radian) ) / 2 / FIXP; + h_cos[i] = h * int_sin(radian + MY_PI / 2) / 2 / FIXP; + h_sin[i] = h * int_sin(radian) / 2 / FIXP; } } -- cgit v1.2.3