mirror of https://git.ffmpeg.org/ffmpeg.git
0xFFFF l of cola. Now P-frames are decoded almost without distortions.
Originally committed as revision 5563 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a34c26cc3d
commit
e9f2396e6f
|
@ -2044,12 +2044,12 @@ static int vc1_decode_p_block(VC1Context *v, DCTELEM block[64], int n, int mquan
|
|||
|
||||
// convert transforms like 8X4_TOP to generic TT and SUBBLKPAT
|
||||
if(ttblk == TT_8X4_TOP || ttblk == TT_8X4_BOTTOM) {
|
||||
ttblk = TT_8X4;
|
||||
subblkpat = 2 - (ttblk == TT_8X4_TOP);
|
||||
ttblk = TT_8X4;
|
||||
}
|
||||
if(ttblk == TT_4X8_RIGHT || ttblk == TT_4X8_LEFT) {
|
||||
ttblk = TT_4X8;
|
||||
subblkpat = 2 - (ttblk == TT_4X8_LEFT);
|
||||
ttblk = TT_4X8;
|
||||
}
|
||||
switch(ttblk) {
|
||||
case TT_8X8:
|
||||
|
|
Loading…
Reference in New Issue