diff i386/mpegvideo_mmx_template.c @ 625:bb6a69f9d409 libavcodec

slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG) per context DCT selection
author michaelni
date Thu, 29 Aug 2002 23:55:32 +0000
parents b1a191202f96
children 3e0f62e5eed6
line wrap: on
line diff
--- a/i386/mpegvideo_mmx_template.c	Wed Aug 28 21:47:28 2002 +0000
+++ b/i386/mpegvideo_mmx_template.c	Thu Aug 29 23:55:32 2002 +0000
@@ -40,7 +40,8 @@
     const UINT16 *qmat, *bias;
     static __align8 INT16 temp_block[64];
 
-    av_fdct (block);
+    //s->fdct (block);
+    fdct_mmx (block); //cant be anything else ...
 
     if (s->mb_intra) {
         int dummy;