mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
fixed block permutation in encoder (not optimal - should move it in forward DCT code)
Originally committed as revision 51 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
689b775b85
commit
4f1c7e3c92
@ -1068,6 +1068,10 @@ static int dct_quantize_mmx(MpegEncContext *s,
|
||||
const int *qmat;
|
||||
|
||||
av_fdct (block);
|
||||
|
||||
/* we need this permutation so that we correct the IDCT
|
||||
permutation. will be moved into DCT code */
|
||||
block_permute(block);
|
||||
|
||||
if (s->mb_intra) {
|
||||
if (n < 4)
|
||||
|
Loading…
Reference in New Issue
Block a user