[FFmpeg-cvslog] ffmpeg.c: fix code style in seek_to_start
Peter Große
git at videolan.org
Sun Nov 5 05:00:12 EET 2017
ffmpeg | branch: master | Peter Große <pegro at friiks.de> | Sun Oct 29 15:07:12 2017 +0100| [0ae1f6ddeb350d767a4860e1dcffea9cebe9917c] | committer: Michael Niedermayer
ffmpeg.c: fix code style in seek_to_start
Signed-off-by: Peter Große <pegro at friiks.de>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0ae1f6ddeb350d767a4860e1dcffea9cebe9917c
---
fftools/ffmpeg.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 65dbe93626..679929cfc4 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list