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
2a839eeb
Commit
2a839eeb
authored
Jan 18, 2009
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dct-test: add Alpha idct
Originally committed as revision 16669 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
179c56b8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
dct-test.c
libavcodec/dct-test.c
+6
-0
No files found.
libavcodec/dct-test.c
View file @
2a839eeb
...
...
@@ -70,6 +70,8 @@ void simple_idct_armv5te(DCTELEM *data);
void
ff_simple_idct_armv6
(
DCTELEM
*
data
);
void
ff_simple_idct_neon
(
DCTELEM
*
data
);
void
ff_simple_idct_axp
(
DCTELEM
*
data
);
struct
algo
{
const
char
*
name
;
enum
{
FDCT
,
IDCT
}
is_idct
;
...
...
@@ -137,6 +139,10 @@ struct algo algos[] = {
#endif
#endif
/* ARCH_ARM */
#if ARCH_ALPHA
{
"SIMPLE-ALPHA"
,
1
,
ff_simple_idct_axp
,
idct
,
NO_PERM
},
#endif
{
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