Commit 070668f1 authored by Ilkka Ollakka's avatar Ilkka Ollakka

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

parent 2c65709b
...@@ -939,7 +939,7 @@ static int Open ( vlc_object_t *p_this ) ...@@ -939,7 +939,7 @@ static int Open ( vlc_object_t *p_this )
p_sys->param.i_open_gop = X264_OPEN_GOP_BLURAY; p_sys->param.i_open_gop = X264_OPEN_GOP_BLURAY;
free( psz_val ); free( psz_val );
#elif X264_BUILD >= 115 #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" ); p_sys->param.b_bluray_compat = var_GetBool( p_enc, SOUT_CFG_PREFIX "bluray-compat" );
#endif #endif
i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "bframes" ); i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "bframes" );
......
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