Commit 2a839eeb authored by Måns Rullgård's avatar Måns Rullgård

dct-test: add Alpha idct

Originally committed as revision 16669 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 179c56b8
......@@ -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 }
};
......
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