Commit 831cf926 authored by reimar's avatar reimar

Fix indentation


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18263 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e24b56a6
...@@ -227,10 +227,10 @@ static int ipvideo_decode_block_opcode_0x7(IpvideoContext *s) ...@@ -227,10 +227,10 @@ static int ipvideo_decode_block_opcode_0x7(IpvideoContext *s)
flags = bytestream_get_le16(&s->stream_ptr); flags = bytestream_get_le16(&s->stream_ptr);
for (y = 0; y < 8; y += 2) { for (y = 0; y < 8; y += 2) {
for (x = 0; x < 8; x += 2, flags >>= 1) { for (x = 0; x < 8; x += 2, flags >>= 1) {
s->pixel_ptr[x ] = s->pixel_ptr[x ] =
s->pixel_ptr[x + 1 ] = s->pixel_ptr[x + 1 ] =
s->pixel_ptr[x + s->stride] = s->pixel_ptr[x + s->stride] =
s->pixel_ptr[x + 1 + s->stride] = P[flags & 1]; s->pixel_ptr[x + 1 + s->stride] = P[flags & 1];
} }
s->pixel_ptr += s->stride * 2; s->pixel_ptr += s->stride * 2;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment