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
0926c009
Commit
0926c009
authored
Mar 08, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: fix dct-test
Originally committed as revision 22339 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
1e2a6688
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
dct-test.c
libavcodec/dct-test.c
+6
-6
No files found.
libavcodec/dct-test.c
View file @
0926c009
...
...
@@ -58,9 +58,9 @@ void fdct_altivec(DCTELEM *block);
//void idct_altivec(DCTELEM *block);?? no routine
// ARM
void
j_rev_dct_ARM
(
DCTELEM
*
data
);
void
simple_idct_ARM
(
DCTELEM
*
data
);
void
simple_idct_armv5te
(
DCTELEM
*
data
);
void
ff_j_rev_dct_arm
(
DCTELEM
*
data
);
void
ff_simple_idct_arm
(
DCTELEM
*
data
);
void
ff_
simple_idct_armv5te
(
DCTELEM
*
data
);
void
ff_simple_idct_armv6
(
DCTELEM
*
data
);
void
ff_simple_idct_neon
(
DCTELEM
*
data
);
...
...
@@ -120,10 +120,10 @@ struct algo algos[] = {
#endif
#if ARCH_ARM
{
"SIMPLE-ARM"
,
1
,
simple_idct_ARM
,
ff_ref_idct
,
NO_PERM
},
{
"INT-ARM"
,
1
,
j_rev_dct_ARM
,
ff_ref_idct
,
MMX_PERM
},
{
"SIMPLE-ARM"
,
1
,
ff_simple_idct_arm
,
ff_ref_idct
,
NO_PERM
},
{
"INT-ARM"
,
1
,
ff_j_rev_dct_arm
,
ff_ref_idct
,
MMX_PERM
},
#if HAVE_ARMV5TE
{
"SIMPLE-ARMV5TE"
,
1
,
simple_idct_armv5te
,
ff_ref_idct
,
NO_PERM
},
{
"SIMPLE-ARMV5TE"
,
1
,
ff_
simple_idct_armv5te
,
ff_ref_idct
,
NO_PERM
},
#endif
#if HAVE_ARMV6
{
"SIMPLE-ARMV6"
,
1
,
ff_simple_idct_armv6
,
ff_ref_idct
,
MMX_PERM
},
...
...
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