[FFmpeg-cvslog] r11292 - trunk/libavcodec/dsputil.c
michael
subversion
Fri Dec 21 11:20:11 CET 2007
Author: michael
Date: Fri Dec 21 11:20:10 2007
New Revision: 11292
Log:
More consistant { placement.
Modified:
trunk/libavcodec/dsputil.c
Modified: trunk/libavcodec/dsputil.c
==============================================================================
--- trunk/libavcodec/dsputil.c (original)
+++ trunk/libavcodec/dsputil.c Fri Dec 21 11:20:10 2007
@@ -1441,8 +1441,7 @@ static void OPNAME ## h264_chroma_mc2_c(
assert(x<8 && y<8 && x>=0 && y>=0);\
\
if(D){\
- for(i=0; i<h; i++)\
- {\
+ for(i=0; i<h; i++){\
OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\
OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
dst+= stride;\
@@ -1451,8 +1450,7 @@ static void OPNAME ## h264_chroma_mc2_c(
}else{\
const int E= B+C;\
const int step= C ? stride : 1;\
- for(i=0; i<h; i++)\
- {\
+ for(i=0; i<h; i++){\
OP(dst[0], (A*src[0] + E*src[step+0]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
dst+= stride;\
@@ -1471,8 +1469,7 @@ static void OPNAME ## h264_chroma_mc4_c(
assert(x<8 && y<8 && x>=0 && y>=0);\
\
if(D){\
- for(i=0; i<h; i++)\
- {\
+ for(i=0; i<h; i++){\
OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\
OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
OP(dst[2], (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3]));\
@@ -1483,8 +1480,7 @@ static void OPNAME ## h264_chroma_mc4_c(
}else{\
const int E= B+C;\
const int step= C ? stride : 1;\
- for(i=0; i<h; i++)\
- {\
+ for(i=0; i<h; i++){\
OP(dst[0], (A*src[0] + E*src[step+0]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[2], (A*src[2] + E*src[step+2]));\
@@ -1505,8 +1501,7 @@ static void OPNAME ## h264_chroma_mc8_c(
assert(x<8 && y<8 && x>=0 && y>=0);\
\
if(D){\
- for(i=0; i<h; i++)\
- {\
+ for(i=0; i<h; i++){\
OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\
OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
OP(dst[2], (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3]));\
@@ -1521,8 +1516,7 @@ static void OPNAME ## h264_chroma_mc8_c(
}else{\
const int E= B+C;\
const int step= C ? stride : 1;\
- for(i=0; i<h; i++)\
- {\
+ for(i=0; i<h; i++){\
OP(dst[0], (A*src[0] + E*src[step+0]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[2], (A*src[2] + E*src[step+2]));\
More information about the ffmpeg-cvslog
mailing list