diff options
author | Max Kellermann <max@musicpd.org> | 2018-06-22 19:31:06 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-06-22 19:31:06 +0200 |
commit | 01d8eb629072e4d5d02345868f4233177c99d70a (patch) | |
tree | e0207bc7d88f997c9c0c06cda608445d634fa142 /src/input | |
parent | 197968d65e5b212c9d1712a498b1c92e7985f2e3 (diff) |
input/rewind: move sources out of the "plugins" directory
This is not a plugin.
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/Open.cxx | 2 | ||||
-rw-r--r-- | src/input/RewindInputStream.cxx (renamed from src/input/plugins/RewindInputPlugin.cxx) | 4 | ||||
-rw-r--r-- | src/input/RewindInputStream.hxx (renamed from src/input/plugins/RewindInputPlugin.hxx) | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/input/Open.cxx b/src/input/Open.cxx index 177f575ed..9c136b064 100644 --- a/src/input/Open.cxx +++ b/src/input/Open.cxx @@ -22,7 +22,7 @@ #include "Registry.hxx" #include "InputPlugin.hxx" #include "LocalOpen.hxx" -#include "plugins/RewindInputPlugin.hxx" +#include "RewindInputStream.hxx" #include "fs/Traits.hxx" #include "fs/AllocatedPath.hxx" diff --git a/src/input/plugins/RewindInputPlugin.cxx b/src/input/RewindInputStream.cxx index 2bce86236..d91638fd8 100644 --- a/src/input/plugins/RewindInputPlugin.cxx +++ b/src/input/RewindInputStream.cxx @@ -18,8 +18,8 @@ */ #include "config.h" -#include "RewindInputPlugin.hxx" -#include "../ProxyInputStream.hxx" +#include "RewindInputStream.hxx" +#include "ProxyInputStream.hxx" #include <assert.h> #include <string.h> diff --git a/src/input/plugins/RewindInputPlugin.hxx b/src/input/RewindInputStream.hxx index 5c425292c..327a440da 100644 --- a/src/input/plugins/RewindInputPlugin.hxx +++ b/src/input/RewindInputStream.hxx @@ -24,11 +24,11 @@ * each decoder plugin peek a portion from the stream). */ -#ifndef MPD_INPUT_REWIND_HXX -#define MPD_INPUT_REWIND_HXX +#ifndef MPD_REWIND_INPUT_STREAM_HXX +#define MPD_REWIND_INPUT_STREAM_HXX #include "check.h" -#include "input/Ptr.hxx" +#include "Ptr.hxx" InputStreamPtr input_rewind_open(InputStreamPtr is); |