|
|
|
@ -33,471 +33,578 @@ |
|
|
|
|
#include "fx_dry.h" |
|
|
|
|
#include "fx_unit2.hpp" |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs = 8> |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
class MixingConsole : public FXBase |
|
|
|
|
{ |
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(MixingConsole); |
|
|
|
|
|
|
|
|
|
public: |
|
|
|
|
MixingConsole(float32_t sampling_rate, size_t buffer_size) : |
|
|
|
|
FXBase(sampling_rate), |
|
|
|
|
BufferSize(buffer_size) |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
this->input_sample_buffer_[StereoChannels::Left ][i] = new float32_t[this->BufferSize]; |
|
|
|
|
this->input_sample_buffer_[StereoChannels::Right][i] = new float32_t[this->BufferSize]; |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][i], 0, this->BufferSize); |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][i], 0, this->BufferSize); |
|
|
|
|
} |
|
|
|
|
MixingConsole(float32_t sampling_rate, size_t buffer_size); |
|
|
|
|
~MixingConsole(); |
|
|
|
|
|
|
|
|
|
memset(this->fx_, 0, MixerOutput::kFXCount * sizeof(FXElement*)); |
|
|
|
|
// Send section
|
|
|
|
|
void setChannelLevel(size_t in, float32_t lvl); |
|
|
|
|
void setPan(size_t in, float32_t pan); |
|
|
|
|
void setSendLevel(size_t in, MixerOutput fx, float32_t lvl); |
|
|
|
|
void setInputSample(size_t in, float32_t sampleL, float32_t sampleR); |
|
|
|
|
void setInputSampleBuffer(size_t in, float32_t* samples); |
|
|
|
|
void setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR); |
|
|
|
|
|
|
|
|
|
this->fx_[MixerOutput::FX_Tube] = this->tube_ = new FXUnit2<Tube>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Chorus] = this->chorus_ = new FXUnit2<Chorus>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Flanger] = this->flanger_ = new FXUnit2<Flanger>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Orbitone] = this->orbitone_ = new FXUnit2<Orbitone>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Phaser] = this->phaser_ = new FXUnit2<Phaser>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Delay] = this->delay_ = new FXUnit2<Delay>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_PlateReverb] = this->plate_reverb_ = new FXUnit2<AudioEffectPlateReverb>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_ShimmerReverb] = this->shimmer_reverb_ = new FXUnit2<ShimmerReverb>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::MainOutput] = this->dry_ = new FXUnit2<Dry>(sampling_rate); |
|
|
|
|
// Return section
|
|
|
|
|
void setReturnLevel(MixerOutput ret, MixerOutput dest, float32_t lvl); |
|
|
|
|
void setReturnSample(MixerOutput ret, float32_t sampleL, float32_t sampleR); |
|
|
|
|
|
|
|
|
|
this->init(); |
|
|
|
|
} |
|
|
|
|
// Get FX
|
|
|
|
|
FXElement* getFX(size_t fx); |
|
|
|
|
FXUnit2<Tube>* getTube(); |
|
|
|
|
FXUnit2<Chorus>* getChorus(); |
|
|
|
|
FXUnit2<Flanger>* getFlanger(); |
|
|
|
|
FXUnit2<Orbitone>* getOrbitone(); |
|
|
|
|
FXUnit2<Phaser>* getPhaser(); |
|
|
|
|
FXUnit2<Delay>* getDelay(); |
|
|
|
|
FXUnit2<AudioEffectPlateReverb>* getPlateReverb(); |
|
|
|
|
FXUnit2<ShimmerReverb>* getShimmerReverb(); |
|
|
|
|
FXUnit2<Dry>* getDry(); |
|
|
|
|
|
|
|
|
|
~MixingConsole() |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
delete this->input_sample_buffer_[StereoChannels::Left ][i]; |
|
|
|
|
delete this->input_sample_buffer_[StereoChannels::Right][i]; |
|
|
|
|
} |
|
|
|
|
// Processing
|
|
|
|
|
void init(); |
|
|
|
|
void reset(); |
|
|
|
|
void processSample(float32_t& outL, float32_t& outR); |
|
|
|
|
void prepare(); |
|
|
|
|
void process(float32_t* outL, float32_t* outR); |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
{ |
|
|
|
|
delete this->fx_[i]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
protected: |
|
|
|
|
void updatePan(size_t in); |
|
|
|
|
void setLevel(size_t in, MixerOutput fx, float32_t lvl); |
|
|
|
|
void setSample(size_t in, float32_t sampleL, float32_t sampleR); |
|
|
|
|
|
|
|
|
|
// Send section
|
|
|
|
|
private: |
|
|
|
|
const size_t BufferSize; |
|
|
|
|
|
|
|
|
|
void setChannelLevel(size_t in, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
float32_t channel_level_[nb_inputs]; |
|
|
|
|
float32_t pan_[StereoChannels::kNumChannels + 1][nb_inputs]; |
|
|
|
|
float32_t* input_sample_buffer_[StereoChannels::kNumChannels][nb_inputs]; |
|
|
|
|
float32_t input_samples_[StereoChannels::kNumChannels][nb_inputs + MixerOutput::kFXCount - 1]; |
|
|
|
|
float32_t levels_[MixerOutput::kFXCount][nb_inputs + MixerOutput::kFXCount - 1]; |
|
|
|
|
|
|
|
|
|
lvl = constrain(lvl, 0.0f, 1.0f); |
|
|
|
|
if(lvl == this->channel_level_[in]) return; |
|
|
|
|
FXElement* fx_[MixerOutput::kFXCount]; |
|
|
|
|
FXUnit2<Tube>* tube_; |
|
|
|
|
FXUnit2<Chorus>* chorus_; |
|
|
|
|
FXUnit2<Flanger>* flanger_; |
|
|
|
|
FXUnit2<Orbitone>* orbitone_; |
|
|
|
|
FXUnit2<Phaser>* phaser_; |
|
|
|
|
FXUnit2<Delay>* delay_; |
|
|
|
|
FXUnit2<AudioEffectPlateReverb>* plate_reverb_; |
|
|
|
|
FXUnit2<ShimmerReverb>* shimmer_reverb_; |
|
|
|
|
FXUnit2<Dry>* dry_; |
|
|
|
|
|
|
|
|
|
#if defined(DEBUG) |
|
|
|
|
public: |
|
|
|
|
void dump(std::ostream& out, const std::string& key = "") const; |
|
|
|
|
#endif |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
this->channel_level_[in] = lvl; |
|
|
|
|
this->updatePan(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setPan(size_t in, float32_t pan) |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
MixingConsole<nb_inputs>::MixingConsole(float32_t sampling_rate, size_t buffer_size) : |
|
|
|
|
FXBase(sampling_rate), |
|
|
|
|
BufferSize(buffer_size) |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
this->input_sample_buffer_[StereoChannels::Left ][i] = new float32_t[this->BufferSize]; |
|
|
|
|
this->input_sample_buffer_[StereoChannels::Right][i] = new float32_t[this->BufferSize]; |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][i], 0, this->BufferSize); |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][i], 0, this->BufferSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
pan = constrain(pan, 0.0f, 1.0f); |
|
|
|
|
|
|
|
|
|
if(pan == this->pan_[StereoChannels::kNumChannels][in]) return; |
|
|
|
|
memset(this->fx_, 0, MixerOutput::kFXCount * sizeof(FXElement*)); |
|
|
|
|
|
|
|
|
|
this->pan_[StereoChannels::kNumChannels][in] = pan; |
|
|
|
|
this->updatePan(in); |
|
|
|
|
} |
|
|
|
|
this->fx_[MixerOutput::FX_Tube] = this->tube_ = new FXUnit2<Tube>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Chorus] = this->chorus_ = new FXUnit2<Chorus>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Flanger] = this->flanger_ = new FXUnit2<Flanger>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Orbitone] = this->orbitone_ = new FXUnit2<Orbitone>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Phaser] = this->phaser_ = new FXUnit2<Phaser>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_Delay] = this->delay_ = new FXUnit2<Delay>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_PlateReverb] = this->plate_reverb_ = new FXUnit2<AudioEffectPlateReverb>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::FX_ShimmerReverb] = this->shimmer_reverb_ = new FXUnit2<ShimmerReverb>(sampling_rate); |
|
|
|
|
this->fx_[MixerOutput::MainOutput] = this->dry_ = new FXUnit2<Dry>(sampling_rate); |
|
|
|
|
|
|
|
|
|
void setSendLevel(size_t in, MixerOutput fx, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
assert(fx < kFXCount); |
|
|
|
|
this->init(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this->setLevel(in, fx, lvl); |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
MixingConsole<nb_inputs>::~MixingConsole() |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
delete this->input_sample_buffer_[StereoChannels::Left ][i]; |
|
|
|
|
delete this->input_sample_buffer_[StereoChannels::Right][i]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setInputSample(size_t in, float32_t sampleL, float32_t sampleR) |
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
|
|
|
|
|
this->setSample(in, sampleL, sampleR); |
|
|
|
|
delete this->fx_[i]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setInputSampleBuffer(size_t in, float32_t* samples) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
// Send section
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setChannelLevel(size_t in, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
|
|
|
|
|
if(samples != nullptr) |
|
|
|
|
{ |
|
|
|
|
arm_scale_f32(samples, this->pan_[StereoChannels::Left ][in], this->input_sample_buffer_[StereoChannels::Left ][in], this->BufferSize); |
|
|
|
|
arm_scale_f32(samples, this->pan_[StereoChannels::Right][in], this->input_sample_buffer_[StereoChannels::Right][in], this->BufferSize); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
lvl = constrain(lvl, 0.0f, 1.0f); |
|
|
|
|
if(lvl == this->channel_level_[in]) return; |
|
|
|
|
|
|
|
|
|
void setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
if(samplesL != nullptr) |
|
|
|
|
{ |
|
|
|
|
memcpy(this->input_sample_buffer_[StereoChannels::Left ][in], samplesL, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
this->channel_level_[in] = lvl; |
|
|
|
|
this->updatePan(in); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(samplesR != nullptr) |
|
|
|
|
{ |
|
|
|
|
memcpy(this->input_sample_buffer_[StereoChannels::Right][in], samplesR, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setPan(size_t in, float32_t pan) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
|
|
|
|
|
// Return section
|
|
|
|
|
pan = constrain(pan, 0.0f, 1.0f); |
|
|
|
|
|
|
|
|
|
if(pan == this->pan_[StereoChannels::kNumChannels][in]) return; |
|
|
|
|
|
|
|
|
|
void setReturnLevel(MixerOutput ret, MixerOutput dest, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(ret < (kFXCount - 1)); |
|
|
|
|
assert(dest < kFXCount); |
|
|
|
|
this->pan_[StereoChannels::kNumChannels][in] = pan; |
|
|
|
|
this->updatePan(in); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(ret == dest) |
|
|
|
|
{ |
|
|
|
|
// An FX cannot feedback on itself
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setSendLevel(size_t in, MixerOutput fx, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
assert(fx < kFXCount); |
|
|
|
|
|
|
|
|
|
this->setLevel(nb_inputs + ret, dest, lvl); |
|
|
|
|
} |
|
|
|
|
this->setLevel(in, fx, lvl); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setReturnSample(MixerOutput ret, float32_t sampleL, float32_t sampleR) |
|
|
|
|
{ |
|
|
|
|
assert(ret < (kFXCount - 1)); |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setInputSample(size_t in, float32_t sampleL, float32_t sampleR) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
|
|
|
|
|
this->setSample(nb_inputs + ret, sampleL, sampleR); |
|
|
|
|
} |
|
|
|
|
this->setSample(in, sampleL, sampleR); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Get FX
|
|
|
|
|
FXElement* getFX(size_t fx) |
|
|
|
|
{ |
|
|
|
|
assert(fx < MixerOutput::kFXCount); |
|
|
|
|
return this->fx_[fx]; |
|
|
|
|
} |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setInputSampleBuffer(size_t in, float32_t* samples) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
|
|
|
|
|
FXUnit2<Tube>* getTube() |
|
|
|
|
if(samples != nullptr) |
|
|
|
|
{ |
|
|
|
|
return this->tube_; |
|
|
|
|
arm_scale_f32(samples, this->pan_[StereoChannels::Left ][in], this->input_sample_buffer_[StereoChannels::Left ][in], this->BufferSize); |
|
|
|
|
arm_scale_f32(samples, this->pan_[StereoChannels::Right][in], this->input_sample_buffer_[StereoChannels::Right][in], this->BufferSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<Chorus>* getChorus() |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
return this->chorus_; |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<Flanger>* getFlanger() |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
if(samplesL != nullptr) |
|
|
|
|
{ |
|
|
|
|
return this->flanger_; |
|
|
|
|
memcpy(this->input_sample_buffer_[StereoChannels::Left ][in], samplesL, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<Orbitone>* getOrbitone() |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
return this->orbitone_; |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<Phaser>* getPhaser() |
|
|
|
|
if(samplesR != nullptr) |
|
|
|
|
{ |
|
|
|
|
return this->phaser_; |
|
|
|
|
memcpy(this->input_sample_buffer_[StereoChannels::Right][in], samplesR, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<Delay>* getDelay() |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
return this->delay_; |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][in], 0, this->BufferSize * sizeof(float32_t)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<AudioEffectPlateReverb>* getPlateReverb() |
|
|
|
|
{ |
|
|
|
|
return this->plate_reverb_; |
|
|
|
|
} |
|
|
|
|
// Return section
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setReturnLevel(MixerOutput ret, MixerOutput dest, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(ret < (kFXCount - 1)); |
|
|
|
|
assert(dest < kFXCount); |
|
|
|
|
|
|
|
|
|
FXUnit2<ShimmerReverb>* getShimmerReverb() |
|
|
|
|
if(ret == dest) |
|
|
|
|
{ |
|
|
|
|
return this->shimmer_reverb_; |
|
|
|
|
// An FX cannot feedback on itself
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FXUnit2<Dry>* getDry() |
|
|
|
|
{ |
|
|
|
|
return this->dry_; |
|
|
|
|
} |
|
|
|
|
this->setLevel(nb_inputs + ret, dest, lvl); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Processing
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setReturnSample(MixerOutput ret, float32_t sampleL, float32_t sampleR) |
|
|
|
|
{ |
|
|
|
|
assert(ret < (kFXCount - 1)); |
|
|
|
|
|
|
|
|
|
void init() |
|
|
|
|
{ |
|
|
|
|
memset(this->channel_level_, 0, nb_inputs * sizeof(float32_t)); |
|
|
|
|
for(size_t i = 0; i <= StereoChannels::kNumChannels; ++i) memset(this->pan_[i], 0, nb_inputs * sizeof(float32_t)); |
|
|
|
|
this->setSample(nb_inputs + ret, sampleL, sampleR); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
memset(this->levels_[i], 0, (nb_inputs + MixerOutput::kFXCount - 1) * sizeof(float32_t)); |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < StereoChannels::kNumChannels; ++i)
|
|
|
|
|
memset(this->input_samples_[i], 0, (nb_inputs + MixerOutput::kFXCount - 1) * sizeof(float32_t)); |
|
|
|
|
// Get FX
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXElement* MixingConsole<nb_inputs>::getFX(size_t fx) |
|
|
|
|
{ |
|
|
|
|
assert(fx < MixerOutput::kFXCount); |
|
|
|
|
return this->fx_[fx]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this->reset(); |
|
|
|
|
} |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Tube>* MixingConsole<nb_inputs>::getTube() |
|
|
|
|
{ |
|
|
|
|
return this->tube_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Chorus>* MixingConsole<nb_inputs>::getChorus() |
|
|
|
|
{ |
|
|
|
|
return this->chorus_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Flanger>* MixingConsole<nb_inputs>::getFlanger() |
|
|
|
|
{ |
|
|
|
|
return this->flanger_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Orbitone>* MixingConsole<nb_inputs>::getOrbitone() |
|
|
|
|
{ |
|
|
|
|
return this->orbitone_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Phaser>* MixingConsole<nb_inputs>::getPhaser() |
|
|
|
|
{ |
|
|
|
|
return this->phaser_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void reset() |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Delay>* MixingConsole<nb_inputs>::getDelay() |
|
|
|
|
{ |
|
|
|
|
return this->delay_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<AudioEffectPlateReverb>* MixingConsole<nb_inputs>::getPlateReverb() |
|
|
|
|
{ |
|
|
|
|
return this->plate_reverb_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<ShimmerReverb>* MixingConsole<nb_inputs>::getShimmerReverb() |
|
|
|
|
{ |
|
|
|
|
return this->shimmer_reverb_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
FXUnit2<Dry>* MixingConsole<nb_inputs>::getDry() |
|
|
|
|
{ |
|
|
|
|
return this->dry_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Processing
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::init() |
|
|
|
|
{ |
|
|
|
|
memset(this->channel_level_, 0, nb_inputs * sizeof(float32_t)); |
|
|
|
|
for(size_t i = 0; i <= StereoChannels::kNumChannels; ++i) memset(this->pan_[i], 0, nb_inputs * sizeof(float32_t)); |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
memset(this->levels_[i], 0, (nb_inputs + MixerOutput::kFXCount - 1) * sizeof(float32_t)); |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < StereoChannels::kNumChannels; ++i)
|
|
|
|
|
memset(this->input_samples_[i], 0, (nb_inputs + MixerOutput::kFXCount - 1) * sizeof(float32_t)); |
|
|
|
|
|
|
|
|
|
this->reset(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::reset() |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][i], 0, this->BufferSize); |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][i], 0, this->BufferSize); |
|
|
|
|
} |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Left ][i], 0, this->BufferSize); |
|
|
|
|
memset(this->input_sample_buffer_[StereoChannels::Right][i], 0, this->BufferSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
{ |
|
|
|
|
this->fx_[i]->reset(); |
|
|
|
|
} |
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
{ |
|
|
|
|
this->fx_[i]->reset(); |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < MixerOutput::MainOutput; ++i) |
|
|
|
|
if(i != MixerOutput::MainOutput) |
|
|
|
|
{ |
|
|
|
|
this->setReturnSample(static_cast<MixerOutput>(i), 0.0f, 0.0f); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void processSample(float32_t& outL, float32_t& outR) |
|
|
|
|
{ |
|
|
|
|
float32_t fx_inputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels]; |
|
|
|
|
float32_t fx_outputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels]; |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::processSample(float32_t& outL, float32_t& outR) |
|
|
|
|
{ |
|
|
|
|
constexpr size_t bufferSize = nb_inputs + MixerOutput::kFXCount - 1; |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
float32_t fx_inputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels]; |
|
|
|
|
float32_t fx_outputs_[MixerOutput::kFXCount][StereoChannels::kNumChannels]; |
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
{ |
|
|
|
|
// Compute the samples that will feed the MixerOutput and process MixerOutput
|
|
|
|
|
fx_inputs_[i][StereoChannels::Left ] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Left ], this->levels_[i], bufferSize); |
|
|
|
|
fx_inputs_[i][StereoChannels::Right] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Right], this->levels_[i], bufferSize); |
|
|
|
|
|
|
|
|
|
// Process the FX
|
|
|
|
|
this->fx_[i]->processSample( |
|
|
|
|
fx_inputs_[i][StereoChannels::Left], |
|
|
|
|
fx_inputs_[i][StereoChannels::Right], |
|
|
|
|
fx_outputs_[i][StereoChannels::Left], |
|
|
|
|
fx_outputs_[i][StereoChannels::Right] |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if(i != MixerOutput::MainOutput) |
|
|
|
|
{ |
|
|
|
|
// Compute the samples that will feed the MixerOutput and process MixerOutput
|
|
|
|
|
fx_inputs_[i][StereoChannels::Left ] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Left ], this->levels_[i], nb_inputs + MixerOutput::kFXCount - 1); |
|
|
|
|
fx_inputs_[i][StereoChannels::Right] = arm_weighted_sum_f32(this->input_samples_[StereoChannels::Right], this->levels_[i], nb_inputs + MixerOutput::kFXCount - 1); |
|
|
|
|
|
|
|
|
|
// Process the FX
|
|
|
|
|
this->fx_[i]->processSample( |
|
|
|
|
fx_inputs_[i][StereoChannels::Left], |
|
|
|
|
fx_inputs_[i][StereoChannels::Right], |
|
|
|
|
// Feedback the resulting samples except for the main output
|
|
|
|
|
this->setReturnSample( |
|
|
|
|
static_cast<MixerOutput>(i),
|
|
|
|
|
fx_outputs_[i][StereoChannels::Left], |
|
|
|
|
fx_outputs_[i][StereoChannels::Right] |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if(i != MixerOutput::MainOutput) |
|
|
|
|
{ |
|
|
|
|
// Feedback the resulting samples except for the main output
|
|
|
|
|
this->setReturnSample( |
|
|
|
|
static_cast<MixerOutput>(i),
|
|
|
|
|
fx_outputs_[i][StereoChannels::Left], |
|
|
|
|
fx_outputs_[i][StereoChannels::Right] |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Return this main output sample
|
|
|
|
|
outL = fx_inputs_[MixerOutput::MainOutput][StereoChannels::Left]; |
|
|
|
|
outR = fx_inputs_[MixerOutput::MainOutput][StereoChannels::Right]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Return this main output sample
|
|
|
|
|
outL = fx_inputs_[MixerOutput::MainOutput][StereoChannels::Left]; |
|
|
|
|
outR = fx_inputs_[MixerOutput::MainOutput][StereoChannels::Right]; |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::prepare() |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
{ |
|
|
|
|
this->fx_[i]->prepare(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void prepare() |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::process(float32_t* outL, float32_t* outR) |
|
|
|
|
{ |
|
|
|
|
this->prepare(); |
|
|
|
|
|
|
|
|
|
for(size_t s = 0; s < this->BufferSize; ++s) |
|
|
|
|
{ |
|
|
|
|
for(size_t i = 0; i < MixerOutput::kFXCount; ++i) |
|
|
|
|
for(size_t in = 0; in < nb_inputs; ++in) |
|
|
|
|
{ |
|
|
|
|
this->fx_[i]->prepare(); |
|
|
|
|
this->setSample( |
|
|
|
|
in,
|
|
|
|
|
this->input_sample_buffer_[StereoChannels::Left ][in][s],
|
|
|
|
|
this->input_sample_buffer_[StereoChannels::Right][in][s] |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this->processSample(*outL, *outR); |
|
|
|
|
++outL; |
|
|
|
|
++outR; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void process(float32_t* outL, float32_t* outR) |
|
|
|
|
{ |
|
|
|
|
this->prepare(); |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::updatePan(size_t in) |
|
|
|
|
{ |
|
|
|
|
float32_t pan = mapfloat(this->pan_[StereoChannels::kNumChannels][in], 0.0f, 1.0f, 0.0, Constants::MPI_2); |
|
|
|
|
this->pan_[StereoChannels::Left ][in] = arm_cos_f32(pan) * this->channel_level_[in]; |
|
|
|
|
this->pan_[StereoChannels::Right][in] = arm_sin_f32(pan) * this->channel_level_[in]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for(size_t s = 0; s < this->BufferSize; ++s) |
|
|
|
|
{ |
|
|
|
|
for(size_t in = 0; in < nb_inputs; ++in) |
|
|
|
|
{ |
|
|
|
|
this->setSample( |
|
|
|
|
in,
|
|
|
|
|
this->input_sample_buffer_[StereoChannels::Left ][in][s],
|
|
|
|
|
this->input_sample_buffer_[StereoChannels::Right][in][s] |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setLevel(size_t in, MixerOutput fx, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < (nb_inputs + MixerOutput::kFXCount - 1)); |
|
|
|
|
assert(fx < MixerOutput::kFXCount); |
|
|
|
|
|
|
|
|
|
this->processSample(*outL, *outR); |
|
|
|
|
++outL; |
|
|
|
|
++outR; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this->levels_[fx][in] = constrain(lvl, 0.0f, 1.0f); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
void updatePan(size_t in) |
|
|
|
|
{ |
|
|
|
|
float32_t pan = mapfloat(this->pan_[StereoChannels::kNumChannels][in], 0.0f, 1.0f, 0.0, Constants::MPI_2); |
|
|
|
|
this->pan_[StereoChannels::Left ][in] = arm_sin_f32(pan) * this->channel_level_[in]; |
|
|
|
|
this->pan_[StereoChannels::Right][in] = arm_cos_f32(pan) * this->channel_level_[in]; |
|
|
|
|
} |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setSample(size_t in, float32_t sampleL, float32_t sampleR) |
|
|
|
|
{ |
|
|
|
|
assert(in < (nb_inputs + MixerOutput::kFXCount - 1)); |
|
|
|
|
this->input_samples_[StereoChannels::Left ][in] = sampleL; |
|
|
|
|
this->input_samples_[StereoChannels::Right][in] = sampleR; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setLevel(size_t in, MixerOutput fx, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < (nb_inputs + MixerOutput::kFXCount - 1)); |
|
|
|
|
assert(fx < MixerOutput::kFXCount); |
|
|
|
|
|
|
|
|
|
this->levels_[fx][in] = constrain(lvl, 0.0f, 1.0f); |
|
|
|
|
} |
|
|
|
|
#if defined(DEBUG) |
|
|
|
|
|
|
|
|
|
void setSample(size_t in, float32_t sampleL, float32_t sampleR) |
|
|
|
|
{ |
|
|
|
|
assert(in < (nb_inputs + MixerOutput::kFXCount - 1)); |
|
|
|
|
this->input_samples_[StereoChannels::Left ][in] = sampleL; |
|
|
|
|
this->input_samples_[StereoChannels::Right][in] = sampleR; |
|
|
|
|
} |
|
|
|
|
#define SS_RESET(ss, prec, align) ss.str(""); ss.precision(prec); ss << align; ss << std::fixed |
|
|
|
|
#define SS_SPACE(ss, spc, nb, align, sep) ss.fill(spc); ss.width(nb); ss << "" << sep |
|
|
|
|
#define SS__TEXT(ss, spc, nb, align, sep, txt) ss << align; ss.fill(spc); ss.width(nb); ss << txt << sep |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
const size_t BufferSize; |
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::dump(std::ostream& out, const std::string& key) const |
|
|
|
|
{ |
|
|
|
|
constexpr size_t space = 10; |
|
|
|
|
constexpr size_t precision = 5; |
|
|
|
|
|
|
|
|
|
float32_t channel_level_[nb_inputs]; |
|
|
|
|
float32_t pan_[StereoChannels::kNumChannels + 1][nb_inputs]; |
|
|
|
|
float32_t* input_sample_buffer_[StereoChannels::kNumChannels][nb_inputs]; |
|
|
|
|
float32_t input_samples_[StereoChannels::kNumChannels][nb_inputs + MixerOutput::kFXCount - 1]; |
|
|
|
|
float32_t levels_[MixerOutput::kFXCount][nb_inputs + MixerOutput::kFXCount - 1]; |
|
|
|
|
std::stringstream ss; |
|
|
|
|
|
|
|
|
|
FXElement* fx_[MixerOutput::kFXCount]; |
|
|
|
|
FXUnit2<Tube>* tube_; |
|
|
|
|
FXUnit2<Chorus>* chorus_; |
|
|
|
|
FXUnit2<Flanger>* flanger_; |
|
|
|
|
FXUnit2<Orbitone>* orbitone_; |
|
|
|
|
FXUnit2<Phaser>* phaser_; |
|
|
|
|
FXUnit2<Delay>* delay_; |
|
|
|
|
FXUnit2<AudioEffectPlateReverb>* plate_reverb_; |
|
|
|
|
FXUnit2<ShimmerReverb>* shimmer_reverb_; |
|
|
|
|
FXUnit2<Dry>* dry_; |
|
|
|
|
out << "MixingConsole dump - START - " << key.c_str() << std::endl << std::endl; |
|
|
|
|
|
|
|
|
|
#if defined(DEBUG) |
|
|
|
|
public: |
|
|
|
|
void dump(std::ostream& out, const std::string& key = "") const |
|
|
|
|
out << "\t" << "Input levels & Pan:" << std::endl; |
|
|
|
|
{ |
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS_SPACE(ss, ' ', space, std::left, '|'); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', "Level"); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', "Pan L"); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', "Pan R"); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', "Pan"); |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
std::stringstream s; |
|
|
|
|
s << "* Input "; |
|
|
|
|
s << (i + 1); |
|
|
|
|
|
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.str()); |
|
|
|
|
SS__TEXT(ss, ' ', space - 1, std::right, " |", this->channel_level_[i]); |
|
|
|
|
SS__TEXT(ss, ' ', space - 1, std::right, " |", this->pan_[StereoChannels::Left][i]); |
|
|
|
|
SS__TEXT(ss, ' ', space - 1, std::right, " |", this->pan_[StereoChannels::Right][i]); |
|
|
|
|
SS__TEXT(ss, ' ', space - 1, std::right, " |", this->pan_[StereoChannels::kNumChannels][i]); |
|
|
|
|
|
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
out << std::endl; |
|
|
|
|
|
|
|
|
|
out << "\t" << "Mixing Console input samples:" << std::endl; |
|
|
|
|
{ |
|
|
|
|
std::stringstream ss; |
|
|
|
|
ss.fill(' '); |
|
|
|
|
ss.precision(4); |
|
|
|
|
ss << std::fixed; |
|
|
|
|
|
|
|
|
|
out << "\t" << "MixingConsole dump - START - " << key.c_str() << std::endl; |
|
|
|
|
|
|
|
|
|
out << "\t" << "Input levels & Pan:" << std::endl; |
|
|
|
|
|
|
|
|
|
ss.str(""); |
|
|
|
|
ss << std::left; |
|
|
|
|
ss << "\t"; |
|
|
|
|
ss.width(11); |
|
|
|
|
ss << ""; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << "Level"; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << "Pan L"; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << "Pan R"; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << "Pan"; |
|
|
|
|
out << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
ss.str(""); |
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS_SPACE(ss, ' ', space, std::left, '|'); |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
ss << std::left; |
|
|
|
|
ss << "\t" << "* Input " << (i + 1) << ": "; |
|
|
|
|
|
|
|
|
|
ss.precision(4); |
|
|
|
|
ss << std::showpos; |
|
|
|
|
ss << std::fixed; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << this->channel_level_[i]; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << this->pan_[StereoChannels::Left][i]; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << this->pan_[StereoChannels::Right][i]; |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << this->pan_[StereoChannels::kNumChannels][i]; |
|
|
|
|
ss << std::endl; |
|
|
|
|
std::stringstream s; |
|
|
|
|
s << "Input "; |
|
|
|
|
s << (i + 1); |
|
|
|
|
|
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.str()); |
|
|
|
|
} |
|
|
|
|
out << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
out << "\t" << "Mixing Console input samples:" << std::endl; |
|
|
|
|
ss.str(""); |
|
|
|
|
ss.fill(' '); |
|
|
|
|
ss << std::left; |
|
|
|
|
ss << "\t"; |
|
|
|
|
ss.width(11); |
|
|
|
|
ss << ""; |
|
|
|
|
for(size_t i = 0; i < (MixerOutput::kFXCount - 1); ++i) |
|
|
|
|
{ |
|
|
|
|
std::string s = toString(static_cast<MixerOutput>(i)); |
|
|
|
|
s.resize(space); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.c_str()); |
|
|
|
|
} |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
ss << "Input " << (i + 1) << " "; |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
} |
|
|
|
|
for(size_t i = 0; i < (MixerOutput::kFXCount - 1); ++i) |
|
|
|
|
{ |
|
|
|
|
ss.width(7); |
|
|
|
|
ss << toString(static_cast<MixerOutput>(i)) << " "; |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
} |
|
|
|
|
out << ss.str() << std::endl; |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
const char* LR = "LR"; |
|
|
|
|
ss.str(""); |
|
|
|
|
for(size_t c = 0; c < StereoChannels::kNumChannels; ++c) |
|
|
|
|
{ |
|
|
|
|
ss << std::left; |
|
|
|
|
ss << "\t" << "* Input " << LR[c] << ": "; |
|
|
|
|
ss.precision(4); |
|
|
|
|
ss << std::showpos; |
|
|
|
|
ss << std::fixed; |
|
|
|
|
std::stringstream s; |
|
|
|
|
s << "* Input "; |
|
|
|
|
s << LR[c]; |
|
|
|
|
|
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.str()); |
|
|
|
|
for(size_t i = 0; i < (nb_inputs + MixerOutput::kFXCount - 1); ++i) |
|
|
|
|
{ |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << this->input_samples_[c][i]; |
|
|
|
|
SS__TEXT(ss, ' ', space - 1, std::right, " |", this->input_samples_[c][i]); |
|
|
|
|
} |
|
|
|
|
ss << std::endl; |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
} |
|
|
|
|
out << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
out << "\t" << "Mixing Console levels:" << std::endl; |
|
|
|
|
ss.str(""); |
|
|
|
|
ss << std::left; |
|
|
|
|
ss << "\t"; |
|
|
|
|
ss.width(11); |
|
|
|
|
ss << " "; |
|
|
|
|
} |
|
|
|
|
out << std::endl; |
|
|
|
|
|
|
|
|
|
out << "\t" << "Mixing Console levels:" << std::endl; |
|
|
|
|
{ |
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS_SPACE(ss, ' ', space, std::left, '|'); |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
ss << "Input " << (i + 1) << " "; |
|
|
|
|
std::stringstream s; |
|
|
|
|
s << "Input "; |
|
|
|
|
s << (i + 1); |
|
|
|
|
|
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.str()); |
|
|
|
|
} |
|
|
|
|
for(size_t i = 0; i < (MixerOutput::kFXCount - 1); ++i) |
|
|
|
|
{ |
|
|
|
|
ss.width(7); |
|
|
|
|
ss << toString(static_cast<MixerOutput>(i)) << " "; |
|
|
|
|
std::string s = toString(static_cast<MixerOutput>(i)); |
|
|
|
|
s.resize(space); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.c_str()); |
|
|
|
|
} |
|
|
|
|
out << ss.str() << std::endl; |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
} |
|
|
|
|
for(size_t i = 0; i < (MixerOutput::kFXCount - 1); ++i) |
|
|
|
|
{ |
|
|
|
|
SS_SPACE(ss, '-', space, std::left, '+'); |
|
|
|
|
} |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
ss.str(""); |
|
|
|
|
for(size_t c = 0; c < MixerOutput::kFXCount; ++c) |
|
|
|
|
{ |
|
|
|
|
ss << std::left; |
|
|
|
|
ss << "\t"; |
|
|
|
|
ss.width(9); |
|
|
|
|
ss << toString(static_cast<MixerOutput>(c)); |
|
|
|
|
ss << ": "; |
|
|
|
|
ss.precision(4); |
|
|
|
|
ss << std::showpos; |
|
|
|
|
ss << std::fixed; |
|
|
|
|
SS_RESET(ss, precision, std::left); |
|
|
|
|
std::string s = toString(static_cast<MixerOutput>(c)); |
|
|
|
|
s.resize(space); |
|
|
|
|
SS__TEXT(ss, ' ', space, std::left, '|', s.c_str()); |
|
|
|
|
for(size_t i = 0; i < (nb_inputs + MixerOutput::kFXCount - 1); ++i) |
|
|
|
|
{ |
|
|
|
|
ss.width(8); |
|
|
|
|
ss << this->levels_[c][i]; |
|
|
|
|
SS__TEXT(ss, ' ', space - 1, std::right, " |", this->levels_[c][i]); |
|
|
|
|
} |
|
|
|
|
ss << std::endl; |
|
|
|
|
out << "\t" << ss.str() << std::endl; |
|
|
|
|
} |
|
|
|
|
out << ss.str() << std::endl; |
|
|
|
|
|
|
|
|
|
out << "MixingConsole dump - END - " << key.c_str() << std::endl; |
|
|
|
|
} |
|
|
|
|
out << std::endl; |
|
|
|
|
|
|
|
|
|
out << "MixingConsole dump - END - " << key.c_str() << std::endl; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#define DUMP1(mixer, out) mixer->dump(cout) |
|
|
|
|
#define DUMP2(mixer, out, tag) mixer->dump(cout, tag) |
|
|
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
|
|
#define DUMP1(mixer, out) |
|
|
|
|
#define DUMP2(mixer, out, tag) |
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
}; |