From 02a7f81f74280114c783f75903109e96c1b60173 Mon Sep 17 00:00:00 2001 From: Ilkka Ollakka Date: Sat, 5 Jun 2010 13:43:27 +0300 Subject: [PATCH] avcodec: fix typo --- modules/codec/avcodec/encoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/codec/avcodec/encoder.c b/modules/codec/avcodec/encoder.c index b3e48b9fce..841ab1671e 100644 --- a/modules/codec/avcodec/encoder.c +++ b/modules/codec/avcodec/encoder.c @@ -608,13 +608,13 @@ int OpenEncoder( vlc_object_t *p_this ) /* Check that we don't overrun users qmin/qmax values */ if( !var_GetInteger( p_enc, ENC_CFG_PREFIX "qmin" ) ) { - p_context->mb_qmin = p_context->qmin = 10 * FF_QP2LAMBDA; + p_context->mb_qmin = p_context->qmin = 10; p_context->mb_lmin = p_context->lmin = 10 * FF_QP2LAMBDA; } if( !var_GetInteger( p_enc, ENC_CFG_PREFIX "qmax" ) ) { - p_context->mb_qmax = p_context->qmax = 42 * FF_QP2LAMBDA; + p_context->mb_qmax = p_context->qmax = 42; p_context->mb_lmax = p_context->lmax = 42 * FF_QP2LAMBDA; } -- 2.39.5