diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 17:02:00 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 17:02:00 +0100 |
commit | 3f6fcfd38ebe115d1ba77a7e5b3c1c757b806814 (patch) | |
tree | aeb1590a45dc000b7c6a283c46b11072c6fe77e3 /src/decoder/aac_plugin.c | |
parent | c9e15bc418d4a27305b39ccc63e631ac5e329c8b (diff) | |
download | mpd-3f6fcfd38ebe115d1ba77a7e5b3c1c757b806814.tar.gz mpd-3f6fcfd38ebe115d1ba77a7e5b3c1c757b806814.tar.xz mpd-3f6fcfd38ebe115d1ba77a7e5b3c1c757b806814.zip |
aac, mod: don't check for SEEK command
Since the aac and mod plugins have told MPD that they cannot seek, MPD
will never send a SEEK command to them. Removed the SEEK comand
checks from both plugins.
Diffstat (limited to 'src/decoder/aac_plugin.c')
-rw-r--r-- | src/decoder/aac_plugin.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c index 66c2d11be..e7054b879 100644 --- a/src/decoder/aac_plugin.c +++ b/src/decoder/aac_plugin.c @@ -414,9 +414,7 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream) decoder_data(mpd_decoder, NULL, sampleBuffer, sampleBufferLen, file_time, bitRate, NULL); - if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) { - decoder_seek_error(mpd_decoder); - } else if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP) + if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP) break; } @@ -427,10 +425,6 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *inStream) if (!initialized) return false; - if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) { - decoder_seek_error(mpd_decoder); - } - return true; } @@ -550,9 +544,7 @@ aac_decode(struct decoder *mpd_decoder, const char *path) decoder_data(mpd_decoder, NULL, sampleBuffer, sampleBufferLen, file_time, bitRate, NULL); - if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) { - decoder_seek_error(mpd_decoder); - } else if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP) + if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_STOP) break; } @@ -563,10 +555,6 @@ aac_decode(struct decoder *mpd_decoder, const char *path) if (!initialized) return false; - if (decoder_get_command(mpd_decoder) == DECODE_COMMAND_SEEK) { - decoder_seek_error(mpd_decoder); - } - return true; } |