diff armv4l/mpegvideo_arm.c @ 768:c3fc09466f92 libavcodec

idct_permutation_type variable, so the permutation type can quickly be identified
author michaelni
date Fri, 25 Oct 2002 13:39:47 +0000
parents b24ea84b23e2
children 8cc0d241da37
line wrap: on
line diff
--- a/armv4l/mpegvideo_arm.c	Fri Oct 25 10:50:02 2002 +0000
+++ b/armv4l/mpegvideo_arm.c	Fri Oct 25 13:39:47 2002 +0000
@@ -44,7 +44,6 @@
     if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){
         s->idct_put= arm_idct_put;
         s->idct_add= arm_idct_add;
-        for(i=0; i<64; i++)
-            s->idct_permutation[i]= i;
+        s->idct_permutation_type= FF_NO_IDCT_PERM;
     }
 }