From 96e9b442255365f73a8efcbaeb118ff56dfd8318 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 2 Feb 2009 18:02:52 +0100 Subject: player_thread: set player error when output device fails When the output device fails to play a chunk, set pc.error to PLAYER_ERROR_AUDIO. This way, the playlist knows that it should not queue the next song. --- src/player_thread.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/player_thread.c b/src/player_thread.c index 50e097a24..06a5ff3bb 100644 --- a/src/player_thread.c +++ b/src/player_thread.c @@ -251,8 +251,11 @@ play_chunk(struct song *song, struct music_chunk *chunk, pcm_volume(chunk->data, chunk->length, format, pc.software_volume); - if (!playAudio(chunk->data, chunk->length)) + if (!playAudio(chunk->data, chunk->length)) { + pc.errored_song = dc.current_song; + pc.error = PLAYER_ERROR_AUDIO; return -1; + } pc.total_play_time += sizeToTime * chunk->length; return 0; -- cgit v1.2.3