From 959f9880efdefe32ad2df8a7daf75e304eb04573 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Thu, 10 Mar 2005 10:47:06 +0000 Subject: todo update, and remove a potentially gratutious playSilence() call git-svn-id: https://svn.musicpd.org/mpd/trunk@3051 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/decode.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/decode.c b/src/decode.c index 83d0936c9..0ffa9f87e 100644 --- a/src/decode.c +++ b/src/decode.c @@ -497,7 +497,10 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { { processDecodeInput(); if(quit) return; - playSilenceOrSleep(); + /*playSilenceOrSleep();*/ + /* instead we want to pause audio and play silence for + * devices that don't support pausing */ + my_usleep(1000); } while(!quit) { @@ -652,6 +655,8 @@ void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb) { break; } else { + /* instead we want to pause audio and play silence for + * devices that don't support pausing */ if(playAudio(silence, CHUNK_SIZE) < 0) quit = 1; } } -- cgit v1.2.3