Commit e4bbb16b authored by Rémi Duraffort's avatar Rémi Duraffort

Quit correctly x264 codec when x264 failed.

parent 27d84188
......@@ -803,6 +803,7 @@ static int Open ( vlc_object_t *p_this )
return VLC_ENOMEM;
p_sys->i_interpolated_dts = 0;
p_sys->psz_stat_name = NULL;
p_sys->p_buffer = NULL;
x264_param_default( &p_sys->param );
p_sys->param.i_width = p_enc->fmt_in.video.i_width;
......@@ -1307,6 +1308,7 @@ static int Open ( vlc_object_t *p_this )
if( p_sys->h == NULL )
{
msg_Err( p_enc, "cannot open x264 encoder" );
Close( VLC_OBJECT(p_enc) );
return VLC_EGENERIC;
}
......@@ -1446,7 +1448,8 @@ static void Close( vlc_object_t *p_this )
free( p_sys->psz_stat_name );
x264_encoder_close( p_sys->h );
if( p_sys->h )
x264_encoder_close( p_sys->h );
#ifdef PTW32_STATIC_LIB
vlc_value_t lock, count;
......
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