mirror of https://git.ffmpeg.org/ffmpeg.git
An easy way to speed up encoding by 6%.
Originally committed as revision 978 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7ffbb60ee7
commit
ea689c8eb7
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue