diff options
author | Max Kellermann <max@duempel.org> | 2009-02-11 19:58:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-11 19:58:50 +0100 |
commit | b6b181ca874f99d47151f4947c9a62bc851bdd68 (patch) | |
tree | 191d755cccedfaecd0cc618a7c7dc8dc007bc27e /src/decoder_thread.c | |
parent | 550b9c3f2350a8ea6f6921ae4bff4c92d2dc386c (diff) | |
download | mpd-b6b181ca874f99d47151f4947c9a62bc851bdd68.tar.gz mpd-b6b181ca874f99d47151f4947c9a62bc851bdd68.tar.xz mpd-b6b181ca874f99d47151f4947c9a62bc851bdd68.zip |
decoder_thread: re-enable file decoders
By accident, I committed a debug flag, which disallowed the decoder
thread to play files locally. Undo this hunk.
Diffstat (limited to 'src/decoder_thread.c')
-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 b7939111a..97555f44d 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) || true) { + if (!song_is_file(song)) { unsigned int next = 0; /* first we try mime types: */ |