diff options
author | Max Kellermann <max@duempel.org> | 2009-01-04 15:02:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-04 15:02:39 +0100 |
commit | 63181233bb2a28ccd3776d48aa2229df920c2ed3 (patch) | |
tree | 5f9d029f9b41978f76f3be647248685fe79457c0 /NEWS | |
parent | 16c224a7fa542eba121203512ef7f2b953f8e7f1 (diff) | |
download | mpd-63181233bb2a28ccd3776d48aa2229df920c2ed3.tar.gz mpd-63181233bb2a28ccd3776d48aa2229df920c2ed3.tar.xz mpd-63181233bb2a28ccd3776d48aa2229df920c2ed3.zip |
player_thread: fix cross-fading duplicate chunk bug
When the decoder of the new song is not fast enough, the player thread
has to wait for it for a moment. However the variable "nextChunk" was
reset to -1 during that, making the next loop iteration assume that
cross-fading has not begun yet. This patch overwrites it with "0"
while waiting.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -8,6 +8,7 @@ MPD 0.14.1 - not yet released * fix setenv() conflict on Solaris * configure.ac: check for pkg-config before using it * fix minor memory leak in decoder_tag() +* fix cross-fading bug: it used to play some chunks of the new song twice ver 0.14 (2008/12/25) |