summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-10-22 18:26:38 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-22 18:26:38 +0000
commit65e4c8c919c63b947b157bdb8f141685b6553fba (patch)
tree31e406da0e96c9e9547cb153907a9a2e35bdc658 /libavcodec/dct-test.c
parent9d9e31722ad6dda86da0ccb7eb72004c99057274 (diff)
floating point AAN DCT
Originally committed as revision 2415 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 5f8473accc..958ce52bce 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -14,6 +14,7 @@
#include "i386/mmx.h"
#include "simple_idct.h"
+#include "faandct.h"
#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
@@ -479,6 +480,7 @@ int main(int argc, char **argv)
dct_error("IJG-AAN-INT", 0, fdct_ifast, fdct, test);
dct_error("IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, test);
dct_error("MMX", 0, ff_fdct_mmx, fdct, test);
+ dct_error("FAAN", 0, ff_faandct, fdct, test);
} else {
dct_error("REF-DBL", 1, idct, idct, test);
dct_error("INT", 1, j_rev_dct, idct, test);