diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-10-28 11:19:51 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-10-28 11:19:51 +0000 |
commit | 316cb8a157dd55fda5e43fc6884e7bed5d334597 (patch) | |
tree | d1cd4155cbe8970669970da70ccb3ea28f110655 /src/xine-engine/demux.c | |
parent | 14ef73ac5771672f9b6a53d05e1d7abf722fd1b1 (diff) | |
download | xine-lib-316cb8a157dd55fda5e43fc6884e7bed5d334597.tar.gz xine-lib-316cb8a157dd55fda5e43fc6884e7bed5d334597.tar.bz2 |
do not flush on xine_handle_stream_end
CVS patchset: 3064
CVS date: 2002/10/28 11:19:51
Diffstat (limited to 'src/xine-engine/demux.c')
-rw-r--r-- | src/xine-engine/demux.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/xine-engine/demux.c b/src/xine-engine/demux.c index 1fb4dac2c..7ccfaa8b4 100644 --- a/src/xine-engine/demux.c +++ b/src/xine-engine/demux.c @@ -226,7 +226,7 @@ int xine_demux_stop_thread (xine_stream_t *stream) { pthread_mutex_unlock( &stream->demux_lock ); #ifdef LOG - printf ("demux: joining thread %d\n", stream->demux_thread ); + printf ("demux: joining thread %ld\n", stream->demux_thread ); #endif /* FIXME: counter_lock isn't meant to protect demux_thread update. @@ -240,7 +240,5 @@ int xine_demux_stop_thread (xine_stream_t *stream) { pthread_mutex_unlock (&stream->counter_lock); - xine_demux_flush_engine(stream); - return 0; } |