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
74b1f968
Commit
74b1f968
authored
Feb 11, 2011
by
Justin Ruggles
Committed by
Ronald S. Bultje
Feb 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add check for Athlon64 and similar AMD processors with slow SSE2.
Signed-off-by:
Ronald S. Bultje
<
rsbultje@gmail.com
>
parent
2a03e873
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
cpu.c
libavutil/x86/cpu.c
+16
-1
No files found.
libavutil/x86/cpu.c
View file @
74b1f968
...
...
@@ -109,13 +109,28 @@ int ff_get_cpu_flags_x86(void)
rval
|=
AV_CPU_FLAG_MMX
;
if
(
ext_caps
&
(
1
<<
22
))
rval
|=
AV_CPU_FLAG_MMX2
;
/* Allow for selectively disabling SSE2 functions on AMD processors
with SSE2 support but not SSE4a. This includes Athlon64, some
Opteron, and some Sempron processors. MMX, SSE, or 3DNow! are faster
than SSE2 often enough to utilize this special-case flag.
AV_CPU_FLAG_SSE2 and AV_CPU_FLAG_SSE2SLOW are both set in this case
so that SSE2 is used unless explicitly disabled by checking
AV_CPU_FLAG_SSE2SLOW. */
if
(
!
strncmp
(
vendor
.
c
,
"AuthenticAMD"
,
12
)
&&
rval
&
AV_CPU_FLAG_SSE2
&&
!
(
ecx
&
0x00000040
))
{
rval
|=
AV_CPU_FLAG_SSE2SLOW
;
}
}
if
(
!
strncmp
(
vendor
.
c
,
"GenuineIntel"
,
12
)
&&
family
==
6
&&
(
model
==
9
||
model
==
13
||
model
==
14
))
{
/* 6/9 (pentium-m "banias"), 6/13 (pentium-m "dothan"), and 6/14 (core1 "yonah")
* theoretically support sse2, but it's usually slower than mmx,
* so let's just pretend they don't. */
* so let's just pretend they don't. AV_CPU_FLAG_SSE2 is disabled and
* AV_CPU_FLAG_SSE2SLOW is enabled so that SSE2 is not used unless
* explicitly enabled by checking AV_CPU_FLAG_SSE2SLOW. The same
* situation applies for AV_CPU_FLAG_SSE3 and AV_CPU_FLAG_SSE3SLOW. */
if
(
rval
&
AV_CPU_FLAG_SSE2
)
rval
^=
AV_CPU_FLAG_SSE2SLOW
|
AV_CPU_FLAG_SSE2
;
if
(
rval
&
AV_CPU_FLAG_SSE3
)
rval
^=
AV_CPU_FLAG_SSE3SLOW
|
AV_CPU_FLAG_SSE3
;
}
...
...
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