summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2019-01-16 10:25:47 -0800
committerJohn Stebbins <[email protected]>2019-01-16 10:28:24 -0800
commite194585b1802b3d618e53ef1c8cd72cd237633b4 (patch)
tree86d24b4e6354735150d7b63851d7740f51584463
parent85097ab557e426198ae55e028bc608ff7b33512d (diff)
muxavformat: use better approximation for duration of last video frame
Fixes https://github.com/HandBrake/HandBrake/issues/1802 (cherry picked from commit 71e73fec08f414574c74dd0b482c516faad2fbfb)
-rw-r--r--libhb/muxavformat.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c
index 806620b69..c1d401fc3 100644
--- a/libhb/muxavformat.c
+++ b/libhb/muxavformat.c
@@ -1229,10 +1229,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);