mirror of https://git.ffmpeg.org/ffmpeg.git
dct-test: add Alpha idct
Originally committed as revision 16669 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
179c56b879
commit
2a839eeb02
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue