diff dsputil.c @ 1571:aa4dc16c0f18 libavcodec

* adding integer/floating point AAN implementations for DCT 2-4-8
author romansh
date Sat, 25 Oct 2003 00:32:54 +0000
parents e08df4d22d27
children 932d306bf1dc
line wrap: on
line diff
--- a/dsputil.c	Fri Oct 24 21:57:04 2003 +0000
+++ b/dsputil.c	Sat Oct 25 00:32:54 2003 +0000
@@ -2884,11 +2884,11 @@
 #ifdef CONFIG_ENCODERS
     if(avctx->dct_algo==FF_DCT_FASTINT) {
         c->fdct = fdct_ifast;
-	c->fdct248 = ff_fdct248_islow; // FIXME: need an optimized version
+	c->fdct248 = fdct_ifast248;
     } 
     else if(avctx->dct_algo==FF_DCT_FAAN) {
         c->fdct = ff_faandct;
-	c->fdct248 = ff_fdct248_islow; // FIXME: need an optimized version
+	c->fdct248 = ff_faandct248; 
     } 
     else {
         c->fdct = ff_jpeg_fdct_islow; //slow/accurate/default