aboutsummaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-09-03 10:54:29 +0200
committerMax Kellermann <max@duempel.org>2013-09-03 10:54:29 +0200
commitbbd711556476d5ef3510678a5e525974821803b2 (patch)
treef505525dd4d394542bc5f776c9b0226e9e069193 /src/input
parent8d36367fe2e593363ff941183da8804671fe9e3e (diff)
downloadmpd-bbd711556476d5ef3510678a5e525974821803b2.tar.gz
mpd-bbd711556476d5ef3510678a5e525974821803b2.tar.xz
mpd-bbd711556476d5ef3510678a5e525974821803b2.zip
input/{mms,despotify}: remove "seek" implementation
Omitting it has the same effect as returning false unconditionally.
Diffstat (limited to 'src/input')
-rw-r--r--src/input/DespotifyInputPlugin.cxx12
-rw-r--r--src/input/MmsInputPlugin.cxx10
2 files changed, 3 insertions, 19 deletions
diff --git a/src/input/DespotifyInputPlugin.cxx b/src/input/DespotifyInputPlugin.cxx
index 501a2a5da..30ecceed7 100644
--- a/src/input/DespotifyInputPlugin.cxx
+++ b/src/input/DespotifyInputPlugin.cxx
@@ -207,14 +207,6 @@ input_despotify_eof(struct input_stream *is)
return ctx->eof;
}
-static bool
-input_despotify_seek(gcc_unused struct input_stream *is,
- gcc_unused goffset offset, gcc_unused int whence,
- gcc_unused GError **error_r)
-{
- return false;
-}
-
static Tag *
input_despotify_tag(struct input_stream *is)
{
@@ -234,9 +226,9 @@ const struct input_plugin input_plugin_despotify = {
input_despotify_close,
nullptr,
nullptr,
- .tag = input_despotify_tag,
+ input_despotify_tag,
nullptr,
input_despotify_read,
input_despotify_eof,
- input_despotify_seek,
+ nullptr,
};
diff --git a/src/input/MmsInputPlugin.cxx b/src/input/MmsInputPlugin.cxx
index 678c52f91..80d479613 100644
--- a/src/input/MmsInputPlugin.cxx
+++ b/src/input/MmsInputPlugin.cxx
@@ -123,14 +123,6 @@ input_mms_eof(struct input_stream *is)
return m->eof;
}
-static bool
-input_mms_seek(gcc_unused struct input_stream *is,
- gcc_unused goffset offset, gcc_unused int whence,
- gcc_unused GError **error_r)
-{
- return false;
-}
-
const struct input_plugin input_plugin_mms = {
"mms",
nullptr,
@@ -143,5 +135,5 @@ const struct input_plugin input_plugin_mms = {
nullptr,
input_mms_read,
input_mms_eof,
- input_mms_seek,
+ nullptr,
};