|
|
|
@ -43,12 +43,11 @@ public: |
|
|
|
|
~MixingConsole(); |
|
|
|
|
|
|
|
|
|
// Send section
|
|
|
|
|
inline void setChannelLevel(size_t in, float32_t lvl); |
|
|
|
|
inline void setPan(size_t in, float32_t pan); |
|
|
|
|
inline void setSendLevel(size_t in, MixerOutput fx, float32_t lvl); |
|
|
|
|
inline void setInputSample(size_t in, float32_t sampleL, float32_t sampleR); |
|
|
|
|
inline void setInputSampleBuffer(size_t in, float32_t* samples); |
|
|
|
|
inline void setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR); |
|
|
|
|
inline void copyInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR); |
|
|
|
|
inline void preProcessInputSampleBuffer(size_t in, size_t nSamples); |
|
|
|
|
|
|
|
|
|
// Return section
|
|
|
|
@ -74,14 +73,12 @@ public: |
|
|
|
|
void process(float32_t* outL, float32_t* outR); |
|
|
|
|
|
|
|
|
|
protected: |
|
|
|
|
inline void updatePan(size_t in); |
|
|
|
|
inline void setLevel(size_t in, MixerOutput fx, float32_t lvl); |
|
|
|
|
inline void setSample(size_t in, float32_t sampleL, float32_t sampleR); |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
const size_t BufferSize; |
|
|
|
|
|
|
|
|
|
float32_t channel_level_[nb_inputs]; |
|
|
|
|
float32_t pan_[StereoChannels::kNumChannels + 1][nb_inputs]; |
|
|
|
|
float32_t* tg_input_sample_buffer_[nb_inputs]; |
|
|
|
|
float32_t* input_sample_buffer_[StereoChannels::kNumChannels][nb_inputs]; |
|
|
|
@ -112,7 +109,6 @@ private: |
|
|
|
|
{ |
|
|
|
|
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"); |
|
|
|
@ -123,7 +119,6 @@ private: |
|
|
|
|
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) |
|
|
|
@ -134,7 +129,6 @@ private: |
|
|
|
|
|
|
|
|
|
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]); |
|
|
|
@ -262,7 +256,6 @@ private: |
|
|
|
|
|
|
|
|
|
for(size_t i = 0; i < nb_inputs; ++i) |
|
|
|
|
{ |
|
|
|
|
nb_errors += inspector(tag + ".level[ input #" + std::to_string(i) + " ]" , this->channel_level_[i], -1.0f, 1.0f, deepInspection); |
|
|
|
|
nb_errors += inspector(tag + ".pan[ L ][ input #" + std::to_string(i) + " ]", this->pan_[StereoChannels::Left][i], -1.0f, 1.0f, deepInspection); |
|
|
|
|
nb_errors += inspector(tag + ".pan[ R ][ input #" + std::to_string(i) + " ]", this->pan_[StereoChannels::Right][i], -1.0f, 1.0f, deepInspection); |
|
|
|
|
nb_errors += inspector(tag + ".pan[ input #" + std::to_string(i) + " ]", this->pan_[StereoChannels::kNumChannels][i], -1.0f, 1.0f, deepInspection); |
|
|
|
@ -360,18 +353,6 @@ MixingConsole<nb_inputs>::~MixingConsole() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Send section
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setChannelLevel(size_t in, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|
assert(in < nb_inputs); |
|
|
|
|
|
|
|
|
|
lvl = constrain(lvl, 0.0f, 1.0f); |
|
|
|
|
if(lvl == this->channel_level_[in]) return; |
|
|
|
|
|
|
|
|
|
this->channel_level_[in] = lvl; |
|
|
|
|
this->updatePan(in); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setPan(size_t in, float32_t pan) |
|
|
|
|
{ |
|
|
|
@ -382,7 +363,10 @@ void MixingConsole<nb_inputs>::setPan(size_t in, float32_t pan) |
|
|
|
|
if(pan == this->pan_[StereoChannels::kNumChannels][in]) return; |
|
|
|
|
|
|
|
|
|
this->pan_[StereoChannels::kNumChannels][in] = pan; |
|
|
|
|
this->updatePan(in); |
|
|
|
|
|
|
|
|
|
pan *= Constants::MPI_2; |
|
|
|
|
this->pan_[StereoChannels::Left ][in] = InterpolatedSineOscillator::Cos(pan); |
|
|
|
|
this->pan_[StereoChannels::Right][in] = InterpolatedSineOscillator::Sin(pan); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
@ -411,7 +395,7 @@ void MixingConsole<nb_inputs>::setInputSampleBuffer(size_t in, float32_t* sample |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR) |
|
|
|
|
void MixingConsole<nb_inputs>::copyInputSampleBuffer(size_t in, float32_t* samplesL, float32_t* samplesR) |
|
|
|
|
{ |
|
|
|
|
// Only used to input stereo samples
|
|
|
|
|
assert(in < nb_inputs); |
|
|
|
@ -561,7 +545,6 @@ FXUnit2<Dry>* MixingConsole<nb_inputs>::getDry() |
|
|
|
|
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) |
|
|
|
@ -653,24 +636,6 @@ void MixingConsole<nb_inputs>::process(float32_t* outL, float32_t* outR) |
|
|
|
|
this->m_nSamples = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::updatePan(size_t in) |
|
|
|
|
{ |
|
|
|
|
float32_t pan = this->pan_[StereoChannels::kNumChannels][in] * Constants::MPI_2; |
|
|
|
|
if(this->channel_level_[in] != 0.0f) |
|
|
|
|
{ |
|
|
|
|
// 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];
|
|
|
|
|
this->pan_[StereoChannels::Left ][in] = InterpolatedSineOscillator::Cos(pan) * this->channel_level_[in]; |
|
|
|
|
this->pan_[StereoChannels::Right][in] = InterpolatedSineOscillator::Sin(pan) * this->channel_level_[in]; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
this->pan_[StereoChannels::Left ][in] =
|
|
|
|
|
this->pan_[StereoChannels::Right][in] = 0.0f; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<size_t nb_inputs> |
|
|
|
|
void MixingConsole<nb_inputs>::setLevel(size_t in, MixerOutput fx, float32_t lvl) |
|
|
|
|
{ |
|
|
|
|