Commit 01d8eb62 authored by Max Kellermann's avatar Max Kellermann

input/rewind: move sources out of the "plugins" directory

This is not a plugin.
parent 197968d6
...@@ -1389,7 +1389,7 @@ libinput_a_SOURCES = \ ...@@ -1389,7 +1389,7 @@ libinput_a_SOURCES = \
src/input/ThreadInputStream.cxx src/input/ThreadInputStream.hxx \ src/input/ThreadInputStream.cxx src/input/ThreadInputStream.hxx \
src/input/AsyncInputStream.cxx src/input/AsyncInputStream.hxx \ src/input/AsyncInputStream.cxx src/input/AsyncInputStream.hxx \
src/input/ProxyInputStream.cxx src/input/ProxyInputStream.hxx \ src/input/ProxyInputStream.cxx src/input/ProxyInputStream.hxx \
src/input/plugins/RewindInputPlugin.cxx src/input/plugins/RewindInputPlugin.hxx \ src/input/RewindInputStream.cxx src/input/RewindInputStream.hxx \
src/input/plugins/FileInputPlugin.cxx src/input/plugins/FileInputPlugin.hxx src/input/plugins/FileInputPlugin.cxx src/input/plugins/FileInputPlugin.hxx
libinput_a_CPPFLAGS = $(AM_CPPFLAGS) \ libinput_a_CPPFLAGS = $(AM_CPPFLAGS) \
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Registry.hxx" #include "Registry.hxx"
#include "InputPlugin.hxx" #include "InputPlugin.hxx"
#include "LocalOpen.hxx" #include "LocalOpen.hxx"
#include "plugins/RewindInputPlugin.hxx" #include "RewindInputStream.hxx"
#include "fs/Traits.hxx" #include "fs/Traits.hxx"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
......
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
*/ */
#include "config.h" #include "config.h"
#include "RewindInputPlugin.hxx" #include "RewindInputStream.hxx"
#include "../ProxyInputStream.hxx" #include "ProxyInputStream.hxx"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
......
...@@ -24,11 +24,11 @@ ...@@ -24,11 +24,11 @@
* each decoder plugin peek a portion from the stream). * each decoder plugin peek a portion from the stream).
*/ */
#ifndef MPD_INPUT_REWIND_HXX #ifndef MPD_REWIND_INPUT_STREAM_HXX
#define MPD_INPUT_REWIND_HXX #define MPD_REWIND_INPUT_STREAM_HXX
#include "check.h" #include "check.h"
#include "input/Ptr.hxx" #include "Ptr.hxx"
InputStreamPtr InputStreamPtr
input_rewind_open(InputStreamPtr is); input_rewind_open(InputStreamPtr is);
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
*/ */
#include "config.h" #include "config.h"
#include "input/plugins/RewindInputPlugin.hxx" #include "input/RewindInputStream.hxx"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "thread/Cond.hxx" #include "thread/Cond.hxx"
......
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