[MPlayer-cvslog] r25779 - in trunk/libswscale: rgb2rgb_template.c swscale-example.c swscale_altivec_template.c
benoit
subversion at mplayerhq.hu
Thu Jan 17 12:07:27 CET 2008
Author: benoit
Date: Thu Jan 17 12:07:27 2008
New Revision: 25779
Log:
Remove some useless parentheses.
Modified:
trunk/libswscale/rgb2rgb_template.c
trunk/libswscale/swscale-example.c
trunk/libswscale/swscale_altivec_template.c
Modified: trunk/libswscale/rgb2rgb_template.c
==============================================================================
--- trunk/libswscale/rgb2rgb_template.c (original)
+++ trunk/libswscale/rgb2rgb_template.c Thu Jan 17 12:07:27 2008
@@ -1621,7 +1621,7 @@ static inline void RENAME(yuvPlanartoyuy
}
#endif
#endif
- if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1) )
+ if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1)
{
usrc += chromStride;
vsrc += chromStride;
@@ -1727,7 +1727,7 @@ static inline void RENAME(yuvPlanartouyv
}
#endif
#endif
- if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1))
+ if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1)
{
usrc += chromStride;
vsrc += chromStride;
Modified: trunk/libswscale/swscale-example.c
==============================================================================
--- trunk/libswscale/swscale-example.c (original)
+++ trunk/libswscale/swscale-example.c Thu Jan 17 12:07:27 2008
@@ -76,7 +76,7 @@ static int doTest(uint8_t *ref[3], int r
src[i]= (uint8_t*) malloc(srcStride[i]*srcH);
dst[i]= (uint8_t*) malloc(dstStride[i]*dstH);
out[i]= (uint8_t*) malloc(refStride[i]*h);
- if ((src[i] == NULL) || (dst[i] == NULL) || (out[i] == NULL)) {
+ if (src[i] == NULL || dst[i] == NULL || out[i] == NULL) {
perror("Malloc");
res = -1;
Modified: trunk/libswscale/swscale_altivec_template.c
==============================================================================
--- trunk/libswscale/swscale_altivec_template.c (original)
+++ trunk/libswscale/swscale_altivec_template.c Thu Jan 17 12:07:27 2008
@@ -354,7 +354,7 @@ static inline void hScale_altivec_real(i
src_v0 = src_v1;
}
- if (j < (filterSize-7)) {
+ if (j < filterSize-7) {
// loading src_v0 is useless, it's already done above
//vector unsigned char src_v0 = vec_ld(srcPos + j, src);
vector unsigned char src_v1, src_vF;
@@ -450,7 +450,7 @@ static inline int yv12toyuy2_unscaled_al
vec_st(v_yuy2_0, (i << 1), dst);
vec_st(v_yuy2_1, (i << 1) + 16, dst);
}
- if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1)) {
+ if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1) {
usrc += chromStride;
vsrc += chromStride;
}
@@ -527,7 +527,7 @@ static inline int yv12touyvy_unscaled_al
vec_st(v_uyvy_0, (i << 1), dst);
vec_st(v_uyvy_1, (i << 1) + 16, dst);
}
- if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1)) {
+ if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1) {
usrc += chromStride;
vsrc += chromStride;
}
More information about the MPlayer-cvslog
mailing list