From f8fb86e9bb2c6c15103c5d3b6704cf5ae0fdd914 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sun, 1 Apr 2007 22:20:51 +0000 Subject: [PATCH] cosmetics: indentation Originally committed as revision 8593 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mjpeg.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c index a2362df9dc..e3583e54e0 100644 --- a/libavcodec/mjpeg.c +++ b/libavcodec/mjpeg.c @@ -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= 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);