Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
50cd43f2
Commit
50cd43f2
authored
12 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
configure: Add more fine-grained SSE CPU capabilities flags
parent
cdaec0b2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure
+29
-12
29 additions, 12 deletions
configure
with
29 additions
and
12 deletions
configure
+
29
−
12
View file @
50cd43f2
...
...
@@ -245,7 +245,11 @@ Optimization options (experts only):
--disable-mmx disable MMX optimizations
--disable-mmxext disable MMXEXT optimizations
--disable-sse disable SSE optimizations
--disable-sse2 disable SSE2 optimizations
--disable-sse3 disable SSE3 optimizations
--disable-ssse3 disable SSSE3 optimizations
--disable-sse4 disable SSE4 optimizations
--disable-sse42 disable SSE4.2 optimizations
--disable-avx disable AVX optimizations
--disable-fma4 disable FMA4 optimizations
--disable-armv5te disable armv5te optimizations
...
...
@@ -1061,26 +1065,34 @@ ARCH_LIST='
x86_64
'
ARCH_EXT_LIST
=
'
altivec
ARCH_EXT_LIST_X86
=
'
amd3dnow
amd3dnowext
avx
fma4
mmx
mmxext
sse
sse2
sse3
sse4
sse42
ssse3
'
ARCH_EXT_LIST
=
"
$ARCH_EXT_LIST_X86
altivec
armv5te
armv6
armv6t2
armvfp
avx
fma4
mmi
mmx
mmxext
neon
ppc4xx
sse
ssse3
vfpv3
vis
'
"
HAVE_LIST_PUB
=
'
bigendian
...
...
@@ -1325,13 +1337,18 @@ ppc4xx_deps="ppc"
vis_deps
=
"sparc"
x86_64_suggest
=
"cmov fast_cmov"
amd3dnow_deps
=
"mmx"
amd3dnowext_deps
=
"amd3dnow"
mmx_deps
=
"x86"
mmxext_deps
=
"mmx"
sse_deps
=
"mmx"
ssse3_deps
=
"sse"
avx_deps
=
"ssse3"
sse_deps
=
"mmxext"
sse2_deps
=
"sse"
sse3_deps
=
"sse2"
ssse3_deps
=
"sse3"
sse4_deps
=
"ssse3"
sse42_deps
=
"sse4"
avx_deps
=
"sse42"
fma4_deps
=
"avx"
aligned_stack_if_any
=
"ppc x86"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment