Commit a6a453cc authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Cosmetics: Reindent after e82b181f.

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