Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f315b394
Commit
f315b394
authored
Dec 21, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More consistent { placement.
Originally committed as revision 11292 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
76abb18e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
dsputil.c
libavcodec/dsputil.c
+6
-12
No files found.
libavcodec/dsputil.c
View file @
f315b394
...
@@ -1441,8 +1441,7 @@ static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
...
@@ -1441,8 +1441,7 @@ static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
assert(x<8 && y<8 && x>=0 && y>=0);\
assert(x<8 && y<8 && x>=0 && y>=0);\
\
\
if(D){\
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[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[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
dst+= stride;\
dst+= stride;\
...
@@ -1451,8 +1450,7 @@ static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
...
@@ -1451,8 +1450,7 @@ static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
}else{\
}else{\
const int E= B+C;\
const int E= B+C;\
const int step= C ? stride : 1;\
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[0], (A*src[0] + E*src[step+0]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
dst+= stride;\
dst+= stride;\
...
@@ -1471,8 +1469,7 @@ static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
...
@@ -1471,8 +1469,7 @@ static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
assert(x<8 && y<8 && x>=0 && y>=0);\
assert(x<8 && y<8 && x>=0 && y>=0);\
\
\
if(D){\
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[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[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]));\
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(uint8_t *dst/*align 8*/, uint8_t *src/*a
...
@@ -1483,8 +1480,7 @@ static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
}else{\
}else{\
const int E= B+C;\
const int E= B+C;\
const int step= C ? stride : 1;\
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[0], (A*src[0] + E*src[step+0]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[2], (A*src[2] + E*src[step+2]));\
OP(dst[2], (A*src[2] + E*src[step+2]));\
...
@@ -1505,8 +1501,7 @@ static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
...
@@ -1505,8 +1501,7 @@ static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
assert(x<8 && y<8 && x>=0 && y>=0);\
assert(x<8 && y<8 && x>=0 && y>=0);\
\
\
if(D){\
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[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[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]));\
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(uint8_t *dst/*align 8*/, uint8_t *src/*a
...
@@ -1521,8 +1516,7 @@ static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
}else{\
}else{\
const int E= B+C;\
const int E= B+C;\
const int step= C ? stride : 1;\
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[0], (A*src[0] + E*src[step+0]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[1], (A*src[1] + E*src[step+1]));\
OP(dst[2], (A*src[2] + E*src[step+2]));\
OP(dst[2], (A*src[2] + E*src[step+2]));\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment