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
31304587
Commit
31304587
authored
Feb 21, 2008
by
Loren Merritt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indent
Originally committed as revision 12166 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
469bd7b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
dsputil.c
libavcodec/dsputil.c
+10
-10
No files found.
libavcodec/dsputil.c
View file @
31304587
...
...
@@ -3304,16 +3304,16 @@ static void diff_bytes_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w){
long
i
;
#ifndef HAVE_FAST_UNALIGNED
if
((
long
)
src2
&
(
sizeof
(
long
)
-
1
)){
for
(
i
=
0
;
i
+
7
<
w
;
i
+=
8
){
dst
[
i
+
0
]
=
src1
[
i
+
0
]
-
src2
[
i
+
0
];
dst
[
i
+
1
]
=
src1
[
i
+
1
]
-
src2
[
i
+
1
];
dst
[
i
+
2
]
=
src1
[
i
+
2
]
-
src2
[
i
+
2
];
dst
[
i
+
3
]
=
src1
[
i
+
3
]
-
src2
[
i
+
3
];
dst
[
i
+
4
]
=
src1
[
i
+
4
]
-
src2
[
i
+
4
];
dst
[
i
+
5
]
=
src1
[
i
+
5
]
-
src2
[
i
+
5
];
dst
[
i
+
6
]
=
src1
[
i
+
6
]
-
src2
[
i
+
6
];
dst
[
i
+
7
]
=
src1
[
i
+
7
]
-
src2
[
i
+
7
];
}
for
(
i
=
0
;
i
+
7
<
w
;
i
+=
8
){
dst
[
i
+
0
]
=
src1
[
i
+
0
]
-
src2
[
i
+
0
];
dst
[
i
+
1
]
=
src1
[
i
+
1
]
-
src2
[
i
+
1
];
dst
[
i
+
2
]
=
src1
[
i
+
2
]
-
src2
[
i
+
2
];
dst
[
i
+
3
]
=
src1
[
i
+
3
]
-
src2
[
i
+
3
];
dst
[
i
+
4
]
=
src1
[
i
+
4
]
-
src2
[
i
+
4
];
dst
[
i
+
5
]
=
src1
[
i
+
5
]
-
src2
[
i
+
5
];
dst
[
i
+
6
]
=
src1
[
i
+
6
]
-
src2
[
i
+
6
];
dst
[
i
+
7
]
=
src1
[
i
+
7
]
-
src2
[
i
+
7
];
}
}
else
#endif
for
(
i
=
0
;
i
<=
w
-
sizeof
(
long
);
i
+=
sizeof
(
long
)){
...
...
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