Commit 9e000915 authored by reimar's avatar reimar

Rearrange how the different cases are checked to reduce the number of

comparisons and allow further simplifications.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18268 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0b2ae7b4
...@@ -386,7 +386,8 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s) ...@@ -386,7 +386,8 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
memcpy(P, s->stream_ptr, 4); memcpy(P, s->stream_ptr, 4);
s->stream_ptr += 4; s->stream_ptr += 4;
if ((P[0] <= P[1]) && (P[2] <= P[3])) { if (P[0] <= P[1]) {
if (P[2] <= P[3]) {
/* 1 of 4 colors for each pixel, need 16 more bytes */ /* 1 of 4 colors for each pixel, need 16 more bytes */
CHECK_STREAM_PTR(16); CHECK_STREAM_PTR(16);
...@@ -400,7 +401,7 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s) ...@@ -400,7 +401,7 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
s->pixel_ptr += s->line_inc; s->pixel_ptr += s->line_inc;
} }
} else if ((P[0] <= P[1]) && (P[2] > P[3])) { } else {
uint32_t flags; uint32_t flags;
/* 1 of 4 colors for each 2x2 block, need 4 more bytes */ /* 1 of 4 colors for each 2x2 block, need 4 more bytes */
...@@ -418,7 +419,9 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s) ...@@ -418,7 +419,9 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
s->pixel_ptr += s->stride * 2; s->pixel_ptr += s->stride * 2;
} }
} else if ((P[0] > P[1]) && (P[2] <= P[3])) { }
} else {
if (P[2] <= P[3]) {
uint64_t flags; uint64_t flags;
/* 1 of 4 colors for each 2x1 block, need 8 more bytes */ /* 1 of 4 colors for each 2x1 block, need 8 more bytes */
...@@ -432,8 +435,7 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s) ...@@ -432,8 +435,7 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
} }
s->pixel_ptr += s->stride; s->pixel_ptr += s->stride;
} }
} else {
} else {
uint64_t flags; uint64_t flags;
/* 1 of 4 colors for each 1x2 block, need 8 more bytes */ /* 1 of 4 colors for each 1x2 block, need 8 more bytes */
...@@ -447,6 +449,7 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s) ...@@ -447,6 +449,7 @@ static int ipvideo_decode_block_opcode_0x9(IpvideoContext *s)
} }
s->pixel_ptr += s->stride * 2; s->pixel_ptr += s->stride * 2;
} }
}
} }
/* report success */ /* report success */
......
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