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

This commit is contained in:
Max Kellermann 2018-09-21 16:56:53 +02:00
parent 218d9383d7
commit debdf9bb96
11 changed files with 15 additions and 17 deletions

View File

@ -101,10 +101,10 @@ libmpd_a_SOURCES = \
src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx \
src/Idle.cxx src/Idle.hxx \
src/IdleFlags.cxx src/IdleFlags.hxx \
src/decoder/DecoderError.cxx src/decoder/DecoderError.hxx \
src/decoder/DecoderThread.cxx \
src/decoder/DecoderCommand.hxx \
src/decoder/DecoderControl.cxx src/decoder/DecoderControl.hxx \
src/decoder/Domain.cxx src/decoder/Domain.hxx \
src/decoder/Thread.cxx \
src/decoder/Command.hxx \
src/decoder/Control.cxx src/decoder/Control.hxx \
src/decoder/Client.hxx \
src/decoder/DecoderPlugin.hxx \
src/decoder/Bridge.cxx src/decoder/Bridge.hxx \

View File

@ -20,8 +20,8 @@
#include "config.h"
#include "Bridge.hxx"
#include "DecoderAPI.hxx"
#include "DecoderError.hxx"
#include "DecoderControl.hxx"
#include "Domain.hxx"
#include "Control.hxx"
#include "song/DetachedSong.hxx"
#include "pcm/PcmConvert.hxx"
#include "MusicPipe.hxx"

View File

@ -21,7 +21,7 @@
#define MPD_DECODER_CLIENT_HXX
#include "check.h"
#include "DecoderCommand.hxx"
#include "Command.hxx"
#include "Chrono.hxx"
#include "input/Ptr.hxx"
#include "util/Compiler.h"

View File

@ -18,8 +18,7 @@
*/
#include "config.h"
#include "DecoderControl.hxx"
#include "DecoderError.hxx"
#include "Control.hxx"
#include "MusicPipe.hxx"
#include "song/DetachedSong.hxx"

View File

@ -20,7 +20,7 @@
#ifndef MPD_DECODER_CONTROL_HXX
#define MPD_DECODER_CONTROL_HXX
#include "DecoderCommand.hxx"
#include "Command.hxx"
#include "AudioFormat.hxx"
#include "MixRampInfo.hxx"
#include "input/Handler.hxx"

View File

@ -32,7 +32,7 @@
#include "check.h"
#include "Client.hxx"
#include "input/Ptr.hxx"
#include "DecoderCommand.hxx"
#include "Command.hxx"
#include "DecoderPlugin.hxx"
#include "ReplayGainInfo.hxx"
#include "tag/Tag.hxx"

View File

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "DecoderError.hxx"
#include "Domain.hxx"
#include "util/Domain.hxx"
const Domain decoder_domain("decoder");

View File

@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_DECODER_ERROR_HXX
#define MPD_DECODER_ERROR_HXX
#ifndef MPD_DECODER_DOMAIN_HXX
#define MPD_DECODER_DOMAIN_HXX
extern const class Domain decoder_domain;

View File

@ -18,9 +18,8 @@
*/
#include "config.h"
#include "DecoderControl.hxx"
#include "Control.hxx"
#include "Bridge.hxx"
#include "DecoderError.hxx"
#include "DecoderPlugin.hxx"
#include "song/DetachedSong.hxx"
#include "MusicPipe.hxx"

View File

@ -21,7 +21,7 @@
#include "Thread.hxx"
#include "Outputs.hxx"
#include "Listener.hxx"
#include "decoder/DecoderControl.hxx"
#include "decoder/Control.hxx"
#include "MusicPipe.hxx"
#include "MusicBuffer.hxx"
#include "MusicChunk.hxx"