[FFmpeg-cvslog] cosmetic: Reformat ff_h263_decode_mba
Luca Barbato
git at videolan.org
Tue Jun 30 22:10:00 CEST 2015
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Fri Jun 26 15:57:15 2015 +0200| [6f4cd33efb5a9ec75db1677d5f7846c60337129f] | committer: Vittorio Giovara
cosmetic: Reformat ff_h263_decode_mba
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6f4cd33efb5a9ec75db1677d5f7846c60337129f
---
libavcodec/ituh263dec.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c
index 10dd6c2..b1da22f 100644
--- a/libavcodec/ituh263dec.c
+++ b/libavcodec/ituh263dec.c
@@ -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;
}
More information about the ffmpeg-cvslog
mailing list