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.
This commit is contained in:
Max Kellermann
2009-01-29 21:42:10 +01:00
parent 36ca114629
commit caa4d28f04
8 changed files with 186 additions and 0 deletions
+6
View File
@@ -26,6 +26,12 @@
static const char *remoteUrlPrefixes[] = {
#ifdef HAVE_CURL
"http://",
#endif
#ifdef ENABLE_MMS
"mms://",
"mmsh://",
"mmst://",
"mmsu://",
#endif
NULL
};