Files

copied
Last update 6 years 3 months by Olivier Gillet
Filesplaitsdspfx
..
diffuser.h
fx_engine.h
low_pass_gate.h
overdrive.h
sample_rate_reducer.h
sample_rate_reducer.h
// Copyright 2014 Olivier Gillet. // // Author: Olivier Gillet (ol.gillet@gmail.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // // See http://creativecommons.org/licenses/MIT/ for more information. // // ----------------------------------------------------------------------------- // // Sample rate reducer. #ifndef PLAITS_DSP_FX_SAMPLE_RATE_REDUCER_H_ #define PLAITS_DSP_FX_SAMPLE_RATE_REDUCER_H_ #include <algorithm> #include "stmlib/dsp/polyblep.h" namespace plaits { class SampleRateReducer { public: SampleRateReducer() { } ~SampleRateReducer() { } void Init() { phase_ = 0.0f; sample_ = 0.0f; next_sample_ = 0.0f; previous_sample_ = 0.0f; } template<bool optimized_handling_of_special_cases> void Process(float frequency, float* in_out, size_t size) { if (optimized_handling_of_special_cases) { // Use fast specialized implementations for target rates close to the // original rates. Caveats: // - The size argument must be a multiple of 4. // - There will be a transition glitch between the "optimized" and the // "common case" code, so don't use this when frequency is modulated! // - The optimized code is not a truly variable reclocking, instead, // this is a crossfade between reclocking at SR / 2N and SR / N. if (frequency >= 1.0f) { return; } else if (frequency >= 0.5f) { ProcessHalf(2.0f - 2.0f * frequency, in_out, size); return; } else if (frequency >= 0.25f) { ProcessQuarter(2.0f - 4.0f * frequency, in_out, size); return; } } else { CONSTRAIN(frequency, 0.0f, 1.0f); } float previous_sample = previous_sample_; float next_sample = next_sample_; float sample = sample_; float phase = phase_; while (size--) { float this_sample = next_sample; next_sample = 0.0f; phase += frequency; if (phase >= 1.0f) { phase -= 1.0f; float t = phase / frequency; // t = 0: the transition occurred right at this sample. // t = 1: the transition occurred at the previous sample. // Use linear interpolation to recover the fractional sample. float new_sample = \ previous_sample + (*in_out - previous_sample) * (1.0f - t); float discontinuity = new_sample - sample; this_sample += discontinuity * stmlib::ThisBlepSample(t); next_sample += discontinuity * stmlib::NextBlepSample(t); sample = new_sample; } next_sample += sample; previous_sample = *in_out; *in_out++ = this_sample; } phase_ = phase; next_sample_ = next_sample; sample_ = sample; previous_sample_ = previous_sample; } private: void ProcessHalf(float amount, float* in_out, size_t size) { // assert(size % 2 == 0); while (size) { in_out[1] += (in_out[0] - in_out[1]) * amount; in_out += 2; size -= 2; } sample_ = next_sample_ = previous_sample_ = in_out[-1]; } void ProcessQuarter(float amount, float* in_out, size_t size) { // assert(size % 4 == 0); while (size) { in_out[1] = in_out[0]; in_out[2] += (in_out[0] - in_out[2]) * amount; in_out[3] = in_out[2]; in_out += 4; size -= 4; } sample_ = next_sample_ = previous_sample_ = in_out[-1]; } float phase_; float sample_; float previous_sample_; float next_sample_; DISALLOW_COPY_AND_ASSIGN(SampleRateReducer); }; } // namespace plaits #endif // PLAITS_DSP_FX_SAMPLE_RATE_REDUCER_H_
Report a bug