diff options
author | Max Kellermann <max@duempel.org> | 2009-01-30 00:53:32 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-30 00:53:32 +0100 |
commit | 82cfce76eb5787f1a24151f6a3840a999ed82659 (patch) | |
tree | 05c8ee19ff9bd9cc69e6f50c1aeeacc77efbde44 /src/decoder_thread.c | |
parent | dc1cc7e7e52960cceea5514397ec33f7ffc0dd6d (diff) | |
download | mpd-82cfce76eb5787f1a24151f6a3840a999ed82659.tar.gz mpd-82cfce76eb5787f1a24151f6a3840a999ed82659.tar.xz mpd-82cfce76eb5787f1a24151f6a3840a999ed82659.zip |
archive: replaced setup_stream() with open_stream()
The open_stream() method opens the input_stream. This allows the
archive plugin to do its own initialization, and it also allows it to
use input_stream.data. We can remove input_stream.archive now, which
was unnatural to have in the first place.
Diffstat (limited to '')
-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 97555f44d..b7939111a 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -127,7 +127,7 @@ static void decoder_run_song(const struct song *song, const char *uri) pcm_convert_init(&decoder.conv_state); ret = false; - if (!song_is_file(song)) { + if (!song_is_file(song) || true) { unsigned int next = 0; /* first we try mime types: */ |