Commit 091bc6ca authored by Peter Ross's avatar Peter Ross

mmvideo: remove some conditional statements by limiting range of half_horiz...

mmvideo: remove some conditional statements by limiting range of half_horiz and half_vert parameters to [0,1]

Originally committed as revision 26299 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cb77dad7
...@@ -78,6 +78,10 @@ static void mm_decode_pal(MmContext *s, const uint8_t *buf, const uint8_t *buf_e ...@@ -78,6 +78,10 @@ static void mm_decode_pal(MmContext *s, const uint8_t *buf, const uint8_t *buf_e
} }
} }
/**
* @param half_horiz Half horizontal resolution (0 or 1)
* @param half_vert Half vertical resolution (0 or 1)
*/
static void mm_decode_intra(MmContext * s, int half_horiz, int half_vert, const uint8_t *buf, int buf_size) static void mm_decode_intra(MmContext * s, int half_horiz, int half_vert, const uint8_t *buf, int buf_size)
{ {
int i, x, y; int i, x, y;
...@@ -108,11 +112,15 @@ static void mm_decode_intra(MmContext * s, int half_horiz, int half_vert, const ...@@ -108,11 +112,15 @@ static void mm_decode_intra(MmContext * s, int half_horiz, int half_vert, const
if (x >= s->avctx->width) { if (x >= s->avctx->width) {
x=0; x=0;
y += half_vert ? 2 : 1; y += 1 + half_vert;
} }
} }
} }
/*
* @param half_horiz Half horizontal resolution (0 or 1)
* @param half_vert Half vertical resolution (0 or 1)
*/
static void mm_decode_inter(MmContext * s, int half_horiz, int half_vert, const uint8_t *buf, int buf_size) static void mm_decode_inter(MmContext * s, int half_horiz, int half_vert, const uint8_t *buf, int buf_size)
{ {
const int data_ptr = 2 + AV_RL16(&buf[0]); const int data_ptr = 2 + AV_RL16(&buf[0]);
...@@ -145,12 +153,12 @@ static void mm_decode_inter(MmContext * s, int half_horiz, int half_vert, const ...@@ -145,12 +153,12 @@ static void mm_decode_inter(MmContext * s, int half_horiz, int half_vert, const
} }
d++; d++;
} }
x += half_horiz ? 2 : 1; x += 1 + half_horiz;
} }
} }
r += length; r += length;
y += half_vert ? 2 : 1; y += 1 + half_vert;
} }
} }
......
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