aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorFalk Hüffner <mellum@users.sourceforge.net>2002-09-28 02:18:34 +0000
committerFalk Hüffner <mellum@users.sourceforge.net>2002-09-28 02:18:34 +0000
commitea689c8eb729b2ecb745ef46ca4567328885b8e2 (patch)
tree089c006c2fbebed064bd725aa35866995b156189 /libavcodec
parent7ffbb60ee7da48804c918c160c7cba15ee4c95a1 (diff)
downloadffmpeg-ea689c8eb729b2ecb745ef46ca4567328885b8e2.tar.gz
An easy way to speed up encoding by 6%.
Originally committed as revision 978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/mpegvideo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 98bc596b49..42e192eac6 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -2749,9 +2749,11 @@ static int dct_quantize_c(MpegEncContext *s,
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) {