Browse Source

cosmetics: reindent

Originally committed as revision 8986 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 18 years ago
parent
commit
87acdd5391
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      libavcodec/mpegvideo.c

+ 4
- 2
libavcodec/mpegvideo.c View File

@@ -4583,10 +4583,12 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x,
case CODEC_ID_MSMPEG4V3:
case CODEC_ID_WMV1:
if (ENABLE_MSMPEG4_ENCODER)
msmpeg4_encode_mb(s, s->block, motion_x, motion_y); break;
msmpeg4_encode_mb(s, s->block, motion_x, motion_y);
break;
case CODEC_ID_WMV2:
if (ENABLE_WMV2_ENCODER)
ff_wmv2_encode_mb(s, s->block, motion_x, motion_y); break;
ff_wmv2_encode_mb(s, s->block, motion_x, motion_y);
break;
#ifdef CONFIG_H261_ENCODER
case CODEC_ID_H261:
ff_h261_encode_mb(s, s->block, motion_x, motion_y); break;


Loading…
Cancel
Save