Commit f8fb86e9 authored by Aurelien Jacobs's avatar Aurelien Jacobs

cosmetics: indentation

Originally committed as revision 8593 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ca345e44
......@@ -2046,16 +2046,15 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
*(dst++) = x;
if (avctx->codec_id != CODEC_ID_THP)
{
if (x == 0xff)
{
while(src<buf_end && x == 0xff)
x = *(src++);
if (x >= 0xd0 && x <= 0xd7)
*(dst++) = x;
else if (x)
break;
}
if (x == 0xff) {
while (src < buf_end && x == 0xff)
x = *(src++);
if (x >= 0xd0 && x <= 0xd7)
*(dst++) = x;
else if (x)
break;
}
}
}
init_get_bits(&s->gb, s->buffer, (dst - s->buffer)*8);
......
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