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
6c47a4e9
Commit
6c47a4e9
authored
Mar 15, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale/x86/swscale: fix missing xmm clobbers in yuv2yuvX_sse3()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
8803b970
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
swscale.c
libswscale/x86/swscale.c
+2
-1
No files found.
libswscale/x86/swscale.c
View file @
6c47a4e9
...
@@ -266,7 +266,8 @@ static void yuv2yuvX_sse3(const int16_t *filter, int filterSize,
...
@@ -266,7 +266,8 @@ static void yuv2yuvX_sse3(const int16_t *filter, int filterSize,
"jb 1b
\n\t
"
\
"jb 1b
\n\t
"
\
::
"g"
(
filter
),
::
"g"
(
filter
),
"r"
(
dest
-
offset
),
"g"
((
x86_reg
)(
dstW
+
offset
)),
"m"
(
offset
)
"r"
(
dest
-
offset
),
"g"
((
x86_reg
)(
dstW
+
offset
)),
"m"
(
offset
)
:
"%"
REG_d
,
"%"
REG_S
,
"%"
REG_c
:
XMM_CLOBBERS
(
"%xmm0"
,
"%xmm1"
,
"%xmm2"
,
"%xmm3"
,
"%xmm4"
,
"%xmm5"
,
"%xmm7"
,)
"%"
REG_d
,
"%"
REG_S
,
"%"
REG_c
);
);
}
}
#endif
#endif
...
...
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