Commit b7155d34 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

VCDX: interface creation is commented out so comment out destruction

parent 0d92017b
...@@ -121,6 +121,7 @@ void VCDEnd ( vlc_object_t *p_this ) ...@@ -121,6 +121,7 @@ void VCDEnd ( vlc_object_t *p_this )
{ {
input_thread_t *p_input = (input_thread_t *)p_this; input_thread_t *p_input = (input_thread_t *)p_this;
vcd_data_t * p_vcd = p_input->p_demux_data->p_vcd; vcd_data_t * p_vcd = p_input->p_demux_data->p_vcd;
#if FIXED
intf_thread_t * p_intf = NULL; intf_thread_t * p_intf = NULL;
p_intf = vlc_object_find( p_input, VLC_OBJECT_INTF, FIND_CHILD ); p_intf = vlc_object_find( p_input, VLC_OBJECT_INTF, FIND_CHILD );
...@@ -133,7 +134,7 @@ void VCDEnd ( vlc_object_t *p_this ) ...@@ -133,7 +134,7 @@ void VCDEnd ( vlc_object_t *p_this )
} }
p_vcd->p_intf = NULL; p_vcd->p_intf = NULL;
#endif
module_unneed( p_input, p_input->p_demux_data->p_module ); module_unneed( p_input, p_input->p_demux_data->p_module );
free( p_input->p_demux_data ); free( p_input->p_demux_data );
} }
......
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