[vlc-commits] commit: description: fix the way the input is stopped (Pierre Ynard )
git at videolan.org
git at videolan.org
Fri Oct 29 03:04:04 CEST 2010
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Fri Oct 29 03:02:55 2010 +0200| [151de06840b4da5a0680a6ca059b258b28420b0f] | committer: 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.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=151de06840b4da5a0680a6ca059b258b28420b0f
---
modules/stream_out/description.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/stream_out/description.c b/modules/stream_out/description.c
index e1ebd6c..6930642 100644
--- a/modules/stream_out/description.c
+++ b/modules/stream_out/description.c
@@ -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 );
}
}
More information about the vlc-commits
mailing list