Commit 0e5207a8 authored by Laurent Aimar's avatar Laurent Aimar

Compilation fix when using --disable-sout.

parent 28c6dc6e
...@@ -412,7 +412,9 @@ int input_EsOutSetRecord( es_out_t *out, bool b_record ) ...@@ -412,7 +412,9 @@ int input_EsOutSetRecord( es_out_t *out, bool b_record )
if( !psz_sout ) if( !psz_sout )
return VLC_EGENERIC; return VLC_EGENERIC;
#ifdef ENABLE_SOUT
p_sys->p_sout_record = sout_NewInstance( p_input, psz_sout ); p_sys->p_sout_record = sout_NewInstance( p_input, psz_sout );
#endif
free( psz_sout ); free( psz_sout );
if( !p_sys->p_sout_record ) if( !p_sys->p_sout_record )
...@@ -440,7 +442,9 @@ int input_EsOutSetRecord( es_out_t *out, bool b_record ) ...@@ -440,7 +442,9 @@ int input_EsOutSetRecord( es_out_t *out, bool b_record )
input_DecoderDelete( p_es->p_dec_record ); input_DecoderDelete( p_es->p_dec_record );
p_es->p_dec_record = NULL; p_es->p_dec_record = NULL;
} }
#ifdef ENABLE_SOUT
sout_DeleteInstance( p_sys->p_sout_record ); sout_DeleteInstance( p_sys->p_sout_record );
#endif
p_sys->p_sout_record = NULL; p_sys->p_sout_record = NULL;
} }
......
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