summaryrefslogtreecommitdiff
path: root/libavcodec/interplayvideo.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-03-31 19:39:47 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-03-31 19:39:47 +0000
commitdd9630e40fe0431b042b2acda04adb1acebc4b04 (patch)
tree4354970e881f0b6cbb7b22a75b58b19866ae6583 /libavcodec/interplayvideo.c
parent993a4423158abb2bc66b05398ed6590962a32b34 (diff)
Cosmetics: remove some pointless {}
Originally committed as revision 18284 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/interplayvideo.c')
-rw-r--r--libavcodec/interplayvideo.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index 0dfeac66bb..cdbea2edd1 100644
--- a/libavcodec/interplayvideo.c
+++ b/libavcodec/interplayvideo.c
@@ -213,9 +213,8 @@ static int ipvideo_decode_block_opcode_0x7(IpvideoContext *s)
for (y = 0; y < 8; y++) {
flags = *s->stream_ptr++ | 0x100;
- for (; flags != 1; flags >>= 1) {
+ for (; flags != 1; flags >>= 1)
*s->pixel_ptr++ = P[flags & 1];
- }
s->pixel_ptr += s->line_inc;
}
@@ -265,9 +264,8 @@ static int ipvideo_decode_block_opcode_0x8(IpvideoContext *s)
flags = bytestream_get_le16(&s->stream_ptr);
}
- for (x = 0; x < 4; x++, flags >>= 1) {
+ for (x = 0; x < 4; x++, flags >>= 1)
*s->pixel_ptr++ = P[flags & 1];
- }
s->pixel_ptr += s->stride - 4;
// switch to right half
if (y == 7) s->pixel_ptr -= 8 * s->stride - 4;
@@ -285,9 +283,8 @@ static int ipvideo_decode_block_opcode_0x8(IpvideoContext *s)
/* vertical split; left & right halves are 2-color encoded */
for (y = 0; y < 16; y++) {
- for (x = 0; x < 4; x++, flags >>= 1) {
+ for (x = 0; x < 4; x++, flags >>= 1)
*s->pixel_ptr++ = P[flags & 1];
- }
s->pixel_ptr += s->stride - 4;
// switch to right half
if (y == 7) {
@@ -308,10 +305,8 @@ static int ipvideo_decode_block_opcode_0x8(IpvideoContext *s)
}
flags = *s->stream_ptr++ | 0x100;
- for (; flags != 1; flags >>= 1) {
-
+ for (; flags != 1; flags >>= 1)
*s->pixel_ptr++ = P[flags & 1];
- }
s->pixel_ptr += s->line_inc;
}
}
@@ -341,9 +336,8 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
for (y = 0; y < 8; y++) {
/* get the next set of 8 2-bit flags */
int flags = bytestream_get_le16(&s->stream_ptr);
- for (x = 0; x < 8; x++, flags >>= 2) {
+ for (x = 0; x < 8; x++, flags >>= 2)
*s->pixel_ptr++ = P[flags & 0x03];
- }
s->pixel_ptr += s->line_inc;
}
@@ -419,9 +413,8 @@ static int ipvideo_decode_block_opcode_0xA(IpvideoContext *s)
flags = bytestream_get_le32(&s->stream_ptr);
}
- for (x = 0; x < 4; x++, flags >>= 2) {
+ for (x = 0; x < 4; x++, flags >>= 2)
*s->pixel_ptr++ = P[flags & 0x03];
- }
s->pixel_ptr += s->stride - 4;
// switch to right half