From 93061bc90cfaea22fff160e27532a44f3aab1fbd Mon Sep 17 00:00:00 2001 From: Timo Rothenpieler Date: Sat, 9 Jan 2021 16:34:59 +0100 Subject: [PATCH] avcodec/nvenc: fix timestamp offset ticks logic --- libavcodec/nvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index e269c716a4..03fdd70029 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -1829,7 +1829,7 @@ static int nvenc_set_timestamp(AVCodecContext *avctx, pkt->pts = params->outputTimeStamp; pkt->dts = timestamp_queue_dequeue(ctx->timestamp_list); - pkt->dts -= FFMAX(avctx->max_b_frames, 0) * FFMIN(avctx->ticks_per_frame, 1); + pkt->dts -= FFMAX(avctx->max_b_frames, 0) * FFMAX(avctx->ticks_per_frame, 1); return 0; }