You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
cosmetic: Reformat ff_h263_decode_mba
This commit is contained in:
committed by
Vittorio Giovara
parent
e95c7a6185
commit
6f4cd33efb
@@ -139,12 +139,12 @@ int ff_h263_decode_mba(MpegEncContext *s)
|
|||||||
{
|
{
|
||||||
int i, mb_pos;
|
int i, mb_pos;
|
||||||
|
|
||||||
for(i=0; i<6; i++){
|
for (i = 0; i < 6; i++)
|
||||||
if(s->mb_num-1 <= ff_mba_max[i]) break;
|
if (s->mb_num - 1 <= ff_mba_max[i])
|
||||||
}
|
break;
|
||||||
mb_pos= get_bits(&s->gb, ff_mba_length[i]);
|
mb_pos = get_bits(&s->gb, ff_mba_length[i]);
|
||||||
s->mb_x= mb_pos % s->mb_width;
|
s->mb_x = mb_pos % s->mb_width;
|
||||||
s->mb_y= mb_pos / s->mb_width;
|
s->mb_y = mb_pos / s->mb_width;
|
||||||
|
|
||||||
return mb_pos;
|
return mb_pos;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user