commit 9b381cc5ce72caaffe4b73626e2304221ea235c4
parent 8412ed8f5e063f78b56d4e33750415fa46fa384d
Author: Jonathan Moore Liles <[email protected]>
Date: Tue, 8 Dec 2020 17:40:26 -0800
Master: Try to pass CI tests by not fading volumes up from 0, but rather starting at the default.
Which are (curiously), when starting up a new instance of ZynAddSubFX:
Part volume: L 1.000000 R 0.992126
Master volume: 0.464159 (MIDI 58)
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/DSP/AnalogFilter.cpp b/src/DSP/AnalogFilter.cpp
@@ -47,6 +47,7 @@ AnalogFilter::AnalogFilter(unsigned char Ftype,
coeff.d[0] = 0; //this is not used
outgain = 1.0f;
freq_smoothing.sample_rate(samplerate_f);
+ freq_smoothing.reset( freq );
}
AnalogFilter::~AnalogFilter()
diff --git a/src/Misc/Master.cpp b/src/Misc/Master.cpp
@@ -785,11 +785,13 @@ Master::Master(const SYNTH_T &synth_, Config* config)
config->cfg.Interpolation, µtonal, fft, &watcher,
(ss+"/part"+npart+"/").c_str);
smoothing_part_l[npart].sample_rate( synth.samplerate );
+ smoothing_part_l[npart].reset( 1.0f );
smoothing_part_r[npart].sample_rate( synth.samplerate );
-
+ smoothing_part_r[npart].reset( 0.992126f ); /* curious default, must be a bug in panning formula. */
}
smoothing.sample_rate( synth.samplerate );
+ smoothing.reset( 0.464159f ); /* master volume has this odd default for some reason, just go with it. */
//Insertion Effects init
for(int nefx = 0; nefx < NUM_INS_EFX; ++nefx)