Commit e0596749 authored by kostya's avatar kostya

0xFFFF l of cola. Now P-frames are decoded almost without distortions.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5563 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a2c97a5a
......@@ -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:
......
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