Commit 3fa6de51 authored by michael's avatar michael

indent


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14408 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1532e8fe
...@@ -4719,10 +4719,8 @@ decode_intra_mb: ...@@ -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];
......
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