aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/rewind_input_plugin.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-01-04 21:42:11 +0100
committerMax Kellermann <max@duempel.org>2010-01-04 21:45:32 +0100
commit2f8135ef8bb4723e040571e38699300f21334127 (patch)
tree9fdaded4ca3c6fa9e03af04d04cd2e81f729ea58 /src/input/rewind_input_plugin.h
parent9b9abff97272b52f133ff23addd58b6a90a49a73 (diff)
downloadmpd-2f8135ef8bb4723e040571e38699300f21334127.tar.gz
mpd-2f8135ef8bb4723e040571e38699300f21334127.tar.xz
mpd-2f8135ef8bb4723e040571e38699300f21334127.zip
input/rewind: enable the "rewind" wrapper for all non-seekable streams
Don't limit the "rewind" input plugin to CURL streams.
Diffstat (limited to '')
-rw-r--r--src/input/rewind_input_plugin.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/input/rewind_input_plugin.h b/src/input/rewind_input_plugin.h
index 27ad169b6..23d25d94d 100644
--- a/src/input/rewind_input_plugin.h
+++ b/src/input/rewind_input_plugin.h
@@ -31,19 +31,7 @@
struct input_stream;
-#ifdef ENABLE_CURL
-
struct input_stream *
input_rewind_open(struct input_stream *is);
-#else
-
-static inline struct input_stream *
-input_rewind_open(struct input_stream *is)
-{
- return is;
-}
-
-#endif
-
#endif