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
0ee8293a
Commit
0ee8293a
authored
Jan 22, 2013
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp3dsp: don't do aligned reads on input.
The input is not guaranteed to be aligned.
parent
40cf1add
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vp3dsp.c
libavcodec/vp3dsp.c
+4
-4
No files found.
libavcodec/vp3dsp.c
View file @
0ee8293a
...
...
@@ -282,11 +282,11 @@ static void put_no_rnd_pixels_l2(uint8_t *dst, const uint8_t *src1,
for
(
i
=
0
;
i
<
h
;
i
++
)
{
uint32_t
a
,
b
;
a
=
AV_RN32
A
(
&
src1
[
i
*
stride
]);
b
=
AV_RN32
A
(
&
src2
[
i
*
stride
]);
a
=
AV_RN32
(
&
src1
[
i
*
stride
]);
b
=
AV_RN32
(
&
src2
[
i
*
stride
]);
AV_WN32A
(
&
dst
[
i
*
stride
],
no_rnd_avg32
(
a
,
b
));
a
=
AV_RN32
A
(
&
src1
[
i
*
stride
+
4
]);
b
=
AV_RN32
A
(
&
src2
[
i
*
stride
+
4
]);
a
=
AV_RN32
(
&
src1
[
i
*
stride
+
4
]);
b
=
AV_RN32
(
&
src2
[
i
*
stride
+
4
]);
AV_WN32A
(
&
dst
[
i
*
stride
+
4
],
no_rnd_avg32
(
a
,
b
));
}
}
...
...
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