13 #define REPLAY_GAIN_NO_PEAK -1.0f 14 #define REPLAY_GAIN_NO_GAIN -1000.0f 28 void SetGain(
float aGain);
29 void SetGain(
const std::string& aStrGain);
31 void SetPeak(
const std::string& aStrPeak);
32 void SetPeak(
float aPeak);
38 float m_gain = REPLAY_GAIN_NO_GAIN;
39 float m_peak = REPLAY_GAIN_NO_PEAK;
41 const Info& Get(Type aType)
const;
42 void Set(Type aType,
const Info& aInfo);
43 void ParseGain(Type aType,
const std::string& aStrGain);
44 void SetGain(Type aType,
float aGain);
45 void ParsePeak(Type aType,
const std::string& aStrPeak);
46 void SetPeak(Type aType,
float aPeak);
47 std::string Get()
const;
48 void Set(
const std::string& strReplayGain);
Definition: ReplayGain.h:25
Definition: ReplayGain.h:16