diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-22 16:23:58 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-22 16:23:58 +0000 |
commit | 68b54f1e156c3189455e8fd156cf9b65e0f09ba8 (patch) | |
tree | b08c0bc82e4f01dd35aa7578cee1aff43a8a1bfa /src/xine-engine/demux.c | |
parent | fddec809f8689124e559ac0db775cac766946d46 (diff) | |
download | xine-lib-68b54f1e156c3189455e8fd156cf9b65e0f09ba8.tar.gz xine-lib-68b54f1e156c3189455e8fd156cf9b65e0f09ba8.tar.bz2 |
do not play with the clock any more, we have dedicated flush functions for that now
(This should fix Daniels MP3 problems, since the end of one stream would
have adjusted the global clock thus affecting all other streams.)
CVS patchset: 3334
CVS date: 2002/11/22 16:23:58
Diffstat (limited to 'src/xine-engine/demux.c')
-rw-r--r-- | src/xine-engine/demux.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/xine-engine/demux.c b/src/xine-engine/demux.c index 54edcbe97..027743ed2 100644 --- a/src/xine-engine/demux.c +++ b/src/xine-engine/demux.c @@ -65,9 +65,6 @@ void xine_demux_flush_engine (xine_stream_t *stream) { if (stream->audio_out) { stream->audio_out->flush(stream->audio_out); } - - stream->xine->clock->adjust_clock(stream->xine->clock, - stream->xine->clock->get_current_time(stream->xine->clock) + 30 * 90000 ); } |