Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xorgxrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/yuv2rgb/yuv2rgb_speed.c')
-rw-r--r--tests/yuv2rgb/yuv2rgb_speed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/yuv2rgb/yuv2rgb_speed.c b/tests/yuv2rgb/yuv2rgb_speed.c
index b4d484f..0298630 100644
--- a/tests/yuv2rgb/yuv2rgb_speed.c
+++ b/tests/yuv2rgb/yuv2rgb_speed.c
@@ -80,7 +80,7 @@ yuv to rgb speed testing
_Y = ( ((1053 * ((_R) << 4)) >> 16) + ((2064 * ((_G) << 4)) >> 16) + (( 401 * ((_B) << 4)) >> 16)) + 16; \
_U = ( ((1798 * ((_B) << 4)) >> 16) - (( 606 * ((_R) << 4)) >> 16) - ((1192 * ((_G) << 4)) >> 16)) + 128; \
_V = ( ((1798 * ((_R) << 4)) >> 16) - ((1507 * ((_G) << 4)) >> 16) - (( 291 * ((_B) << 4)) >> 16)) + 128;
-
+
/******************************************************************************/
static int
a8r8g8b8_to_nv12_box(char *s8, int src_stride,
@@ -173,7 +173,7 @@ a8r8g8b8_to_nv12_box(char *s8, int src_stride,
}
}
- return 0;
+ return 0;
}
int output_params(void)