Browse Source

dct-test: add Alpha idct

Originally committed as revision 16669 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 17 years ago
parent
commit
2a839eeb02
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/dct-test.c

+ 6
- 0
libavcodec/dct-test.c View File

@@ -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…
Cancel
Save