Commit debdf9bb authored by Max Kellermann's avatar Max Kellermann

decoder/{Thread,Control,...}: rename source files, drop prefix

parent 218d9383
...@@ -101,10 +101,10 @@ libmpd_a_SOURCES = \ ...@@ -101,10 +101,10 @@ libmpd_a_SOURCES = \
src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx \ src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx \
src/Idle.cxx src/Idle.hxx \ src/Idle.cxx src/Idle.hxx \
src/IdleFlags.cxx src/IdleFlags.hxx \ src/IdleFlags.cxx src/IdleFlags.hxx \
src/decoder/DecoderError.cxx src/decoder/DecoderError.hxx \ src/decoder/Domain.cxx src/decoder/Domain.hxx \
src/decoder/DecoderThread.cxx \ src/decoder/Thread.cxx \
src/decoder/DecoderCommand.hxx \ src/decoder/Command.hxx \
src/decoder/DecoderControl.cxx src/decoder/DecoderControl.hxx \ src/decoder/Control.cxx src/decoder/Control.hxx \
src/decoder/Client.hxx \ src/decoder/Client.hxx \
src/decoder/DecoderPlugin.hxx \ src/decoder/DecoderPlugin.hxx \
src/decoder/Bridge.cxx src/decoder/Bridge.hxx \ src/decoder/Bridge.cxx src/decoder/Bridge.hxx \
......
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
#include "config.h" #include "config.h"
#include "Bridge.hxx" #include "Bridge.hxx"
#include "DecoderAPI.hxx" #include "DecoderAPI.hxx"
#include "DecoderError.hxx" #include "Domain.hxx"
#include "DecoderControl.hxx" #include "Control.hxx"
#include "song/DetachedSong.hxx" #include "song/DetachedSong.hxx"
#include "pcm/PcmConvert.hxx" #include "pcm/PcmConvert.hxx"
#include "MusicPipe.hxx" #include "MusicPipe.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_DECODER_CLIENT_HXX #define MPD_DECODER_CLIENT_HXX
#include "check.h" #include "check.h"
#include "DecoderCommand.hxx" #include "Command.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "input/Ptr.hxx" #include "input/Ptr.hxx"
#include "util/Compiler.h" #include "util/Compiler.h"
......
...@@ -18,8 +18,7 @@ ...@@ -18,8 +18,7 @@
*/ */
#include "config.h" #include "config.h"
#include "DecoderControl.hxx" #include "Control.hxx"
#include "DecoderError.hxx"
#include "MusicPipe.hxx" #include "MusicPipe.hxx"
#include "song/DetachedSong.hxx" #include "song/DetachedSong.hxx"
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_CONTROL_HXX #ifndef MPD_DECODER_CONTROL_HXX
#define MPD_DECODER_CONTROL_HXX #define MPD_DECODER_CONTROL_HXX
#include "DecoderCommand.hxx" #include "Command.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "MixRampInfo.hxx" #include "MixRampInfo.hxx"
#include "input/Handler.hxx" #include "input/Handler.hxx"
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "check.h" #include "check.h"
#include "Client.hxx" #include "Client.hxx"
#include "input/Ptr.hxx" #include "input/Ptr.hxx"
#include "DecoderCommand.hxx" #include "Command.hxx"
#include "DecoderPlugin.hxx" #include "DecoderPlugin.hxx"
#include "ReplayGainInfo.hxx" #include "ReplayGainInfo.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "DecoderError.hxx" #include "Domain.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
const Domain decoder_domain("decoder"); const Domain decoder_domain("decoder");
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef MPD_DECODER_ERROR_HXX #ifndef MPD_DECODER_DOMAIN_HXX
#define MPD_DECODER_ERROR_HXX #define MPD_DECODER_DOMAIN_HXX
extern const class Domain decoder_domain; extern const class Domain decoder_domain;
......
...@@ -18,9 +18,8 @@ ...@@ -18,9 +18,8 @@
*/ */
#include "config.h" #include "config.h"
#include "DecoderControl.hxx" #include "Control.hxx"
#include "Bridge.hxx" #include "Bridge.hxx"
#include "DecoderError.hxx"
#include "DecoderPlugin.hxx" #include "DecoderPlugin.hxx"
#include "song/DetachedSong.hxx" #include "song/DetachedSong.hxx"
#include "MusicPipe.hxx" #include "MusicPipe.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "Thread.hxx" #include "Thread.hxx"
#include "Outputs.hxx" #include "Outputs.hxx"
#include "Listener.hxx" #include "Listener.hxx"
#include "decoder/DecoderControl.hxx" #include "decoder/Control.hxx"
#include "MusicPipe.hxx" #include "MusicPipe.hxx"
#include "MusicBuffer.hxx" #include "MusicBuffer.hxx"
#include "MusicChunk.hxx" #include "MusicChunk.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