From 93f7584b7a427d75f236589801fb1c2bebcd1c88 Mon Sep 17 00:00:00 2001 From: Sabourin Gilles Date: Sun, 11 Oct 2009 10:34:47 +0200 Subject: [PATCH] Open : fix typo. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Duraffort --- modules/codec/x264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/codec/x264.c b/modules/codec/x264.c index 211dc6af7f..a0215f158d 100644 --- a/modules/codec/x264.c +++ b/modules/codec/x264.c @@ -797,7 +797,7 @@ static int Open ( vlc_object_t *p_this ) p_sys->param.b_aud = true; i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "keyint" ); - if(( i_val > 0 ) p_sys->param.i_keyint_max = i_val; + if( i_val > 0 ) p_sys->param.i_keyint_max = i_val; i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "min-keyint" ); if( i_val > 0 ) p_sys->param.i_keyint_min = i_val; -- 2.39.5