From 8d3942e0c3b4108e8968e914da75bf7c6c43f408 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Aug 2008 08:27:04 +0200 Subject: merged start, stop, seek into DecoderControl.command Much of the existing code queries all three variables sequentially. Since only one of them can be set at a time, this can be optimized and unified by merging all of them into one enum variable. Later, the "command" checks can be expressed in a "switch" statement. --- src/outputBuffer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/outputBuffer.c') 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(); } } -- cgit v1.2.3