Commit c11372f8 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.
(cherry picked from commit 151de06840b4da5a0680a6ca059b258b28420b0f)
Signed-off-by: default avatarPierre Ynard <linkfanel@yahoo.fr>
parent 4e5c16e3
......@@ -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