summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-19 15:44:42 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-19 18:35:40 +0100
commitc5092025901b37aa5de4f290afb61fc5377eb79d (patch)
tree81108fe39deaf128251d5ec8ead73d8e941412b0 /ffmpeg.c
parent4ffec6d9331527f0d4bf265211e10f3298aaa977 (diff)
ffmpeg: Use input packet duration in vfr/cfr code if available and valid
Fixes Ticket3052
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 0f4b2aa254..3b24cf99da 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -893,6 +893,14 @@ static void do_video_out(AVFormatContext *s,
if(ist && ist->st->start_time != AV_NOPTS_VALUE && ist->st->first_dts != AV_NOPTS_VALUE && ost->frame_rate.num)
duration = 1/(av_q2d(ost->frame_rate) * av_q2d(enc->time_base));
+ if (!ost->filters_script &&
+ !ost->filters &&
+ next_picture &&
+ ist &&
+ lrintf(av_frame_get_pkt_duration(next_picture) * av_q2d(ist->st->time_base) / av_q2d(enc->time_base)) > 0) {
+ duration = lrintf(av_frame_get_pkt_duration(next_picture) * av_q2d(ist->st->time_base) / av_q2d(enc->time_base));
+ }
+
sync_ipts = next_picture->pts;
delta0 = sync_ipts - ost->sync_opts;
delta = delta0 + duration;