diff options
Diffstat (limited to '')
-rw-r--r-- | src/outputBuffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/outputBuffer.c b/src/outputBuffer.c index b0cfc00df..3b280e3a7 100644 --- a/src/outputBuffer.c +++ b/src/outputBuffer.c @@ -171,15 +171,15 @@ static int tailChunk(InputStream * inStream, /* all chunks are full of decoded data; wait for the player to free one */ - if (dc.stop) + if (dc.command == DECODE_COMMAND_STOP) return OUTPUT_BUFFER_DC_STOP; - if (dc.seek) { + if (dc.command == DECODE_COMMAND_SEEK) { if (seekable) { return OUTPUT_BUFFER_DC_SEEK; } else { dc.seekError = 1; - dc.seek = 0; + dc.command = DECODE_COMMAND_NONE; decoder_wakeup_player(); } } |