Commit 1ff101c5 authored by Max Kellermann's avatar Max Kellermann

input/lastfm: removed obsolete last.fm input plugin

This has been replaced by the last.fm playlist plugin. The input plugin has never worked well, and was just a playground to experiment with the last.fm radio protocol.
parent a93ffdd1
...@@ -86,7 +86,6 @@ mpd_headers = \ ...@@ -86,7 +86,6 @@ mpd_headers = \
src/input_stream.h \ src/input_stream.h \
src/input/file_input_plugin.h \ src/input/file_input_plugin.h \
src/input/curl_input_plugin.h \ src/input/curl_input_plugin.h \
src/input/lastfm_input_plugin.h \
src/input/mms_input_plugin.h \ src/input/mms_input_plugin.h \
src/text_input_stream.h \ src/text_input_stream.h \
src/icy_server.h \ src/icy_server.h \
...@@ -540,10 +539,6 @@ if ENABLE_CURL ...@@ -540,10 +539,6 @@ if ENABLE_CURL
INPUT_SRC += src/input/curl_input_plugin.c src/icy_metadata.c INPUT_SRC += src/input/curl_input_plugin.c src/icy_metadata.c
endif endif
if ENABLE_LASTFM
INPUT_SRC += src/input/lastfm_input_plugin.c
endif
if ENABLE_MMS if ENABLE_MMS
INPUT_SRC += src/input/mms_input_plugin.c INPUT_SRC += src/input/mms_input_plugin.c
endif endif
......
...@@ -9,7 +9,7 @@ ver 0.16 (20??/??/??) ...@@ -9,7 +9,7 @@ ver 0.16 (20??/??/??)
- "addid" with negative position is deprecated - "addid" with negative position is deprecated
- "load" supports remote playlists (m3u, xspf, lastfm://) - "load" supports remote playlists (m3u, xspf, lastfm://)
* input: * input:
- lastfm: use metadata - lastfm: obsolete plugin removed
* tags: * tags:
- added tags "ArtistSort", "AlbumArtistSort" - added tags "ArtistSort", "AlbumArtistSort"
- id3: revised "performer" tag support - id3: revised "performer" tag support
......
/*
* Copyright (C) 2003-2009 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef LASTFM_INPUT_PLUGIN_H
#define LASTFM_INPUT_PLUGIN_H
extern const struct input_plugin lastfm_input_plugin;
#endif
...@@ -31,8 +31,6 @@ ...@@ -31,8 +31,6 @@
#include "input/curl_input_plugin.h" #include "input/curl_input_plugin.h"
#endif #endif
#include "input/lastfm_input_plugin.h"
#ifdef ENABLE_MMS #ifdef ENABLE_MMS
#include "input/mms_input_plugin.h" #include "input/mms_input_plugin.h"
#endif #endif
...@@ -49,9 +47,6 @@ static const struct input_plugin *const input_plugins[] = { ...@@ -49,9 +47,6 @@ static const struct input_plugin *const input_plugins[] = {
#ifdef ENABLE_CURL #ifdef ENABLE_CURL
&input_plugin_curl, &input_plugin_curl,
#endif #endif
#ifdef ENABLE_LASTFM
&lastfm_input_plugin,
#endif
#ifdef ENABLE_MMS #ifdef ENABLE_MMS
&input_plugin_mms, &input_plugin_mms,
#endif #endif
......
...@@ -35,9 +35,6 @@ static const char *remoteUrlPrefixes[] = { ...@@ -35,9 +35,6 @@ static const char *remoteUrlPrefixes[] = {
#ifdef ENABLE_CURL #ifdef ENABLE_CURL
"http://", "http://",
#endif #endif
#ifdef ENABLE_LASTFM
"lastfm://",
#endif
#ifdef ENABLE_MMS #ifdef ENABLE_MMS
"mms://", "mms://",
"mmsh://", "mmsh://",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment