]> git.sesse.net Git - vlc/commitdiff
Open : fix typo.
authorSabourin Gilles <gilles.sabourin@free.fr>
Sun, 11 Oct 2009 08:34:47 +0000 (10:34 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Sun, 11 Oct 2009 09:03:11 +0000 (11:03 +0200)
Signed-off-by: Rémi Duraffort <ivoire@videolan.org>
modules/codec/x264.c

index 211dc6af7fd3ede1784d06b673c71738db33dee5..a0215f158d413651563eb4089836651d47888658 100644 (file)
@@ -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;