Browse Source

cosmetic: Reformat ff_h263_decode_mba

tags/n2.8
Luca Barbato Vittorio Giovara 10 years ago
parent
commit
6f4cd33efb
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavcodec/ituh263dec.c

+ 6
- 6
libavcodec/ituh263dec.c 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;
}


Loading…
Cancel
Save