Commit 51adaf2c authored by Max Kellermann's avatar Max Kellermann

decoder/*: move to decoder/plugins/

parent ea5b901b
...@@ -95,14 +95,14 @@ src_mpd_SOURCES = \ ...@@ -95,14 +95,14 @@ src_mpd_SOURCES = \
src/CommandLine.cxx src/CommandLine.hxx \ src/CommandLine.cxx src/CommandLine.hxx \
src/CrossFade.cxx src/CrossFade.hxx \ src/CrossFade.cxx src/CrossFade.hxx \
src/cue/CueParser.cxx src/cue/CueParser.hxx \ src/cue/CueParser.cxx src/cue/CueParser.hxx \
src/DecoderError.cxx src/DecoderError.hxx \ src/decoder/DecoderError.cxx src/decoder/DecoderError.hxx \
src/DecoderThread.cxx src/DecoderThread.hxx \ src/decoder/DecoderThread.cxx src/decoder/DecoderThread.hxx \
src/DecoderCommand.hxx \ src/decoder/DecoderCommand.hxx \
src/DecoderControl.cxx src/DecoderControl.hxx \ src/decoder/DecoderControl.cxx src/decoder/DecoderControl.hxx \
src/DecoderAPI.cxx src/DecoderAPI.hxx \ src/decoder/DecoderAPI.cxx src/decoder/DecoderAPI.hxx \
src/DecoderPlugin.hxx \ src/decoder/DecoderPlugin.hxx \
src/DecoderInternal.cxx src/DecoderInternal.hxx \ src/decoder/DecoderInternal.cxx src/decoder/DecoderInternal.hxx \
src/DecoderPrint.cxx src/DecoderPrint.hxx \ src/decoder/DecoderPrint.cxx src/decoder/DecoderPrint.hxx \
src/Directory.cxx src/Directory.hxx \ src/Directory.cxx src/Directory.hxx \
src/DirectorySave.cxx src/DirectorySave.hxx \ src/DirectorySave.cxx src/DirectorySave.hxx \
src/DatabaseSimple.hxx \ src/DatabaseSimple.hxx \
...@@ -534,17 +534,17 @@ endif ...@@ -534,17 +534,17 @@ endif
# decoder plugins # decoder plugins
libdecoder_plugins_a_SOURCES = \ libdecoder_plugins_a_SOURCES = \
src/decoder/PcmDecoderPlugin.cxx \ src/decoder/plugins/PcmDecoderPlugin.cxx \
src/decoder/PcmDecoderPlugin.hxx \ src/decoder/plugins/PcmDecoderPlugin.hxx \
src/decoder/DsdiffDecoderPlugin.cxx \ src/decoder/plugins/DsdiffDecoderPlugin.cxx \
src/decoder/DsdiffDecoderPlugin.hxx \ src/decoder/plugins/DsdiffDecoderPlugin.hxx \
src/decoder/DsfDecoderPlugin.cxx \ src/decoder/plugins/DsfDecoderPlugin.cxx \
src/decoder/DsfDecoderPlugin.hxx \ src/decoder/plugins/DsfDecoderPlugin.hxx \
src/decoder/DsdLib.cxx \ src/decoder/plugins/DsdLib.cxx \
src/decoder/DsdLib.hxx \ src/decoder/plugins/DsdLib.hxx \
src/DecoderBuffer.cxx src/DecoderBuffer.hxx \ src/decoder/DecoderBuffer.cxx src/decoder/DecoderBuffer.hxx \
src/DecoderPlugin.cxx \ src/decoder/DecoderPlugin.cxx \
src/DecoderList.cxx src/DecoderList.hxx src/decoder/DecoderList.cxx src/decoder/DecoderList.hxx
libdecoder_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \ libdecoder_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
$(VORBIS_CFLAGS) $(TREMOR_CFLAGS) \ $(VORBIS_CFLAGS) $(TREMOR_CFLAGS) \
$(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \ $(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \
...@@ -587,96 +587,96 @@ DECODER_SRC = ...@@ -587,96 +587,96 @@ DECODER_SRC =
if HAVE_MAD if HAVE_MAD
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/MadDecoderPlugin.cxx \ src/decoder/plugins/MadDecoderPlugin.cxx \
src/decoder/MadDecoderPlugin.hxx src/decoder/plugins/MadDecoderPlugin.hxx
endif endif
if HAVE_MPG123 if HAVE_MPG123
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/Mpg123DecoderPlugin.cxx \ src/decoder/plugins/Mpg123DecoderPlugin.cxx \
src/decoder/Mpg123DecoderPlugin.hxx src/decoder/plugins/Mpg123DecoderPlugin.hxx
endif endif
if HAVE_MPCDEC if HAVE_MPCDEC
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/MpcdecDecoderPlugin.cxx \ src/decoder/plugins/MpcdecDecoderPlugin.cxx \
src/decoder/MpcdecDecoderPlugin.hxx src/decoder/plugins/MpcdecDecoderPlugin.hxx
endif endif
if HAVE_OPUS if HAVE_OPUS
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/OggUtil.cxx \ src/decoder/plugins/OggUtil.cxx \
src/decoder/OggUtil.hxx \ src/decoder/plugins/OggUtil.hxx \
src/decoder/OggSyncState.hxx \ src/decoder/plugins/OggSyncState.hxx \
src/decoder/OggFind.cxx src/decoder/OggFind.hxx \ src/decoder/plugins/OggFind.cxx src/decoder/plugins/OggFind.hxx \
src/decoder/OpusDomain.cxx src/decoder/OpusDomain.hxx \ src/decoder/plugins/OpusDomain.cxx src/decoder/plugins/OpusDomain.hxx \
src/decoder/OpusReader.hxx \ src/decoder/plugins/OpusReader.hxx \
src/decoder/OpusHead.hxx \ src/decoder/plugins/OpusHead.hxx \
src/decoder/OpusHead.cxx \ src/decoder/plugins/OpusHead.cxx \
src/decoder/OpusTags.cxx \ src/decoder/plugins/OpusTags.cxx \
src/decoder/OpusTags.hxx \ src/decoder/plugins/OpusTags.hxx \
src/decoder/OpusDecoderPlugin.cxx \ src/decoder/plugins/OpusDecoderPlugin.cxx \
src/decoder/OpusDecoderPlugin.h src/decoder/plugins/OpusDecoderPlugin.h
endif endif
if HAVE_WAVPACK if HAVE_WAVPACK
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/WavpackDecoderPlugin.cxx \ src/decoder/plugins/WavpackDecoderPlugin.cxx \
src/decoder/WavpackDecoderPlugin.hxx src/decoder/plugins/WavpackDecoderPlugin.hxx
endif endif
if HAVE_ADPLUG if HAVE_ADPLUG
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/AdPlugDecoderPlugin.cxx \ src/decoder/plugins/AdPlugDecoderPlugin.cxx \
src/decoder/AdPlugDecoderPlugin.h src/decoder/plugins/AdPlugDecoderPlugin.h
endif endif
if HAVE_FAAD if HAVE_FAAD
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/FaadDecoderPlugin.cxx src/decoder/FaadDecoderPlugin.hxx src/decoder/plugins/FaadDecoderPlugin.cxx src/decoder/plugins/FaadDecoderPlugin.hxx
endif endif
if HAVE_XIPH if HAVE_XIPH
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/XiphTags.cxx src/decoder/XiphTags.hxx \ src/decoder/plugins/XiphTags.cxx src/decoder/plugins/XiphTags.hxx \
src/decoder/OggCodec.cxx src/decoder/OggCodec.hxx src/decoder/plugins/OggCodec.cxx src/decoder/plugins/OggCodec.hxx
endif endif
if ENABLE_VORBIS_DECODER if ENABLE_VORBIS_DECODER
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/VorbisDomain.cxx src/decoder/VorbisDomain.hxx \ src/decoder/plugins/VorbisDomain.cxx src/decoder/plugins/VorbisDomain.hxx \
src/decoder/VorbisComments.cxx src/decoder/VorbisComments.hxx \ src/decoder/plugins/VorbisComments.cxx src/decoder/plugins/VorbisComments.hxx \
src/decoder/VorbisDecoderPlugin.cxx src/decoder/VorbisDecoderPlugin.h src/decoder/plugins/VorbisDecoderPlugin.cxx src/decoder/plugins/VorbisDecoderPlugin.h
endif endif
if HAVE_FLAC if HAVE_FLAC
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/FlacInput.cxx src/decoder/FlacInput.hxx \ src/decoder/plugins/FlacInput.cxx src/decoder/plugins/FlacInput.hxx \
src/decoder/FlacIOHandle.cxx src/decoder/FlacIOHandle.hxx \ src/decoder/plugins/FlacIOHandle.cxx src/decoder/plugins/FlacIOHandle.hxx \
src/decoder/FlacMetadata.cxx src/decoder/FlacMetadata.hxx \ src/decoder/plugins/FlacMetadata.cxx src/decoder/plugins/FlacMetadata.hxx \
src/decoder/FlacPcm.cxx src/decoder/FlacPcm.hxx \ src/decoder/plugins/FlacPcm.cxx src/decoder/plugins/FlacPcm.hxx \
src/decoder/FlacDomain.cxx src/decoder/FlacDomain.hxx \ src/decoder/plugins/FlacDomain.cxx src/decoder/plugins/FlacDomain.hxx \
src/decoder/FlacCommon.cxx src/decoder/FlacCommon.hxx \ src/decoder/plugins/FlacCommon.cxx src/decoder/plugins/FlacCommon.hxx \
src/decoder/FlacDecoderPlugin.cxx \ src/decoder/plugins/FlacDecoderPlugin.cxx \
src/decoder/FlacDecoderPlugin.h src/decoder/plugins/FlacDecoderPlugin.h
endif endif
if HAVE_AUDIOFILE if HAVE_AUDIOFILE
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/AudiofileDecoderPlugin.cxx \ src/decoder/plugins/AudiofileDecoderPlugin.cxx \
src/decoder/AudiofileDecoderPlugin.hxx src/decoder/plugins/AudiofileDecoderPlugin.hxx
endif endif
if ENABLE_MIKMOD_DECODER if ENABLE_MIKMOD_DECODER
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/MikmodDecoderPlugin.cxx \ src/decoder/plugins/MikmodDecoderPlugin.cxx \
src/decoder/MikmodDecoderPlugin.hxx src/decoder/plugins/MikmodDecoderPlugin.hxx
endif endif
if HAVE_MODPLUG if HAVE_MODPLUG
libmodplug_decoder_plugin_a_SOURCES = \ libmodplug_decoder_plugin_a_SOURCES = \
src/decoder/ModplugDecoderPlugin.cxx \ src/decoder/plugins/ModplugDecoderPlugin.cxx \
src/decoder/ModplugDecoderPlugin.hxx src/decoder/plugins/ModplugDecoderPlugin.hxx
libmodplug_decoder_plugin_a_CXXFLAGS = $(AM_CXXFLAGS) $(MODPLUG_CFLAGS) libmodplug_decoder_plugin_a_CXXFLAGS = $(AM_CXXFLAGS) $(MODPLUG_CFLAGS)
libmodplug_decoder_plugin_a_CPPFLAGS = $(src_mpd_CPPFLAGS) libmodplug_decoder_plugin_a_CPPFLAGS = $(src_mpd_CPPFLAGS)
noinst_LIBRARIES += libmodplug_decoder_plugin.a noinst_LIBRARIES += libmodplug_decoder_plugin.a
...@@ -685,39 +685,39 @@ endif ...@@ -685,39 +685,39 @@ endif
if ENABLE_SIDPLAY if ENABLE_SIDPLAY
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/SidplayDecoderPlugin.cxx \ src/decoder/plugins/SidplayDecoderPlugin.cxx \
src/decoder/SidplayDecoderPlugin.hxx src/decoder/plugins/SidplayDecoderPlugin.hxx
endif endif
if ENABLE_FLUIDSYNTH if ENABLE_FLUIDSYNTH
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/FluidsynthDecoderPlugin.cxx \ src/decoder/plugins/FluidsynthDecoderPlugin.cxx \
src/decoder/FluidsynthDecoderPlugin.hxx src/decoder/plugins/FluidsynthDecoderPlugin.hxx
endif endif
if ENABLE_WILDMIDI if ENABLE_WILDMIDI
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/WildmidiDecoderPlugin.cxx \ src/decoder/plugins/WildmidiDecoderPlugin.cxx \
src/decoder/WildmidiDecoderPlugin.hxx src/decoder/plugins/WildmidiDecoderPlugin.hxx
endif endif
if HAVE_FFMPEG if HAVE_FFMPEG
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/FfmpegMetaData.cxx \ src/decoder/plugins/FfmpegMetaData.cxx \
src/decoder/FfmpegMetaData.hxx \ src/decoder/plugins/FfmpegMetaData.hxx \
src/decoder/FfmpegDecoderPlugin.cxx \ src/decoder/plugins/FfmpegDecoderPlugin.cxx \
src/decoder/FfmpegDecoderPlugin.hxx src/decoder/plugins/FfmpegDecoderPlugin.hxx
endif endif
if ENABLE_SNDFILE if ENABLE_SNDFILE
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/SndfileDecoderPlugin.cxx \ src/decoder/plugins/SndfileDecoderPlugin.cxx \
src/decoder/SndfileDecoderPlugin.hxx src/decoder/plugins/SndfileDecoderPlugin.hxx
endif endif
if HAVE_GME if HAVE_GME
libdecoder_plugins_a_SOURCES += \ libdecoder_plugins_a_SOURCES += \
src/decoder/GmeDecoderPlugin.cxx src/decoder/GmeDecoderPlugin.hxx src/decoder/plugins/GmeDecoderPlugin.cxx src/decoder/plugins/GmeDecoderPlugin.hxx
endif endif
# encoder plugins # encoder plugins
...@@ -1348,7 +1348,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \ ...@@ -1348,7 +1348,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \
if HAVE_FLAC if HAVE_FLAC
test_dump_playlist_SOURCES += \ test_dump_playlist_SOURCES += \
src/ReplayGainInfo.cxx \ src/ReplayGainInfo.cxx \
src/decoder/FlacMetadata.cxx src/decoder/plugins/FlacMetadata.cxx
endif endif
test_run_decoder_LDADD = \ test_run_decoder_LDADD = \
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
#include "ConfigGlobal.hxx" #include "ConfigGlobal.hxx"
#include "DatabaseRegistry.hxx" #include "DatabaseRegistry.hxx"
#include "DatabasePlugin.hxx" #include "DatabasePlugin.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "DecoderPlugin.hxx" #include "decoder/DecoderPlugin.hxx"
#include "output/OutputList.hxx" #include "output/OutputList.hxx"
#include "output/OutputPlugin.hxx" #include "output/OutputPlugin.hxx"
#include "InputRegistry.hxx" #include "InputRegistry.hxx"
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
#include "fs/StandardDirectory.hxx" #include "fs/StandardDirectory.hxx"
#include "playlist/PlaylistRegistry.hxx" #include "playlist/PlaylistRegistry.hxx"
#include "ZeroconfGlue.hxx" #include "ZeroconfGlue.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "AudioConfig.hxx" #include "AudioConfig.hxx"
#include "pcm/PcmConvert.hxx" #include "pcm/PcmConvert.hxx"
#include "Daemon.hxx" #include "Daemon.hxx"
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#include "config.h" #include "config.h"
#include "PlayerThread.hxx" #include "PlayerThread.hxx"
#include "DecoderThread.hxx" #include "decoder/DecoderThread.hxx"
#include "DecoderControl.hxx" #include "decoder/DecoderControl.hxx"
#include "MusicPipe.hxx" #include "MusicPipe.hxx"
#include "MusicBuffer.hxx" #include "MusicBuffer.hxx"
#include "MusicChunk.hxx" #include "MusicChunk.hxx"
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "fs/Traits.hxx" #include "fs/Traits.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "tag/TagBuilder.hxx" #include "tag/TagBuilder.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "util/UriUtil.hxx" #include "util/UriUtil.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "DecoderPlugin.hxx" #include "decoder/DecoderPlugin.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "thread/Cond.hxx" #include "thread/Cond.hxx"
......
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
#include "TagStream.hxx" #include "TagStream.hxx"
#include "util/UriUtil.hxx" #include "util/UriUtil.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "DecoderPlugin.hxx" #include "decoder/DecoderPlugin.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "thread/Cond.hxx" #include "thread/Cond.hxx"
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
#include "DatabaseLock.hxx" #include "DatabaseLock.hxx"
#include "Directory.hxx" #include "Directory.hxx"
#include "Song.hxx" #include "Song.hxx"
#include "DecoderPlugin.hxx" #include "decoder/DecoderPlugin.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "Mapper.hxx" #include "Mapper.hxx"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include "DatabaseLock.hxx" #include "DatabaseLock.hxx"
#include "Directory.hxx" #include "Directory.hxx"
#include "Song.hxx" #include "Song.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "Log.hxx" #include "Log.hxx"
#include <unistd.h> #include <unistd.h>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "TimePrint.hxx" #include "TimePrint.hxx"
#include "Mapper.hxx" #include "Mapper.hxx"
#include "DecoderPrint.hxx" #include "decoder/DecoderPrint.hxx"
#include "protocol/ArgParser.hxx" #include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx" #include "protocol/Result.hxx"
#include "ls.hxx" #include "ls.hxx"
......
...@@ -22,27 +22,27 @@ ...@@ -22,27 +22,27 @@
#include "DecoderPlugin.hxx" #include "DecoderPlugin.hxx"
#include "ConfigGlobal.hxx" #include "ConfigGlobal.hxx"
#include "ConfigData.hxx" #include "ConfigData.hxx"
#include "decoder/AudiofileDecoderPlugin.hxx" #include "plugins/AudiofileDecoderPlugin.hxx"
#include "decoder/PcmDecoderPlugin.hxx" #include "plugins/PcmDecoderPlugin.hxx"
#include "decoder/DsdiffDecoderPlugin.hxx" #include "plugins/DsdiffDecoderPlugin.hxx"
#include "decoder/DsfDecoderPlugin.hxx" #include "plugins/DsfDecoderPlugin.hxx"
#include "decoder/FlacDecoderPlugin.h" #include "plugins/FlacDecoderPlugin.h"
#include "decoder/OpusDecoderPlugin.h" #include "plugins/OpusDecoderPlugin.h"
#include "decoder/VorbisDecoderPlugin.h" #include "plugins/VorbisDecoderPlugin.h"
#include "decoder/AdPlugDecoderPlugin.h" #include "plugins/AdPlugDecoderPlugin.h"
#include "decoder/WavpackDecoderPlugin.hxx" #include "plugins/WavpackDecoderPlugin.hxx"
#include "decoder/FfmpegDecoderPlugin.hxx" #include "plugins/FfmpegDecoderPlugin.hxx"
#include "decoder/GmeDecoderPlugin.hxx" #include "plugins/GmeDecoderPlugin.hxx"
#include "decoder/FaadDecoderPlugin.hxx" #include "plugins/FaadDecoderPlugin.hxx"
#include "decoder/MadDecoderPlugin.hxx" #include "plugins/MadDecoderPlugin.hxx"
#include "decoder/SndfileDecoderPlugin.hxx" #include "plugins/SndfileDecoderPlugin.hxx"
#include "decoder/Mpg123DecoderPlugin.hxx" #include "plugins/Mpg123DecoderPlugin.hxx"
#include "decoder/WildmidiDecoderPlugin.hxx" #include "plugins/WildmidiDecoderPlugin.hxx"
#include "decoder/MikmodDecoderPlugin.hxx" #include "plugins/MikmodDecoderPlugin.hxx"
#include "decoder/ModplugDecoderPlugin.hxx" #include "plugins/ModplugDecoderPlugin.hxx"
#include "decoder/MpcdecDecoderPlugin.hxx" #include "plugins/MpcdecDecoderPlugin.hxx"
#include "decoder/FluidsynthDecoderPlugin.hxx" #include "plugins/FluidsynthDecoderPlugin.hxx"
#include "decoder/SidplayDecoderPlugin.hxx" #include "plugins/SidplayDecoderPlugin.hxx"
#include "system/FatalError.hxx" #include "system/FatalError.hxx"
#include "util/Macros.hxx" #include "util/Macros.hxx"
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "AdPlugDecoderPlugin.h" #include "AdPlugDecoderPlugin.h"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/Macros.hxx" #include "util/Macros.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "AudiofileDecoderPlugin.hxx" #include "AudiofileDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "config.h" #include "config.h"
#include "DsdLib.hxx" #include "DsdLib.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "tag/TagId3.hxx" #include "tag/TagId3.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "config.h" #include "config.h"
#include "DsdiffDecoderPlugin.hxx" #include "DsdiffDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "util/bit_reverse.h" #include "util/bit_reverse.h"
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "config.h" #include "config.h"
#include "DsfDecoderPlugin.hxx" #include "DsfDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "util/bit_reverse.h" #include "util/bit_reverse.h"
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#include "config.h" #include "config.h"
#include "FaadDecoderPlugin.hxx" #include "FaadDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "DecoderBuffer.hxx" #include "../DecoderBuffer.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "config.h" #include "config.h"
#include "FfmpegDecoderPlugin.hxx" #include "FfmpegDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "FfmpegMetaData.hxx" #include "FfmpegMetaData.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#define MPD_FLAC_COMMON_HXX #define MPD_FLAC_COMMON_HXX
#include "FlacInput.hxx" #include "FlacInput.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "pcm/PcmBuffer.hxx" #include "pcm/PcmBuffer.hxx"
#include <FLAC/stream_decoder.h> #include <FLAC/stream_decoder.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "FlacInput.hxx" #include "FlacInput.hxx"
#include "FlacDomain.hxx" #include "FlacDomain.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "Log.hxx" #include "Log.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "FluidsynthDecoderPlugin.hxx" #include "FluidsynthDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "GmeDecoderPlugin.hxx" #include "GmeDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "util/Alloc.hxx" #include "util/Alloc.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "MadDecoderPlugin.hxx" #include "MadDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "ConfigGlobal.hxx" #include "ConfigGlobal.hxx"
#include "tag/TagId3.hxx" #include "tag/TagId3.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "MikmodDecoderPlugin.hxx" #include "MikmodDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "system/FatalError.hxx" #include "system/FatalError.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "ModplugDecoderPlugin.hxx" #include "ModplugDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "system/FatalError.hxx" #include "system/FatalError.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "MpcdecDecoderPlugin.hxx" #include "MpcdecDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" /* must be first for large file support */ #include "config.h" /* must be first for large file support */
#include "Mpg123DecoderPlugin.hxx" #include "Mpg123DecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "config.h" #include "config.h"
#include "OggCodec.hxx" #include "OggCodec.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include <string.h> #include <string.h>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "OggUtil.hxx" #include "OggUtil.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
bool bool
OggFeed(ogg_sync_state &oy, Decoder *decoder, OggFeed(ogg_sync_state &oy, Decoder *decoder,
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "OpusTags.hxx" #include "OpusTags.hxx"
#include "OggFind.hxx" #include "OggFind.hxx"
#include "OggSyncState.hxx" #include "OggSyncState.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "OggCodec.hxx" #include "OggCodec.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "tag/TagBuilder.hxx" #include "tag/TagBuilder.hxx"
......
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
*/ */
#include "config.h" #include "config.h"
#include "decoder/PcmDecoderPlugin.hxx" #include "PcmDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/ByteReverse.hxx" #include "util/ByteReverse.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "SndfileDecoderPlugin.hxx" #include "SndfileDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "VorbisDecoderPlugin.h" #include "VorbisDecoderPlugin.h"
#include "VorbisComments.hxx" #include "VorbisComments.hxx"
#include "VorbisDomain.hxx" #include "VorbisDomain.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "OggCodec.hxx" #include "OggCodec.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "WavpackDecoderPlugin.hxx" #include "WavpackDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "CheckAudioFormat.hxx" #include "CheckAudioFormat.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "config.h" #include "config.h"
#include "WildmidiDecoderPlugin.hxx" #include "WildmidiDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
*/ */
#include "config.h" #include "config.h"
#include "DecoderAPI.hxx" #include "decoder/DecoderAPI.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "Compiler.h" #include "Compiler.h"
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "playlist/SongEnumerator.hxx" #include "playlist/SongEnumerator.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "ConfigGlobal.hxx" #include "ConfigGlobal.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "InputInit.hxx" #include "InputInit.hxx"
#include "IOThread.hxx" #include "IOThread.hxx"
#include "playlist/PlaylistRegistry.hxx" #include "playlist/PlaylistRegistry.hxx"
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#include "config.h" #include "config.h"
#include "IOThread.hxx" #include "IOThread.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "DecoderPlugin.hxx" #include "decoder/DecoderPlugin.hxx"
#include "InputInit.hxx" #include "InputInit.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#include "config.h" #include "config.h"
#include "IOThread.hxx" #include "IOThread.hxx"
#include "DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "DecoderAPI.hxx" #include "decoder/DecoderAPI.hxx"
#include "InputInit.hxx" #include "InputInit.hxx"
#include "InputStream.hxx" #include "InputStream.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.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