# HG changeset patch # User astrange # Date 1215037727 0 # Node ID 82ab987bca8a01dc4ce5c2fc0f4ceaf30e13b255 # Parent 9a8278d658587fdfaca02497f964b4994bee6d81 Cosmetics: split a long line. diff -r 9a8278d65858 -r 82ab987bca8a h264.c --- a/h264.c Wed Jul 02 22:25:17 2008 +0000 +++ b/h264.c Wed Jul 02 22:28:47 2008 +0000 @@ -2726,7 +2726,8 @@ MpegEncContext * const s = &h->s; const int mb_xy= h->mb_xy; const int mb_type= s->current_picture.mb_type[mb_xy]; - int is_complex = FRAME_MBAFF || MB_FIELD || IS_INTRA_PCM(mb_type) || s->codec_id != CODEC_ID_H264 || (ENABLE_GRAY && (s->flags&CODEC_FLAG_GRAY)) || (ENABLE_H264_ENCODER && s->encoding) || ENABLE_SMALL; + int is_complex = FRAME_MBAFF || MB_FIELD || IS_INTRA_PCM(mb_type) || s->codec_id != CODEC_ID_H264 || + (ENABLE_GRAY && (s->flags&CODEC_FLAG_GRAY)) || (ENABLE_H264_ENCODER && s->encoding) || ENABLE_SMALL; if(ENABLE_H264_ENCODER && !s->decode) return;