diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-19 03:23:31 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-19 03:23:31 +0000 |
commit | c1cd2668b24aba8bb3d83554b800a0b16f57002b (patch) | |
tree | 5ab81918572102150e194b7352450576d75efd14 /src/decode.c | |
parent | ec3a9b66fe42d0bf029cd1e6073a6d9e94f5e397 (diff) | |
download | mpd-c1cd2668b24aba8bb3d83554b800a0b16f57002b.tar.gz mpd-c1cd2668b24aba8bb3d83554b800a0b16f57002b.tar.xz mpd-c1cd2668b24aba8bb3d83554b800a0b16f57002b.zip |
bug fixy poo s/1/0/
and mark in decoderControl if we are seekable
git-svn-id: https://svn.musicpd.org/mpd/trunk@1078 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.c')
-rw-r--r-- | src/decode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decode.c b/src/decode.c index f77a9b999..69037d007 100644 --- a/src/decode.c +++ b/src/decode.c @@ -114,7 +114,7 @@ int calculateCrossFadeChunks(PlayerControl * pc, AudioFormat * af) { #define handleDecodeStart() \ if(decodeWaitedOn && dc->state==DECODE_STATE_DECODE) { \ - decodeWaitedOn = 1; \ + decodeWaitedOn = 0; \ if(openAudioDevice(&(cb->audioFormat))<0) { \ strncpy(pc->erroredFile,pc->file,MAXPATHLEN); \ pc->erroredFile[MAXPATHLEN] = '\0'; \ @@ -127,7 +127,7 @@ int calculateCrossFadeChunks(PlayerControl * pc, AudioFormat * af) { pc->bits = dc->audioFormat.bits; \ pc->channels = dc->audioFormat.channels; \ } \ - else { \ + else if(decodeWaitedOn) { \ my_usleep(10); \ continue; \ } |