diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-13 00:26:21 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-13 00:26:21 +0000 |
commit | f8b2417eba36760b661eb3dcd097b3460b303bbe (patch) | |
tree | 0bf98385e09e2f9e544c2dbe250ec998359a70ea /libavcodec/mpegvideo.c | |
parent | 70724cba750e91b14902640cea10b475fc6d4e21 (diff) | |
download | ffmpeg-f8b2417eba36760b661eb3dcd097b3460b303bbe.tar.gz |
cosmetics: indent
Originally committed as revision 9014 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 98fd64345b..a7bd7cc3a9 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -4585,7 +4585,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x, break; case CODEC_ID_H261: if (ENABLE_H261_ENCODER) - ff_h261_encode_mb(s, s->block, motion_x, motion_y); break; + ff_h261_encode_mb(s, s->block, motion_x, motion_y); + break; case CODEC_ID_H263: case CODEC_ID_H263P: case CODEC_ID_FLV1: @@ -5767,7 +5768,7 @@ static int encode_picture(MpegEncContext *s, int picture_number) break; case FMT_H261: if (ENABLE_H261_ENCODER) - ff_h261_encode_picture_header(s, picture_number); + ff_h261_encode_picture_header(s, picture_number); break; case FMT_H263: if (ENABLE_WMV2_ENCODER && s->codec_id == CODEC_ID_WMV2) |