aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/decode.c5
-rw-r--r--src/inputPlugin.h4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/decode.c b/src/decode.c
index b361b62f3..d403c5e25 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -304,6 +304,11 @@ void decodeStart(PlayerControl * pc, OutputBuffer * cb, DecoderControl * dc) {
plugin = getInputPluginFromSuffix(
getSuffix(dc->utf8url));
}
+ /* this is needed for bastard streams that don't have a suffix
+ or set the mimeType */
+ if(plugin == NULL) {
+ plugin = getInputPluginFromName("mp3");
+ }
if(plugin && (plugin->streamTypes & INPUT_PLUGIN_STREAM_URL) &&
plugin->streamDecodeFunc)
{
diff --git a/src/inputPlugin.h b/src/inputPlugin.h
index 940789744..0968bae8b 100644
--- a/src/inputPlugin.h
+++ b/src/inputPlugin.h
@@ -47,10 +47,6 @@ InputPlugin * getInputPluginFromMimeType(char * mimeType);
InputPlugin * getInputPluginFromName(char * name);
-/* this is needed b/c shoutcast and such don't indicate the proper mime type
- and don't have a suffix in the url! */
-InputPlugin * getDefaultInputPlugin();
-
/* this is where we "load" all the "plugins" ;-) */
void initInputPlugins();