diff options
author | Max Kellermann <max@duempel.org> | 2008-11-20 21:08:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-20 21:08:16 +0100 |
commit | 61ba50a9bc8afd4ed71180ab99e218934db8a586 (patch) | |
tree | b0138ee0a761e044b9455d6af088a861c2803357 /src/decoder_thread.c | |
parent | 927bf45f8436e14b71936c0a22f10ce9ecc8dea6 (diff) | |
download | mpd-61ba50a9bc8afd4ed71180ab99e218934db8a586.tar.gz mpd-61ba50a9bc8afd4ed71180ab99e218934db8a586.tar.xz mpd-61ba50a9bc8afd4ed71180ab99e218934db8a586.zip |
decoder: ignore the SEEK command during startup
While waiting for the input stream to become ready, ignore all
commands except STOP. This fixes seeking errors with (remote) songs
which the decoder has already finished.
Diffstat (limited to 'src/decoder_thread.c')
-rw-r--r-- | src/decoder_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c index f8ed86047..ca8511c49 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -109,7 +109,7 @@ static void decoder_run(void) will be available then */ while (!input_stream.ready) { - if (dc.command != DECODE_COMMAND_NONE) { + if (dc.command == DECODE_COMMAND_STOP) { input_stream_close(&input_stream); dc.state = DECODE_STATE_STOP; return; |