Commit b0e22d5d authored by michael's avatar michael

add {} to make the else look a little more normal


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10978 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 808cc40a
...@@ -3760,7 +3760,7 @@ static void vc1_decode_blocks(VC1Context *v) ...@@ -3760,7 +3760,7 @@ static void vc1_decode_blocks(VC1Context *v)
v->s.esc3_level_length = 0; v->s.esc3_level_length = 0;
if(v->x8_type){ if(v->x8_type){
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:
...@@ -3785,6 +3785,7 @@ static void vc1_decode_blocks(VC1Context *v) ...@@ -3785,6 +3785,7 @@ static void vc1_decode_blocks(VC1Context *v)
vc1_decode_b_blocks(v); vc1_decode_b_blocks(v);
break; 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