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
82e6ac85
Commit
82e6ac85
authored
Jul 12, 2015
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkasm: test all architectures with optimisations
parent
cb33f8d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
checkasm.c
tests/checkasm/checkasm.c
+15
-1
No files found.
tests/checkasm/checkasm.c
View file @
82e6ac85
...
...
@@ -72,7 +72,21 @@ static const struct {
const
char
*
suffix
;
int
flag
;
}
cpus
[]
=
{
#if ARCH_X86
#if ARCH_AARCH64
{
"ARMV8"
,
"armv8"
,
AV_CPU_FLAG_ARMV8
},
{
"NEON"
,
"neon"
,
AV_CPU_FLAG_NEON
},
#elif ARCH_ARM
{
"ARMV5TE"
,
"armv5te"
,
AV_CPU_FLAG_ARMV5TE
},
{
"ARMV6"
,
"armv6"
,
AV_CPU_FLAG_ARMV6
},
{
"ARMV6T2"
,
"armv6t2"
,
AV_CPU_FLAG_ARMV6T2
},
{
"VFP"
,
"vfp"
,
AV_CPU_FLAG_VFP
},
{
"VFPV3"
,
"vfp3"
,
AV_CPU_FLAG_VFPV3
},
{
"NEON"
,
"neon"
,
AV_CPU_FLAG_NEON
},
#elif ARCH_PPC
{
"ALTIVEC"
,
"altivec"
,
AV_CPU_FLAG_ALTIVEC
},
{
"VSX"
,
"vsx"
,
AV_CPU_FLAG_VSX
},
{
"POWER8"
,
"power8"
,
AV_CPU_FLAG_POWER8
},
#elif ARCH_X86
{
"MMX"
,
"mmx"
,
AV_CPU_FLAG_MMX
|
AV_CPU_FLAG_CMOV
},
{
"MMXEXT"
,
"mmxext"
,
AV_CPU_FLAG_MMXEXT
},
{
"3DNOW"
,
"3dnow"
,
AV_CPU_FLAG_3DNOW
},
...
...
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