diff --git a/src/lib_ccx/asf_functions.c b/src/lib_ccx/asf_functions.c index 6acb59077..8d74bcaf0 100644 --- a/src/lib_ccx/asf_functions.c +++ b/src/lib_ccx/asf_functions.c @@ -37,7 +37,7 @@ uint32_t asf_readval(void *val, int ltype) } return rval; } - + char *gui_data_string(void *val) { static char sbuf[40]; diff --git a/src/lib_ccx/dvb_subtitle_decoder.c b/src/lib_ccx/dvb_subtitle_decoder.c index ad1266834..f0e054333 100644 --- a/src/lib_ccx/dvb_subtitle_decoder.c +++ b/src/lib_ccx/dvb_subtitle_decoder.c @@ -40,7 +40,7 @@ #define YUV_TO_RGB1_CCIR(cb1, cr1) \ { \ cb = (cb1)-128; \ - cr = (cr1)-128; \ + cr = (cr1)-128; \ r_add = FIX(1.40200 * 255.0 / 224.0) * cr + ONE_HALF; \ g_add = -FIX(0.34414 * 255.0 / 224.0) * cb - FIX(0.71414 * 255.0 / 224.0) * cr + \ ONE_HALF; \