From 33df12b05cc115c53ca9f54e178eed6d4168d6c8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Wed, 22 Sep 2010 00:33:28 +0200 Subject: [PATCH] Adjust: code cosmetics --- modules/video_filter/adjust.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_filter/adjust.c b/modules/video_filter/adjust.c index 35f7e1d824..dfc287f4f5 100644 --- a/modules/video_filter/adjust.c +++ b/modules/video_filter/adjust.c @@ -256,7 +256,7 @@ static picture_t *FilterPlanar( filter_t *p_filter, picture_t *p_pic ) /* Fill the gamma lookup table */ for( i = 0 ; i < 256 ; i++ ) { - pi_gamma[ i ] = clip_uint8_vlc( pow(i / 255.0, f_gamma) * 255.0); + pi_gamma[ i ] = clip_uint8_vlc( pow(i / 255.0, f_gamma) * 255.0); } /* Fill the luma lookup table */ -- 2.11.4.GIT