From 439e1d196b26847dd0bfebf143918dd04552bd04 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 5 Nov 2011 23:21:31 +0100 Subject: [PATCH] libvpxenc: Fix "Additional information: g_lag_in_frames out of range [..25]" Signed-off-by: Michael Niedermayer --- libavcodec/libvpxenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 1a922837e1..bb43c01460 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -239,7 +239,8 @@ static av_cold int vp8_init(AVCodecContext *avctx) enccfg.g_timebase.den = avctx->time_base.den; enccfg.g_threads = avctx->thread_count; #if FF_API_X264_GLOBAL_OPTS - enccfg.g_lag_in_frames= FFMIN(avctx->rc_lookahead, 25); //0-25, avoids init failure + if(avctx->rc_lookahead >= 0) + enccfg.g_lag_in_frames= FFMIN(avctx->rc_lookahead, 25); //0-25, avoids init failure if (ctx->lag_in_frames >= 0) enccfg.g_lag_in_frames = ctx->lag_in_frames; #else