Cosmetics: Reindent after e82b181f.

This commit is contained in:
Carl Eugen Hoyos 2016-09-03 14:23:32 +02:00
parent e82b181f80
commit a6a453ccd1
1 changed files with 8 additions and 8 deletions

View File

@ -1692,14 +1692,14 @@ static int mjpeg_decode_app(MJpegDecodeContext *s)
len -= 8;
if (len >= 2) {
t_w = get_bits(&s->gb, 8);
t_h = get_bits(&s->gb, 8);
if (t_w && t_h) {
/* skip thumbnail */
if (len -10 - (t_w * t_h * 3) > 0)
len -= t_w * t_h * 3;
}
len -= 2;
t_w = get_bits(&s->gb, 8);
t_h = get_bits(&s->gb, 8);
if (t_w && t_h) {
/* skip thumbnail */
if (len -10 - (t_w * t_h * 3) > 0)
len -= t_w * t_h * 3;
}
len -= 2;
}
goto out;
}