nvenc: Update check for lookahead

By default it is -1.

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
pull/202/merge
Ruta Gadkari 8 years ago committed by Luca Barbato
parent a0c443a398
commit 5b26d3b789
  1. 2
      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;

Loading…
Cancel
Save