diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-26 14:59:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-26 14:59:11 +0000 |
commit | 6f08c541b4b0f96c193e4b761f1947841c07abc3 (patch) | |
tree | 32b379f00ad00c8f8ebe3855a6ff34f91c170ce5 /libavcodec/dct-test.c | |
parent | 60f5c96ee6634b674e851d59d4749095b1d4e4c3 (diff) | |
download | ffmpeg-6f08c541b4b0f96c193e4b761f1947841c07abc3.tar.gz |
floating point AAN IDCT
Originally committed as revision 12233 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 3d4a212097..c3ef297c49 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -36,6 +36,7 @@ #include "simple_idct.h" #include "faandct.h" +#include "faanidct.h" #ifndef MAX #define MAX(a, b) (((a) > (b)) ? (a) : (b)) @@ -87,6 +88,7 @@ struct algo { struct algo algos[] = { DCT_ERROR( "REF-DBL", 0, fdct, fdct, NO_PERM), DCT_ERROR("FAAN", 0, ff_faandct, fdct, FAAN_SCALE), + DCT_ERROR("FAANI", 1, ff_faanidct, idct, NO_PERM), DCT_ERROR("IJG-AAN-INT", 0, fdct_ifast, fdct, SCALE_PERM), DCT_ERROR("IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, NO_PERM), DCT_ERROR("REF-DBL", 1, idct, idct, NO_PERM), |