mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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_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[] = {
|
|||||||
#endif
|
#endif
|
||||||
#endif /* ARCH_ARM */
|
#endif /* ARCH_ARM */
|
||||||
|
|
||||||
|
#if ARCH_ALPHA
|
||||||
|
{"SIMPLE-ALPHA", 1, ff_simple_idct_axp, idct, NO_PERM },
|
||||||
|
#endif
|
||||||
|
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user