From 65e4c8c919c63b947b157bdb8f141685b6553fba Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 22 Oct 2003 18:26:38 +0000 Subject: floating point AAN DCT Originally committed as revision 2415 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dct-test.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/dct-test.c') 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); -- cgit v1.2.3