diff mpegvideo.c @ 704:9b35329086c7 libavcodec

An easy way to speed up encoding by 6%.
author mellum
date Sat, 28 Sep 2002 02:18:34 +0000
parents 85b071dfc7e3
children e65798d228ea
line wrap: on
line diff
--- a/mpegvideo.c	Sat Sep 28 01:49:37 2002 +0000
+++ b/mpegvideo.c	Sat Sep 28 02:18:34 2002 +0000
@@ -2749,9 +2749,11 @@
     
     s->fdct (block);
 
+#ifndef ARCH_ALPHA              /* Alpha uses unpermuted matrix */
     /* we need this permutation so that we correct the IDCT
        permutation. will be moved into DCT code */
     block_permute(block);
+#endif
 
     if (s->mb_intra) {
         if (!s->h263_aic) {