Commit 151de068 authored by Pierre Ynard's avatar Pierre Ynard

description: fix the way the input is stopped

Yes, this still works fine as long as it's used in that one place in
the VLM.
parent c80222d4
......@@ -149,7 +149,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT, FIND_PARENT );
if( p_input )
{
p_input->b_eof = true;
input_Stop( p_input, true );
vlc_object_release( p_input );
}
}
......
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