mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
ffmpeg.c: fix code style in seek_to_start
Signed-off-by: Peter Große <pegro@friiks.de> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
3ddb887c88
commit
0ae1f6ddeb
@ -4146,14 +4146,17 @@ static int seek_to_start(InputFile *ifile, AVFormatContext *is)
|
||||
AVRational sample_rate = {1, avctx->sample_rate};
|
||||
|
||||
duration = av_rescale_q(ist->nb_samples, sample_rate, ist->st->time_base);
|
||||
} else
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
if (ist->framerate.num) {
|
||||
duration = av_rescale_q(1, av_inv_q(ist->framerate), ist->st->time_base);
|
||||
} else if (ist->st->avg_frame_rate.num) {
|
||||
duration = av_rescale_q(1, av_inv_q(ist->st->avg_frame_rate), ist->st->time_base);
|
||||
} else duration = 1;
|
||||
} else {
|
||||
duration = 1;
|
||||
}
|
||||
}
|
||||
if (!ifile->duration)
|
||||
ifile->time_base = ist->st->time_base;
|
||||
|
Loading…
Reference in New Issue
Block a user