diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-09 00:13:42 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-09 00:13:42 +0000 |
commit | b7315f839161d940e0e9ae1363d1e74b15e73d72 (patch) | |
tree | b959573c824f036997988a7fd6c17f46d8eb87ed /src/audioOutput.c | |
parent | 9b03731c869ad4ca7c19cda3558d3a47855743da (diff) | |
download | mpd-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.c | 2 |
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; } |