From 5b26d3b789bd19a32dbe1e9c7ccab9498de7ee9b Mon Sep 17 00:00:00 2001 From: Ruta Gadkari Date: Mon, 19 Dec 2016 16:44:04 +0530 Subject: [PATCH] nvenc: Update check for lookahead By default it is -1. Signed-off-by: Luca Barbato --- libavcodec/nvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index d5bfd74e30..4054e43eec 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -623,7 +623,7 @@ static void nvenc_setup_rate_control(AVCodecContext *avctx) av_log(avctx, AV_LOG_VERBOSE, "Temporal AQ enabled.\n"); } - if (ctx->rc_lookahead) { + if (ctx->rc_lookahead > 0) { int lkd_bound = FFMIN(ctx->nb_surfaces, ctx->async_depth) - ctx->config.frameIntervalP - 4;