mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
ffmpeg: fix frame duration used for video sync.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1ca37e79d0
commit
a54867121d
11
ffmpeg.c
11
ffmpeg.c
@ -1909,15 +1909,8 @@ static void do_video_out(AVFormatContext *s, OutputStream *ost,
|
||||
|
||||
enc = ost->st->codec;
|
||||
|
||||
if (ist && 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->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);
|
||||
}
|
||||
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));
|
||||
|
||||
sync_ipts = get_sync_ipts(ost, in_picture->pts) / av_q2d(enc->time_base);
|
||||
delta = sync_ipts - ost->sync_opts + duration;
|
||||
|
Loading…
Reference in New Issue
Block a user