diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-05-28 22:27:43 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-06-05 16:15:04 +0200 |
commit | 5bea8daa787c99b0d7172d41a0749377fee934ed (patch) | |
tree | e07ad244f38fbfd12c7e279e41c4edbb80691a98 | |
parent | 2f92650c5d8b23f5935285d18567d1ddf3150a96 (diff) | |
download | ffmpeg-5bea8daa787c99b0d7172d41a0749377fee934ed.tar.gz |
fftools/ffmpeg_enc: do not guess frame durations from output framerate
There is no reason to expect input frame durations to match output
framerate.
-rw-r--r-- | fftools/ffmpeg_enc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fftools/ffmpeg_enc.c b/fftools/ffmpeg_enc.c index 4a5ae3aa1b..5be6e9332a 100644 --- a/fftools/ffmpeg_enc.c +++ b/fftools/ffmpeg_enc.c @@ -1042,9 +1042,6 @@ static void do_video_out(OutputFile *of, OutputStream *ost, AVFrame *frame) if (frame) duration = lrintf(frame->duration * av_q2d(frame->time_base) / av_q2d(enc->time_base)); - if (duration <= 0 && ost->frame_rate.num) - duration = FFMIN(duration, 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base))); - frame_rate = av_buffersink_get_frame_rate(filter); if (duration <= 0 && frame_rate.num > 0 && frame_rate.den > 0) duration = 1/(av_q2d(frame_rate) * av_q2d(enc->time_base)); |