[vlc-devel] commit: Open : fix typo. (Sabourin Gilles )

git version control git at videolan.org
Sun Oct 11 11:03:25 CEST 2009


vlc | branch: master | Sabourin Gilles <gilles.sabourin at free.fr> | Sun Oct 11 10:34:47 2009 +0200| [93f7584b7a427d75f236589801fb1c2bebcd1c88] | committer: Rémi Duraffort 

Open : fix typo.

Signed-off-by: Rémi Duraffort <ivoire at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=93f7584b7a427d75f236589801fb1c2bebcd1c88
---

 modules/codec/x264.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index 211dc6a..a0215f1 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;




More information about the vlc-devel mailing list