diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-12 23:43:23 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-12 23:43:23 +0000 |
commit | 6d8bfb52f05e73d49ac873d42610862d6c54692c (patch) | |
tree | a54f05d66e4cea8de5dbc014196eaf7a4f454590 /libavcodec | |
parent | f6993c9fa1c6c668e9325b309b6d5c456574af01 (diff) | |
download | ffmpeg-6d8bfb52f05e73d49ac873d42610862d6c54692c.tar.gz |
cosmetics: indentation
Originally committed as revision 9012 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 30bcf6053d..c7f5a81e6a 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -4600,7 +4600,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x, h263_encode_mb(s, s->block, motion_x, motion_y); break; case CODEC_ID_MJPEG: if (ENABLE_MJPEG_ENCODER) - mjpeg_encode_mb(s, s->block); break; + mjpeg_encode_mb(s, s->block); + break; default: assert(0); } @@ -5770,7 +5771,7 @@ static int encode_picture(MpegEncContext *s, int picture_number) switch(s->out_format) { case FMT_MJPEG: if (ENABLE_MJPEG_ENCODER) - mjpeg_picture_header(s); + mjpeg_picture_header(s); break; #ifdef CONFIG_H261_ENCODER case FMT_H261: |