input/rewind: move sources out of the "plugins" directory
This is not a plugin.
This commit is contained in:
parent
197968d65e
commit
01d8eb6290
|
@ -1389,7 +1389,7 @@ libinput_a_SOURCES = \
|
|||
src/input/ThreadInputStream.cxx src/input/ThreadInputStream.hxx \
|
||||
src/input/AsyncInputStream.cxx src/input/AsyncInputStream.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
|
||||
|
||||
libinput_a_CPPFLAGS = $(AM_CPPFLAGS) \
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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>
|
|
@ -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);
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "input/plugins/RewindInputPlugin.hxx"
|
||||
#include "input/RewindInputStream.hxx"
|
||||
#include "input/InputStream.hxx"
|
||||
#include "thread/Mutex.hxx"
|
||||
#include "thread/Cond.hxx"
|
||||
|
|
Loading…
Reference in New Issue