Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
45ed8225
Commit
45ed8225
authored
Mar 21, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: indentation
parent
eba586b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
libavutil/x86/cpu.c
libavutil/x86/cpu.c
+8
-8
No files found.
libavutil/x86/cpu.c
View file @
45ed8225
...
...
@@ -137,14 +137,14 @@ int ff_get_cpu_flags_x86(void)
if
(
!
strncmp
(
vendor
.
c
,
"GenuineIntel"
,
12
))
{
if
(
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. 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
;
/* 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. 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
;
}
/* The Atom processor has SSSE3 support, which is useful in many cases,
* but sometimes the SSSE3 version is slower than the SSE2 equivalent
...
...
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