Module: libav Branch: master Commit: 5b26d3b789bd19a32dbe1e9c7ccab9498de7ee9b
Author: Ruta Gadkari <[email protected]> Committer: Luca Barbato <[email protected]> Date: Mon Dec 19 17:02:04 2016 +0530 nvenc: Update check for lookahead By default it is -1. Signed-off-by: Luca Barbato <[email protected]> --- libavcodec/nvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index d5bfd74..4054e43 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
