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