2018-01-11 06:50:53 -08:00
|
|
|
#ifndef MASTERING_H
|
|
|
|
#define MASTERING_H
|
|
|
|
|
2018-12-24 09:17:00 -08:00
|
|
|
#include <memory>
|
|
|
|
|
2018-01-11 06:50:53 -08:00
|
|
|
#include "AL/al.h"
|
|
|
|
|
2019-05-28 16:22:36 -07:00
|
|
|
/* For FloatBufferLine/BUFFERSIZE. */
|
2019-07-28 18:33:29 -07:00
|
|
|
#include "alcmain.h"
|
2019-07-28 21:29:59 -07:00
|
|
|
#include "almalloc.h"
|
2018-11-14 04:15:44 -08:00
|
|
|
|
2018-11-21 16:46:52 -08:00
|
|
|
struct SlidingHold;
|
|
|
|
|
2019-07-28 21:29:59 -07:00
|
|
|
|
2018-11-21 16:46:52 -08:00
|
|
|
/* General topology and basic automation was based on the following paper:
|
|
|
|
*
|
|
|
|
* D. Giannoulis, M. Massberg and J. D. Reiss,
|
|
|
|
* "Parameter Automation in a Dynamic Range Compressor,"
|
|
|
|
* Journal of the Audio Engineering Society, v61 (10), Oct. 2013
|
|
|
|
*
|
|
|
|
* Available (along with supplemental reading) at:
|
|
|
|
*
|
|
|
|
* http://c4dm.eecs.qmul.ac.uk/audioengineering/compressors/
|
|
|
|
*/
|
|
|
|
struct Compressor {
|
2019-12-21 03:21:13 -08:00
|
|
|
size_t mNumChans{0u};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
|
|
|
struct {
|
2018-12-20 11:46:57 -08:00
|
|
|
bool Knee : 1;
|
|
|
|
bool Attack : 1;
|
|
|
|
bool Release : 1;
|
|
|
|
bool PostGain : 1;
|
|
|
|
bool Declip : 1;
|
2018-12-24 09:17:00 -08:00
|
|
|
} mAuto{};
|
|
|
|
|
2019-08-25 17:24:53 -07:00
|
|
|
ALuint mLookAhead{0};
|
2018-12-24 09:17:00 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
float mPreGain{0.0f};
|
|
|
|
float mPostGain{0.0f};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
float mThreshold{0.0f};
|
|
|
|
float mSlope{0.0f};
|
|
|
|
float mKnee{0.0f};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
float mAttack{0.0f};
|
|
|
|
float mRelease{0.0f};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
alignas(16) float mSideChain[2*BUFFERSIZE]{};
|
|
|
|
alignas(16) float mCrestFactor[BUFFERSIZE]{};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2018-12-24 09:17:00 -08:00
|
|
|
SlidingHold *mHold{nullptr};
|
2019-05-28 17:18:22 -07:00
|
|
|
FloatBufferLine *mDelay{nullptr};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
float mCrestCoeff{0.0f};
|
|
|
|
float mGainEstimate{0.0f};
|
|
|
|
float mAdaptCoeff{0.0f};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
float mLastPeakSq{0.0f};
|
|
|
|
float mLastRmsSq{0.0f};
|
|
|
|
float mLastRelease{0.0f};
|
|
|
|
float mLastAttack{0.0f};
|
|
|
|
float mLastGainDev{0.0f};
|
2018-11-21 16:46:52 -08:00
|
|
|
|
|
|
|
|
2018-12-24 09:17:00 -08:00
|
|
|
~Compressor();
|
2019-08-25 17:24:53 -07:00
|
|
|
void process(const ALuint SamplesToDo, FloatBufferLine *OutBuffer);
|
2019-09-11 05:53:10 -07:00
|
|
|
ALsizei getLookAhead() const noexcept { return static_cast<ALsizei>(mLookAhead); }
|
2018-11-21 16:46:52 -08:00
|
|
|
|
2018-11-22 07:06:42 -08:00
|
|
|
DEF_PLACE_NEWDEL()
|
2018-01-11 06:50:53 -08:00
|
|
|
|
2019-12-21 03:21:13 -08:00
|
|
|
/**
|
|
|
|
* The compressor is initialized with the following settings:
|
|
|
|
*
|
|
|
|
* \param NumChans Number of channels to process.
|
|
|
|
* \param SampleRate Sample rate to process.
|
|
|
|
* \param AutoKnee Whether to automate the knee width parameter.
|
|
|
|
* \param AutoAttack Whether to automate the attack time parameter.
|
|
|
|
* \param AutoRelease Whether to automate the release time parameter.
|
|
|
|
* \param AutoPostGain Whether to automate the make-up (post) gain
|
|
|
|
* parameter.
|
|
|
|
* \param AutoDeclip Whether to automate clipping reduction. Ignored
|
|
|
|
* when not automating make-up gain.
|
|
|
|
* \param LookAheadTime Look-ahead time (in seconds).
|
|
|
|
* \param HoldTime Peak hold-time (in seconds).
|
|
|
|
* \param PreGainDb Gain applied before detection (in dB).
|
|
|
|
* \param PostGainDb Make-up gain applied after compression (in dB).
|
|
|
|
* \param ThresholdDb Triggering threshold (in dB).
|
|
|
|
* \param Ratio Compression ratio (x:1). Set to INFINIFTY for true
|
|
|
|
* limiting. Ignored when automating knee width.
|
|
|
|
* \param KneeDb Knee width (in dB). Ignored when automating knee
|
|
|
|
* width.
|
|
|
|
* \param AttackTime Attack time (in seconds). Acts as a maximum when
|
|
|
|
* automating attack time.
|
|
|
|
* \param ReleaseTime Release time (in seconds). Acts as a maximum when
|
|
|
|
* automating release time.
|
|
|
|
*/
|
|
|
|
static std::unique_ptr<Compressor> Create(const size_t NumChans, const float SampleRate,
|
|
|
|
const bool AutoKnee, const bool AutoAttack, const bool AutoRelease,
|
|
|
|
const bool AutoPostGain, const bool AutoDeclip, const float LookAheadTime,
|
|
|
|
const float HoldTime, const float PreGainDb, const float PostGainDb,
|
|
|
|
const float ThresholdDb, const float Ratio, const float KneeDb, const float AttackTime,
|
|
|
|
const float ReleaseTime);
|
|
|
|
};
|
2018-01-11 06:50:53 -08:00
|
|
|
|
|
|
|
#endif /* MASTERING_H */
|