Commit fb885f53 authored by mellum's avatar mellum

An easy way to speed up encoding by 6%.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@978 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5c31469c
...@@ -2749,9 +2749,11 @@ static int dct_quantize_c(MpegEncContext *s, ...@@ -2749,9 +2749,11 @@ static int dct_quantize_c(MpegEncContext *s,
s->fdct (block); s->fdct (block);
#ifndef ARCH_ALPHA /* Alpha uses unpermuted matrix */
/* we need this permutation so that we correct the IDCT /* we need this permutation so that we correct the IDCT
permutation. will be moved into DCT code */ permutation. will be moved into DCT code */
block_permute(block); block_permute(block);
#endif
if (s->mb_intra) { if (s->mb_intra) {
if (!s->h263_aic) { if (!s->h263_aic) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment