Commit 4919a4a9 authored by michael's avatar michael

filter_mb_fast needs cbp_table to be set.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21290 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2a8c5e7a
......@@ -911,14 +911,14 @@ decode_intra_mb:
else cbp= golomb_to_inter_cbp_gray[cbp];
}
}
h->cbp = cbp;
if(dct8x8_allowed && (cbp&15) && !IS_INTRA(mb_type)){
if(get_bits1(&s->gb)){
mb_type |= MB_TYPE_8x8DCT;
h->cbp_table[mb_xy]= cbp;
}
}
h->cbp=
h->cbp_table[mb_xy]= cbp;
s->current_picture.mb_type[mb_xy]= mb_type;
if(cbp || IS_INTRA16x16(mb_type)){
......
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