summaryrefslogtreecommitdiff
path: root/fftools
diff options
context:
space:
mode:
authorPeter Große <pegro@friiks.de>2017-10-29 15:07:12 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-11-05 03:14:29 +0100
commit0ae1f6ddeb350d767a4860e1dcffea9cebe9917c (patch)
treef98311c15228ba0516e1b2a2d6728522407f759b /fftools
parent3ddb887c88483ce089b29a30d0d0aa574c8cdc66 (diff)
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>
Diffstat (limited to 'fftools')
-rw-r--r--fftools/ffmpeg.c7
1 files 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;