diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-02-08 14:19:24 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-02-08 14:19:24 +0000 |
commit | d50b6542e330db416b50aa717aa67e2a0b564d58 (patch) | |
tree | b30835945063b1f6130d6dd4383f6ecc5522571f /src | |
parent | f4b5e62eb102b684ea206112d09cfcbc05e1e91e (diff) | |
download | xine-lib-d50b6542e330db416b50aa717aa67e2a0b564d58.tar.gz xine-lib-d50b6542e330db416b50aa717aa67e2a0b564d58.tar.bz2 |
Remove a break which causes some front ends to hang. (cset ce60f8b5995a)
(If this causes xine-lib to hang on certain broken streams, we have a problem.)
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/demux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/demux.c b/src/xine-engine/demux.c index 4d6bc6c1c..cfb13831e 100644 --- a/src/xine-engine/demux.c +++ b/src/xine-engine/demux.c @@ -377,7 +377,7 @@ static void *demux_loop (void *stream_gen) { pthread_cond_wait (&stream->counter_changed, &stream->counter_lock); if (demux_unstick_ao_loop (stream)) - break; + /* break amarok */; } pthread_mutex_unlock (&stream->counter_lock); |