mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
cosmetics: indentation
Originally committed as revision 9582 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
eb75a69818
commit
674eeb5f57
@ -1701,7 +1701,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x,
|
||||
break;
|
||||
case CODEC_ID_MPEG4:
|
||||
if (ENABLE_MPEG4_ENCODER)
|
||||
mpeg4_encode_mb(s, s->block, motion_x, motion_y); break;
|
||||
mpeg4_encode_mb(s, s->block, motion_x, motion_y);
|
||||
break;
|
||||
case CODEC_ID_MSMPEG4V2:
|
||||
case CODEC_ID_MSMPEG4V3:
|
||||
case CODEC_ID_WMV1:
|
||||
@ -1723,7 +1724,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x,
|
||||
case CODEC_ID_RV20:
|
||||
if (ENABLE_H263_ENCODER || ENABLE_H263P_ENCODER ||
|
||||
ENABLE_FLV_ENCODER || ENABLE_RV10_ENCODER || ENABLE_RV20_ENCODER)
|
||||
h263_encode_mb(s, s->block, motion_x, motion_y); break;
|
||||
h263_encode_mb(s, s->block, motion_x, motion_y);
|
||||
break;
|
||||
case CODEC_ID_MJPEG:
|
||||
if (ENABLE_MJPEG_ENCODER)
|
||||
ff_mjpeg_encode_mb(s, s->block);
|
||||
@ -2482,7 +2484,7 @@ static int encode_thread(AVCodecContext *c, void *arg){
|
||||
break;
|
||||
case CANDIDATE_MB_TYPE_DIRECT:
|
||||
if (ENABLE_MPEG4_ENCODER) {
|
||||
s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT;
|
||||
s->mv_dir = MV_DIR_FORWARD|MV_DIR_BACKWARD|MV_DIRECT;
|
||||
s->mb_intra= 0;
|
||||
motion_x=s->b_direct_mv_table[xy][0];
|
||||
motion_y=s->b_direct_mv_table[xy][1];
|
||||
@ -2491,7 +2493,7 @@ static int encode_thread(AVCodecContext *c, void *arg){
|
||||
break;
|
||||
case CANDIDATE_MB_TYPE_DIRECT0:
|
||||
if (ENABLE_MPEG4_ENCODER) {
|
||||
s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT;
|
||||
s->mv_dir = MV_DIR_FORWARD|MV_DIR_BACKWARD|MV_DIRECT;
|
||||
s->mb_intra= 0;
|
||||
ff_mpeg4_set_direct_mv(s, 0, 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user