Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
e5c2794a
Commit
e5c2794a
authored
Mar 24, 2013
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: consistently use unaligned movs in the unaligned bswap
Fixes fate errors in asv1, ffvhuff and huffyuv on x86_32.
parent
fdaacc59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
dsputil.asm
libavcodec/x86/dsputil.asm
+6
-6
No files found.
libavcodec/x86/dsputil.asm
View file @
e5c2794a
...
...
@@ -552,8 +552,8 @@ VECTOR_CLIP_INT32 6, 1, 0, 0
%if
cpuflag
(
ssse3
)
pshufb
m0
,
m2
pshufb
m1
,
m2
mov
a
[
r0
+
0
]
,
m0
mov
a
[
r0
+
16
]
,
m1
mov
%1
[
r0
+
0
]
,
m0
mov
%1
[
r0
+
16
]
,
m1
%else
pshuflw
m0
,
m0
,
10110001
b
pshuflw
m1
,
m1
,
10110001
b
...
...
@@ -567,8 +567,8 @@ VECTOR_CLIP_INT32 6, 1, 0, 0
psrlw
m3
,
8
por
m2
,
m0
por
m3
,
m1
mov
a
[
r0
+
0
]
,
m2
mov
a
[
r0
+
16
]
,
m3
mov
%1
[
r0
+
0
]
,
m2
mov
%1
[
r0
+
16
]
,
m3
%endif
add
r0
,
32
add
r1
,
32
...
...
@@ -581,7 +581,7 @@ VECTOR_CLIP_INT32 6, 1, 0, 0
mov%1
m0
,
[r1]
%if
cpuflag
(
ssse3
)
pshufb
m0
,
m2
mov
a
[r0],
m0
mov
%1
[r0],
m0
%else
pshuflw
m0
,
m0
,
10110001
b
pshufhw
m0
,
m0
,
10110001
b
...
...
@@ -589,7 +589,7 @@ VECTOR_CLIP_INT32 6, 1, 0, 0
psllw
m0
,
8
psrlw
m2
,
8
por
m2
,
m0
mov
a
[r0],
m2
mov
%1
[r0],
m2
%endif
add
r1
,
16
add
r0
,
16
...
...
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