diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-21 22:31:07 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-21 22:31:07 +0000 |
commit | 547e358796b9d82041b94f18f9ddcb972b8f1e7e (patch) | |
tree | a9a49eb760ebf7d3f77f2dffac74902996574b95 /src/audiofile_decode.c | |
parent | aea1ae9b9ec6d2e8d00d11ee59047a8e71afe123 (diff) | |
download | mpd-547e358796b9d82041b94f18f9ddcb972b8f1e7e.tar.gz mpd-547e358796b9d82041b94f18f9ddcb972b8f1e7e.tar.xz mpd-547e358796b9d82041b94f18f9ddcb972b8f1e7e.zip |
do input buffering in while sleeping loop of sending stuff to output buffer
git-svn-id: https://svn.musicpd.org/mpd/trunk@1125 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audiofile_decode.c')
-rw-r--r-- | src/audiofile_decode.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/audiofile_decode.c b/src/audiofile_decode.c index b4a224d19..c62fb816d 100644 --- a/src/audiofile_decode.c +++ b/src/audiofile_decode.c @@ -109,7 +109,11 @@ int audiofile_decode(OutputBuffer * cb, DecoderControl * dc) { if(ret<=0) eof = 1; else { current += ret; - sendDataToOutputBuffer(cb,dc,chunk,ret*fs, + sendDataToOutputBuffer(cb, + NULL, + dc, + chunk, + ret*fs, (float)current / (float)dc->audioFormat.sampleRate, bitRate); |