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
2972087e
Commit
2972087e
authored
Jan 10, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hpel_template: Drop some unnecessary parentheses
parent
e8eace32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
hpel_template.c
libavcodec/hpel_template.c
+3
-3
No files found.
libavcodec/hpel_template.c
View file @
2972087e
...
...
@@ -27,7 +27,7 @@ static inline void FUNCC(OPNAME ## _pixels2)(uint8_t *block, \
{ \
int i; \
for (i = 0; i < h; i++) { \
OP(*((pixel2 *)
(block)), AV_RN2P(pixels));
\
OP(*((pixel2 *)
block), AV_RN2P(pixels));
\
pixels += line_size; \
block += line_size; \
} \
...
...
@@ -40,7 +40,7 @@ static inline void FUNCC(OPNAME ## _pixels4)(uint8_t *block, \
{ \
int i; \
for (i = 0; i < h; i++) { \
OP(*((pixel4 *)
(block)), AV_RN4P(pixels));
\
OP(*((pixel4 *)
block), AV_RN4P(pixels));
\
pixels += line_size; \
block += line_size; \
} \
...
...
@@ -53,7 +53,7 @@ static inline void FUNCC(OPNAME ## _pixels8)(uint8_t *block, \
{ \
int i; \
for (i = 0; i < h; i++) { \
OP(*((pixel4 *)
(block)), AV_RN4P(pixels));
\
OP(*((pixel4 *)
block), AV_RN4P(pixels));
\
OP(*((pixel4 *) (block + 4 * sizeof(pixel))), \
AV_RN4P(pixels + 4 * sizeof(pixel))); \
pixels += line_size; \
...
...
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