From: John Stebbins Date: Wed, 16 Jan 2019 18:25:47 +0000 (-0800) Subject: muxavformat: use better approximation for duration of last video frame X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71e73fec08f414574c74dd0b482c516faad2fbfb;p=handbrake muxavformat: use better approximation for duration of last video frame Fixes https://github.com/HandBrake/HandBrake/issues/1802 --- diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index ff041b47c..2d4390f53 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -1234,10 +1234,20 @@ static int avformatMux(hb_mux_object_t *m, hb_mux_data_t *track, hb_buffer_t *bu // have zero duration. if (track->type == MUX_TYPE_SUBTITLE && track->st->codecpar->codec_id != AV_CODEC_ID_HDMV_PGS_SUBTITLE) + { duration = av_rescale_q(10, (AVRational){1,1}, track->st->time_base); + } + else if (track->type == MUX_TYPE_VIDEO) + { + duration = av_rescale_q( + (int64_t)job->vrate.den * 90000 / job->vrate.num, + (AVRational){1,90000}, track->st->time_base); + } else + { duration = 0; + } } av_init_packet(&pkt);