Commit 8082c406 authored by mru's avatar mru

dct-test: add Alpha idct

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16669 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 397a92f9
...@@ -70,6 +70,8 @@ void simple_idct_armv5te(DCTELEM *data); ...@@ -70,6 +70,8 @@ void simple_idct_armv5te(DCTELEM *data);
void ff_simple_idct_armv6(DCTELEM *data); void ff_simple_idct_armv6(DCTELEM *data);
void ff_simple_idct_neon(DCTELEM *data); void ff_simple_idct_neon(DCTELEM *data);
void ff_simple_idct_axp(DCTELEM *data);
struct algo { struct algo {
const char *name; const char *name;
enum { FDCT, IDCT } is_idct; enum { FDCT, IDCT } is_idct;
...@@ -137,6 +139,10 @@ struct algo algos[] = { ...@@ -137,6 +139,10 @@ struct algo algos[] = {
#endif #endif
#endif /* ARCH_ARM */ #endif /* ARCH_ARM */
#if ARCH_ALPHA
{"SIMPLE-ALPHA", 1, ff_simple_idct_axp, idct, NO_PERM },
#endif
{ 0 } { 0 }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment