Commit 50f98e2a authored by Ilkka Ollakka's avatar Ilkka Ollakka

avcodec: cosmetic, fix indenting

parent 5a867c6d
......@@ -782,13 +782,11 @@ int OpenEncoder( vlc_object_t *p_this )
p_context->mb_lmax = p_context->lmax = 42 * FF_QP2LAMBDA;
}
} else {
if( !var_GetInteger( p_enc, ENC_CFG_PREFIX "qmin" ) )
} else if( !var_GetInteger( p_enc, ENC_CFG_PREFIX "qmin" ) )
{
p_context->qmin = 1;
p_context->mb_lmin = p_context->lmin = FF_QP2LAMBDA;
}
}
#if 0 /* enable when/if vp8 encoder is accepted in libavcodec */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment