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
479044ce
Commit
479044ce
authored
Dec 16, 2008
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dct-test: add ARM IDCTs
Originally committed as revision 16170 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
875f3125
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
dct-test.c
libavcodec/dct-test.c
+20
-0
No files found.
libavcodec/dct-test.c
View file @
479044ce
...
@@ -63,6 +63,12 @@ void ff_bfin_fdct(DCTELEM *block);
...
@@ -63,6 +63,12 @@ void ff_bfin_fdct(DCTELEM *block);
void
fdct_altivec
(
DCTELEM
*
block
);
void
fdct_altivec
(
DCTELEM
*
block
);
//void idct_altivec(DCTELEM *block);?? no routine
//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_simple_idct_armv6
(
DCTELEM
*
data
);
void
ff_simple_idct_neon
(
DCTELEM
*
data
);
struct
algo
{
struct
algo
{
const
char
*
name
;
const
char
*
name
;
...
@@ -117,6 +123,20 @@ struct algo algos[] = {
...
@@ -117,6 +123,20 @@ struct algo algos[] = {
{
"BFINidct"
,
1
,
ff_bfin_idct
,
idct
,
NO_PERM
},
{
"BFINidct"
,
1
,
ff_bfin_idct
,
idct
,
NO_PERM
},
#endif
#endif
#ifdef ARCH_ARMV4L
{
"SIMPLE-ARM"
,
1
,
simple_idct_ARM
,
idct
,
NO_PERM
},
{
"INT-ARM"
,
1
,
j_rev_dct_ARM
,
idct
,
MMX_PERM
},
#ifdef HAVE_ARMV5TE
{
"SIMPLE-ARMV5TE"
,
1
,
simple_idct_armv5te
,
idct
,
NO_PERM
},
#endif
#ifdef HAVE_ARMV6
{
"SIMPLE-ARMV6"
,
1
,
ff_simple_idct_armv6
,
idct
,
MMX_PERM
},
#endif
#ifdef HAVE_NEON
{
"SIMPLE-NEON"
,
1
,
ff_simple_idct_neon
,
idct
,
PARTTRANS_PERM
},
#endif
#endif
/* ARCH_ARMV4L */
{
0
}
{
0
}
};
};
...
...
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