ReplayGainInfo: move to tag/

This commit is contained in:
Max Kellermann 2021-12-06 09:24:12 +01:00
parent 866e7ff3ce
commit 2240327286
19 changed files with 18 additions and 18 deletions

View File

@ -463,7 +463,6 @@ endif
basic = static_library( basic = static_library(
'basic', 'basic',
'src/ReplayGainInfo.cxx',
'src/ReplayGainMode.cxx', 'src/ReplayGainMode.cxx',
'src/SingleMode.cxx', 'src/SingleMode.cxx',
include_directories: inc, include_directories: inc,

View File

@ -22,7 +22,7 @@
#include "MusicChunkPtr.hxx" #include "MusicChunkPtr.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "util/WritableBuffer.hxx" #include "util/WritableBuffer.hxx"
#ifndef NDEBUG #ifndef NDEBUG

View File

@ -21,7 +21,7 @@
#define MPD_DECODER_BRIDGE_HXX #define MPD_DECODER_BRIDGE_HXX
#include "Client.hxx" #include "Client.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "MusicChunkPtr.hxx" #include "MusicChunkPtr.hxx"
#include <exception> #include <exception>

View File

@ -33,7 +33,7 @@
#include "input/Ptr.hxx" #include "input/Ptr.hxx"
#include "Command.hxx" #include "Command.hxx"
#include "DecoderPlugin.hxx" #include "DecoderPlugin.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "tag/MixRampInfo.hxx" #include "tag/MixRampInfo.hxx"
#include "pcm/AudioFormat.hxx" #include "pcm/AudioFormat.hxx"

View File

@ -37,7 +37,7 @@
#include "pcm/Interleave.hxx" #include "pcm/Interleave.hxx"
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "tag/Handler.hxx" #include "tag/Handler.hxx"
#include "tag/ReplayGain.hxx" #include "tag/ReplayGainParser.hxx"
#include "tag/MixRampParser.hxx" #include "tag/MixRampParser.hxx"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"
#include "pcm/CheckAudioFormat.hxx" #include "pcm/CheckAudioFormat.hxx"

View File

@ -25,7 +25,7 @@
#include "tag/Id3ReplayGain.hxx" #include "tag/Id3ReplayGain.hxx"
#include "tag/Id3MixRamp.hxx" #include "tag/Id3MixRamp.hxx"
#include "tag/Handler.hxx" #include "tag/Handler.hxx"
#include "tag/ReplayGain.hxx" #include "tag/ReplayGainParser.hxx"
#include "tag/MixRampParser.hxx" #include "tag/MixRampParser.hxx"
#include "pcm/CheckAudioFormat.hxx" #include "pcm/CheckAudioFormat.hxx"
#include "util/Clamp.hxx" #include "util/Clamp.hxx"

View File

@ -22,7 +22,7 @@
#include "pcm/CheckAudioFormat.hxx" #include "pcm/CheckAudioFormat.hxx"
#include "tag/Handler.hxx" #include "tag/Handler.hxx"
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "tag/ReplayGain.hxx" #include "tag/ReplayGainParser.hxx"
#include "tag/MixRampParser.hxx" #include "tag/MixRampParser.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"

View File

@ -24,7 +24,7 @@
#include "tag/Handler.hxx" #include "tag/Handler.hxx"
#include "tag/ParseName.hxx" #include "tag/ParseName.hxx"
#include "util/ASCII.hxx" #include "util/ASCII.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "util/NumberParser.hxx" #include "util/NumberParser.hxx"
#include "util/StringView.hxx" #include "util/StringView.hxx"

View File

@ -20,7 +20,7 @@
#include "ReplayGainFilterPlugin.hxx" #include "ReplayGainFilterPlugin.hxx"
#include "filter/Filter.hxx" #include "filter/Filter.hxx"
#include "filter/Prepared.hxx" #include "filter/Prepared.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "config/ReplayGainConfig.hxx" #include "config/ReplayGainConfig.hxx"
#include "mixer/MixerControl.hxx" #include "mixer/MixerControl.hxx"
#include "pcm/AudioFormat.hxx" #include "pcm/AudioFormat.hxx"

View File

@ -24,10 +24,10 @@
#include "tag/Handler.hxx" #include "tag/Handler.hxx"
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "tag/ReplayGain.hxx"
#include "tag/MixRampInfo.hxx" #include "tag/MixRampInfo.hxx"
#include "tag/MixRampParser.hxx" #include "tag/MixRampParser.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "tag/ReplayGainParser.hxx"
#include "util/StringView.hxx" #include "util/StringView.hxx"
#include <cassert> #include <cassert>

View File

@ -24,8 +24,8 @@
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "tag/VorbisComment.hxx" #include "tag/VorbisComment.hxx"
#include "tag/ReplayGain.hxx" #include "tag/ReplayGainInfo.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainParser.hxx"
#include "util/StringView.hxx" #include "util/StringView.hxx"
#include "decoder/Features.h" #include "decoder/Features.h"

View File

@ -19,7 +19,7 @@
#include "ApeReplayGain.hxx" #include "ApeReplayGain.hxx"
#include "ApeLoader.hxx" #include "ApeLoader.hxx"
#include "ReplayGain.hxx" #include "ReplayGainParser.hxx"
#include "util/StringView.hxx" #include "util/StringView.hxx"
#include <string.h> #include <string.h>

View File

@ -19,7 +19,7 @@
#include "Id3ReplayGain.hxx" #include "Id3ReplayGain.hxx"
#include "Rva2.hxx" #include "Rva2.hxx"
#include "ReplayGain.hxx" #include "ReplayGainParser.hxx"
#include "ReplayGainInfo.hxx" #include "ReplayGainInfo.hxx"
#include <id3tag.h> #include <id3tag.h>

View File

@ -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 "ReplayGain.hxx" #include "ReplayGainParser.hxx"
#include "VorbisComment.hxx" #include "VorbisComment.hxx"
#include "ReplayGainInfo.hxx" #include "ReplayGainInfo.hxx"
#include "util/ASCII.hxx" #include "util/ASCII.hxx"

View File

@ -27,7 +27,8 @@ tag_sources = [
'Table.cxx', 'Table.cxx',
'Format.cxx', 'Format.cxx',
'VorbisComment.cxx', 'VorbisComment.cxx',
'ReplayGain.cxx', 'ReplayGainInfo.cxx',
'ReplayGainParser.cxx',
'MixRampParser.cxx', 'MixRampParser.cxx',
'Generic.cxx', 'Generic.cxx',
'Id3MusicBrainz.cxx', 'Id3MusicBrainz.cxx',

View File

@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "tag/Id3Load.hxx" #include "tag/Id3Load.hxx"
#include "tag/Rva2.hxx" #include "tag/Rva2.hxx"
#include "ReplayGainInfo.hxx" #include "tag/ReplayGainInfo.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"