From: reimar Date: Tue, 31 Mar 2009 13:21:41 +0000 (+0000) Subject: Fix indentation X-Git-Url: https://rtime.felk.cvut.cz/gitweb/frescor/ffmpeg.git/commitdiff_plain/831cf926250d20b0a56702179f1ac56673076986 Fix indentation git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18263 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index a685aca02..fd0e706e5 100644 --- a/libavcodec/interplayvideo.c +++ b/libavcodec/interplayvideo.c @@ -227,10 +227,10 @@ static int ipvideo_decode_block_opcode_0x7(IpvideoContext *s) flags = bytestream_get_le16(&s->stream_ptr); for (y = 0; y < 8; y += 2) { for (x = 0; x < 8; x += 2, flags >>= 1) { - s->pixel_ptr[x ] = - s->pixel_ptr[x + 1 ] = - s->pixel_ptr[x + s->stride] = - s->pixel_ptr[x + 1 + s->stride] = P[flags & 1]; + s->pixel_ptr[x ] = + s->pixel_ptr[x + 1 ] = + s->pixel_ptr[x + s->stride] = + s->pixel_ptr[x + 1 + s->stride] = P[flags & 1]; } s->pixel_ptr += s->stride * 2; }