diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:07 +0200 |
commit | c60209ff04e51a1ea95b489d411469712e776d3a (patch) | |
tree | 960e19f11d41e207716dcf46c17159dead885b20 /src/inputPlugins | |
parent | dc4d774481e6d80e126cbde5e93f43641f6e345a (diff) | |
download | mpd-c60209ff04e51a1ea95b489d411469712e776d3a.tar.gz mpd-c60209ff04e51a1ea95b489d411469712e776d3a.tar.xz mpd-c60209ff04e51a1ea95b489d411469712e776d3a.zip |
don't set dc->seekable in wavpack plugin
dc->seekable is already set by decodeStart().
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/wavpack_plugin.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/inputPlugins/wavpack_plugin.c b/src/inputPlugins/wavpack_plugin.c index 59a482034..6816da83d 100644 --- a/src/inputPlugins/wavpack_plugin.c +++ b/src/inputPlugins/wavpack_plugin.c @@ -164,8 +164,6 @@ static void wavpack_decode(struct decoder * decoder, samplesreq = sizeof(chunk) / (4 * audio_format.channels); - dc.seekable = canseek; - decoder_initialized(decoder, &audio_format, (float)allsamples / audio_format.sampleRate); |