aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--src/decoder_thread.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9ece8b56..311667f5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
ver 0.15.5 (2009/??/??)
* input:
- curl: don't abort if a packet has only metadata
+* decoder_thread: change the fallback decoder name to "mad"
ver 0.15.4 (2009/10/03)
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index 2b1a6299..d6ff058e 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -169,7 +169,7 @@ static void decoder_run_song(const struct song *song, const char *uri)
if (plugin == NULL) {
/* we already know our mp3Plugin supports streams, no
* need to check for stream{Types,DecodeFunc} */
- if ((plugin = decoder_plugin_from_name("mp3"))) {
+ if ((plugin = decoder_plugin_from_name("mad"))) {
ret = decoder_stream_decode(plugin, &decoder,
&input_stream);
}