Originally committed as revision 14408 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer
2008-07-26 02:31:19 +00:00
parent 0af6967ee7
commit fef744d404

View File

@ -4719,10 +4719,8 @@ decode_intra_mb:
} }
if(CHROMA){ if(CHROMA){
if(IS_INTRA4x4(mb_type)) if(IS_INTRA4x4(mb_type)) cbp= golomb_to_intra4x4_cbp[cbp];
cbp= golomb_to_intra4x4_cbp[cbp]; else cbp= golomb_to_inter_cbp [cbp];
else
cbp= golomb_to_inter_cbp[cbp];
}else{ }else{
if(IS_INTRA4x4(mb_type)) cbp= golomb_to_intra4x4_cbp_gray[cbp]; if(IS_INTRA4x4(mb_type)) cbp= golomb_to_intra4x4_cbp_gray[cbp];
else cbp= golomb_to_inter_cbp_gray[cbp]; else cbp= golomb_to_inter_cbp_gray[cbp];