Commit 693cfd62 authored by Ilkka Ollakka's avatar Ilkka Ollakka

x264: forgotten free() spotted by ivoire

parent 50f13451
......@@ -919,6 +919,7 @@ static int Open ( vlc_object_t *p_this )
p_sys->param.i_open_gop = X264_OPEN_GOP_NORMAL;
else if( !strcmp( psz_val, "bluray" ) )
p_sys->param.i_open_gop = X264_OPEN_GOP_BLURAY;
free( psz_val );
#endif
i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "bframes" );
if( i_val >= 0 && i_val <= 16 && i_val != 3 )
......
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