fixed bw_{comp,noise_gate}_process_multi
This commit is contained in:
parent
0b7da2dda9
commit
df5f3837ea
@ -37,6 +37,9 @@
|
|||||||
* <code>BW_NULL</code> as sidechain inputs.</li>
|
* <code>BW_NULL</code> as sidechain inputs.</li>
|
||||||
* <li>Now using <code>BW_NULL</code> and
|
* <li>Now using <code>BW_NULL</code> and
|
||||||
* <code>BW_CXX_NO_ARRAY</code>.</li>
|
* <code>BW_CXX_NO_ARRAY</code>.</li>
|
||||||
|
* <li>Added <code>setThreshLin()</code> and <code>setThreshDB()</code>
|
||||||
|
* methods to fix a typo in method names without breaking the
|
||||||
|
* API.</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* </li>
|
* </li>
|
||||||
* <li>Version <strong>1.0.0</strong>:
|
* <li>Version <strong>1.0.0</strong>:
|
||||||
@ -662,7 +665,7 @@ static inline void bw_comp_process_multi(
|
|||||||
for (size_t i = 0; i < n_samples; i++) {
|
for (size_t i = 0; i < n_samples; i++) {
|
||||||
bw_comp_update_coeffs_audio(coeffs);
|
bw_comp_update_coeffs_audio(coeffs);
|
||||||
for (size_t j = 0; j < n_channels; j++)
|
for (size_t j = 0; j < n_channels; j++)
|
||||||
y[j][i] = bw_comp_process1(coeffs, state[j], x[j][i], x_sc[j][i]);
|
y[j][i] = bw_comp_process1(coeffs, state[j], x[j][i], x_sc[j] != BW_NULL ? x_sc[j][i] : 0.f);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
for (size_t i = 0; i < n_samples; i++) {
|
for (size_t i = 0; i < n_samples; i++) {
|
||||||
@ -892,11 +895,19 @@ public:
|
|||||||
size_t nSamples);
|
size_t nSamples);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// >> the following 2 methods only exist because of a typo, don't use
|
||||||
void setTreshLin(
|
void setTreshLin(
|
||||||
float value);
|
float value);
|
||||||
|
|
||||||
void setTreshDBFS(
|
void setTreshDBFS(
|
||||||
float value);
|
float value);
|
||||||
|
// <<
|
||||||
|
|
||||||
|
void setThreshLin(
|
||||||
|
float value);
|
||||||
|
|
||||||
|
void setThreshDBFS(
|
||||||
|
float value);
|
||||||
|
|
||||||
void setRatio(
|
void setRatio(
|
||||||
float value);
|
float value);
|
||||||
@ -1007,12 +1018,24 @@ inline void Comp<N_CHANNELS>::process(
|
|||||||
template<size_t N_CHANNELS>
|
template<size_t N_CHANNELS>
|
||||||
inline void Comp<N_CHANNELS>::setTreshLin(
|
inline void Comp<N_CHANNELS>::setTreshLin(
|
||||||
float value) {
|
float value) {
|
||||||
bw_comp_set_thresh_lin(&coeffs, value);
|
setThreshLin(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<size_t N_CHANNELS>
|
template<size_t N_CHANNELS>
|
||||||
inline void Comp<N_CHANNELS>::setTreshDBFS(
|
inline void Comp<N_CHANNELS>::setTreshDBFS(
|
||||||
float value) {
|
float value) {
|
||||||
|
setThreshDBFS(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<size_t N_CHANNELS>
|
||||||
|
inline void Comp<N_CHANNELS>::setThreshLin(
|
||||||
|
float value) {
|
||||||
|
bw_comp_set_thresh_lin(&coeffs, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<size_t N_CHANNELS>
|
||||||
|
inline void Comp<N_CHANNELS>::setThreshDBFS(
|
||||||
|
float value) {
|
||||||
bw_comp_set_thresh_dBFS(&coeffs, value);
|
bw_comp_set_thresh_dBFS(&coeffs, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,6 +35,9 @@
|
|||||||
* <code>BW_NULL</code> as sidechain inputs.</li>
|
* <code>BW_NULL</code> as sidechain inputs.</li>
|
||||||
* <li>Now using <code>BW_NULL</code> and
|
* <li>Now using <code>BW_NULL</code> and
|
||||||
* <code>BW_CXX_NO_ARRAY</code>.</li>
|
* <code>BW_CXX_NO_ARRAY</code>.</li>
|
||||||
|
* <li>Added <code>setThreshLin()</code> and <code>setThreshDB()</code>
|
||||||
|
* methods to fix a typo in method names without breaking the
|
||||||
|
* API.</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* </li>
|
* </li>
|
||||||
* <li>Version <strong>1.0.0</strong>:
|
* <li>Version <strong>1.0.0</strong>:
|
||||||
@ -621,7 +624,7 @@ static inline void bw_noise_gate_process_multi(
|
|||||||
for (size_t i = 0; i < n_samples; i++) {
|
for (size_t i = 0; i < n_samples; i++) {
|
||||||
bw_noise_gate_update_coeffs_audio(coeffs);
|
bw_noise_gate_update_coeffs_audio(coeffs);
|
||||||
for (size_t j = 0; j < n_channels; j++)
|
for (size_t j = 0; j < n_channels; j++)
|
||||||
y[j][i] = bw_noise_gate_process1(coeffs, state[j], x[j][i], x_sc[j][i]);
|
y[j][i] = bw_noise_gate_process1(coeffs, state[j], x[j][i], x_sc[j] != BW_NULL ? x_sc[j][i] : 0.f);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
for (size_t i = 0; i < n_samples; i++) {
|
for (size_t i = 0; i < n_samples; i++) {
|
||||||
@ -821,11 +824,19 @@ public:
|
|||||||
size_t nSamples);
|
size_t nSamples);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// >> the following 2 methods only exist because of a typo, don't use
|
||||||
void setTreshLin(
|
void setTreshLin(
|
||||||
float value);
|
float value);
|
||||||
|
|
||||||
void setTreshDBFS(
|
void setTreshDBFS(
|
||||||
float value);
|
float value);
|
||||||
|
// <<
|
||||||
|
|
||||||
|
void setThreshLin(
|
||||||
|
float value);
|
||||||
|
|
||||||
|
void setThreshDBFS(
|
||||||
|
float value);
|
||||||
|
|
||||||
void setRatio(
|
void setRatio(
|
||||||
float value);
|
float value);
|
||||||
@ -930,12 +941,24 @@ inline void NoiseGate<N_CHANNELS>::process(
|
|||||||
template<size_t N_CHANNELS>
|
template<size_t N_CHANNELS>
|
||||||
inline void NoiseGate<N_CHANNELS>::setTreshLin(
|
inline void NoiseGate<N_CHANNELS>::setTreshLin(
|
||||||
float value) {
|
float value) {
|
||||||
bw_noise_gate_set_thresh_lin(&coeffs, value);
|
setThreshLin(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<size_t N_CHANNELS>
|
template<size_t N_CHANNELS>
|
||||||
inline void NoiseGate<N_CHANNELS>::setTreshDBFS(
|
inline void NoiseGate<N_CHANNELS>::setTreshDBFS(
|
||||||
float value) {
|
float value) {
|
||||||
|
setThreshDBFS(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<size_t N_CHANNELS>
|
||||||
|
inline void NoiseGate<N_CHANNELS>::setThreshLin(
|
||||||
|
float value) {
|
||||||
|
bw_noise_gate_set_thresh_lin(&coeffs, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<size_t N_CHANNELS>
|
||||||
|
inline void NoiseGate<N_CHANNELS>::setThreshDBFS(
|
||||||
|
float value) {
|
||||||
bw_noise_gate_set_thresh_dBFS(&coeffs, value);
|
bw_noise_gate_set_thresh_dBFS(&coeffs, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user