diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2018-10-13 23:44:30 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2018-10-14 18:14:18 +0200 |
commit | 7b23dd0f41bcfba216eb0d3827c9376fd4a6af10 (patch) | |
tree | 44275a8dc29edd8c3b44990d9697f06369b3d90d | |
parent | 967604fecf042ff11474315538d3258c8f7b49b2 (diff) | |
download | ffmpeg-7b23dd0f41bcfba216eb0d3827c9376fd4a6af10.tar.gz |
avcodec/cuviddec: properly take deinterlacing and display delay into account for buffer_full check
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
-rw-r--r-- | libavcodec/cuviddec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/cuviddec.c b/libavcodec/cuviddec.c index 122c28f6e8..38623806fe 100644 --- a/libavcodec/cuviddec.c +++ b/libavcodec/cuviddec.c @@ -378,7 +378,11 @@ static int cuvid_is_buffer_full(AVCodecContext *avctx) { CuvidContext *ctx = avctx->priv_data; - return (av_fifo_size(ctx->frame_queue) / sizeof(CuvidParsedFrame)) + 2 > ctx->nb_surfaces; + int delay = ctx->cuparseinfo.ulMaxDisplayDelay; + if (ctx->deint_mode != cudaVideoDeinterlaceMode_Weave && !ctx->drop_second_field) + delay *= 2; + + return (av_fifo_size(ctx->frame_queue) / sizeof(CuvidParsedFrame)) + delay >= ctx->nb_surfaces; } static int cuvid_decode_packet(AVCodecContext *avctx, const AVPacket *avpkt) |