[vlc-commits] x264: fix open-gop -> opengop, thanks for TypX for nagging

Ilkka Ollakka git at videolan.org
Wed Apr 13 11:28:46 CEST 2011


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Wed Apr 13 12:27:30 2011 +0300| [070668f110e37772a6907a7b798d9eb7f2d5c69f] | committer: Ilkka Ollakka

x264: fix open-gop -> opengop, thanks for TypX for nagging

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

 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 7d7559a..68d3dca 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -939,7 +939,7 @@ static int  Open ( vlc_object_t *p_this )
         p_sys->param.i_open_gop = X264_OPEN_GOP_BLURAY;
     free( psz_val );
 #elif X264_BUILD >= 115
-    p_sys->param.b_open_gop = var_GetBool( p_enc, SOUT_CFG_PREFIX "open-gop" );
+    p_sys->param.b_open_gop = var_GetBool( p_enc, SOUT_CFG_PREFIX "opengop" );
     p_sys->param.b_bluray_compat = var_GetBool( p_enc, SOUT_CFG_PREFIX "bluray-compat" );
 #endif
     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "bframes" );



More information about the vlc-commits mailing list