changeset 704:9b35329086c7 libavcodec

An easy way to speed up encoding by 6%.
author mellum
date Sat, 28 Sep 2002 02:18:34 +0000
parents 65f9e32225ba
children 107a56aa74f5
files mpegvideo.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
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) {