cosmetics: indentation
authorAurelien Jacobs <aurel@gnuage.org>
Sat, 12 May 2007 23:43:23 +0000 (23:43 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Sat, 12 May 2007 23:43:23 +0000 (23:43 +0000)
Originally committed as revision 9012 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mpegvideo.c

index 30bcf6053d8305811926b134744ff604ba047bba..c7f5a81e6afc42a90d3d477177ca246ea728b920 100644 (file)
@@ -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: