diff dct-test.c @ 6407:7f9e2b5893fc libavcodec

floating point AAN IDCT
author michael
date Tue, 26 Feb 2008 14:59:11 +0000
parents f4859c13426b
children b4c000318ed4
line wrap: on
line diff
--- a/dct-test.c	Tue Feb 26 10:21:33 2008 +0000
+++ b/dct-test.c	Tue Feb 26 14:59:11 2008 +0000
@@ -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 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),