- Public method DSP::process() is overridden as private in WaveNet
WaveNet:
|
void process(NAM_SAMPLE* input, NAM_SAMPLE* output, const int num_frames) override; |
DSP:
|
virtual void process(NAM_SAMPLE* input, NAM_SAMPLE* output, const int num_frames); |
Move it to public in WaveNet
_condition and _set_condition_array() are private but should be protected
|
Eigen::MatrixXf _condition; |
|
virtual void _set_condition_array(NAM_SAMPLE* input, const int num_frames); |
WaveNet:
NeuralAmpModelerCore/NAM/wavenet.h
Line 192 in e181f61
DSP:
NeuralAmpModelerCore/NAM/dsp.h
Line 57 in e181f61
Move it to public in WaveNet
_conditionand_set_condition_array()are private but should be protectedNeuralAmpModelerCore/NAM/wavenet.h
Line 184 in e181f61
NeuralAmpModelerCore/NAM/wavenet.h
Line 196 in e181f61