aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutput.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-11-09 00:13:42 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-11-09 00:13:42 +0000
commitb7315f839161d940e0e9ae1363d1e74b15e73d72 (patch)
treeb959573c824f036997988a7fd6c17f46d8eb87ed /src/audioOutput.c
parent9b03731c869ad4ca7c19cda3558d3a47855743da (diff)
downloadmpd-b7315f839161d940e0e9ae1363d1e74b15e73d72.tar.gz
mpd-b7315f839161d940e0e9ae1363d1e74b15e73d72.tar.xz
mpd-b7315f839161d940e0e9ae1363d1e74b15e73d72.zip
add a buffer to audio layer, so we only send data to audio devices 32 times per second
git-svn-id: https://svn.musicpd.org/mpd/trunk@2553 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/audioOutput.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/audioOutput.c b/src/audioOutput.c
index b355ad2fa..7c3b8dbb4 100644
--- a/src/audioOutput.c
+++ b/src/audioOutput.c
@@ -160,9 +160,7 @@ int playAudioOutput(AudioOutput * audioOutput, char * playChunk, int size) {
}
- blockSignals();
ret = audioOutput->playFunc(audioOutput, playChunk, size);
- unblockSignals();
return ret;
}