mirror of https://git.ffmpeg.org/ffmpeg.git
Cosmetics: Reindent after e82b181f
.
This commit is contained in:
parent
e82b181f80
commit
a6a453ccd1
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue