summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-29 19:08:17 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-03-29 19:23:22 +0200
commit42043646785f419def5ca557f500ee105f4ccb3c (patch)
tree2300789f687effdb7d7302255ff643e23e8ef228 /ffmpeg.c
parent282ec7289d669e0297ad19ea492e086720e1bdcb (diff)
ffmpeg: switch duration calculation code from avg to r frame_rate.
This heuristic is less likely to overshoot and cause encoder failure. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index e4e67570e9..edd87a907f 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1570,7 +1570,9 @@ static void do_video_out(AVFormatContext *s, OutputStream *ost,
if (ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE) {
duration = FFMAX(av_q2d(ist->st->time_base), av_q2d(ist->st->codec->time_base));
- if(ist->st->avg_frame_rate.num)
+ if(ist->st->r_frame_rate.num)
+ duration= FFMAX(duration, 1/av_q2d(ist->st->r_frame_rate));
+ if(ist->st->avg_frame_rate.num && 0)
duration= FFMAX(duration, 1/av_q2d(ist->st->avg_frame_rate));
duration /= av_q2d(enc->time_base);