You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Cosmetics: Reindent after e82b181f
.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user