From caa4d28f044d70012cd113f324e6500c0b57d491 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 29 Jan 2009 21:42:10 +0100 Subject: added support for the MMS protocol This patch implements the MMS protocol, by using libmms. It is quite experimental: it does not support seeking yet, and it is currently using synchronous I/O, which causes MPD to hang while waiting for the server. --- src/input_stream.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/input_stream.c') diff --git a/src/input_stream.c b/src/input_stream.c index f69debbf9..234511e7f 100644 --- a/src/input_stream.c +++ b/src/input_stream.c @@ -29,6 +29,10 @@ #include "input_curl.h" #endif +#ifdef ENABLE_MMS +#include "input_mms.h" +#endif + #include #include @@ -40,6 +44,9 @@ static const struct input_plugin *const input_plugins[] = { #ifdef HAVE_CURL &input_plugin_curl, #endif +#ifdef ENABLE_MMS + &input_plugin_mms, +#endif }; static const unsigned num_input_plugins = -- cgit v1.2.3