cosmetic: Reformat ff_h263_decode_mba

This commit is contained in:
Luca Barbato 2015-06-26 15:57:15 +02:00 committed by Vittorio Giovara
parent e95c7a6185
commit 6f4cd33efb
1 changed files with 6 additions and 6 deletions

View File

@ -139,12 +139,12 @@ int ff_h263_decode_mba(MpegEncContext *s)
{
int i, mb_pos;
for(i=0; i<6; i++){
if(s->mb_num-1 <= ff_mba_max[i]) break;
}
mb_pos= get_bits(&s->gb, ff_mba_length[i]);
s->mb_x= mb_pos % s->mb_width;
s->mb_y= mb_pos / s->mb_width;
for (i = 0; i < 6; i++)
if (s->mb_num - 1 <= ff_mba_max[i])
break;
mb_pos = get_bits(&s->gb, ff_mba_length[i]);
s->mb_x = mb_pos % s->mb_width;
s->mb_y = mb_pos / s->mb_width;
return mb_pos;
}