Commit dd2111bd authored by Michael Niedermayer's avatar Michael Niedermayer

indention

Originally committed as revision 10977 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8590bcc3
...@@ -3762,29 +3762,29 @@ static void vc1_decode_blocks(VC1Context *v) ...@@ -3762,29 +3762,29 @@ static void vc1_decode_blocks(VC1Context *v)
ff_intrax8_decode_picture(&v->x8, 2*v->pq+v->halfpq, v->pq*(!v->pquantizer) ); ff_intrax8_decode_picture(&v->x8, 2*v->pq+v->halfpq, v->pq*(!v->pquantizer) );
}else }else
switch(v->s.pict_type) { switch(v->s.pict_type) {
case I_TYPE: case I_TYPE:
if(v->profile == PROFILE_ADVANCED)
vc1_decode_i_blocks_adv(v);
else
vc1_decode_i_blocks(v);
break;
case P_TYPE:
if(v->p_frame_skipped)
vc1_decode_skip_blocks(v);
else
vc1_decode_p_blocks(v);
break;
case B_TYPE:
if(v->bi_type){
if(v->profile == PROFILE_ADVANCED) if(v->profile == PROFILE_ADVANCED)
vc1_decode_i_blocks_adv(v); vc1_decode_i_blocks_adv(v);
else else
vc1_decode_i_blocks(v); vc1_decode_i_blocks(v);
}else break;
vc1_decode_b_blocks(v); case P_TYPE:
break; if(v->p_frame_skipped)
} vc1_decode_skip_blocks(v);
else
vc1_decode_p_blocks(v);
break;
case B_TYPE:
if(v->bi_type){
if(v->profile == PROFILE_ADVANCED)
vc1_decode_i_blocks_adv(v);
else
vc1_decode_i_blocks(v);
}else
vc1_decode_b_blocks(v);
break;
}
} }
/** Find VC-1 marker in buffer /** Find VC-1 marker in buffer
......
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