From 45b1f6f6b8de94c90f0fb93a18062d02fdb62ca9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 2 Oct 2017 12:42:44 -0400 Subject: change API and implementation for CubicInterpolation and Interpolation. Also remove LinearInterpolation which is not used --- libs/ardour/ardour/interpolation.h | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'libs/ardour/ardour/interpolation.h') diff --git a/libs/ardour/ardour/interpolation.h b/libs/ardour/ardour/interpolation.h index 4b6a66d54b..488a5fe5b4 100644 --- a/libs/ardour/ardour/interpolation.h +++ b/libs/ardour/ardour/interpolation.h @@ -40,7 +40,7 @@ protected: public: Interpolation () { _speed = 1.0; _target_speed = 1.0; } - ~Interpolation () { phase.clear(); } + virtual ~Interpolation() {} void set_speed (double new_speed) { _speed = new_speed; _target_speed = new_speed; } void set_target_speed (double new_speed) { _target_speed = new_speed; } @@ -48,31 +48,31 @@ public: double target_speed() const { return _target_speed; } double speed() const { return _speed; } - void add_channel_to (int /*input_buffer_size*/, int /*output_buffer_size*/) { phase.push_back (0.0); } - void remove_channel_from () { phase.pop_back (); } + void add_channel () { phase.push_back (0.0); } + void remove_channel () { phase.pop_back (); } - void reset () { + virtual void reset () { for (size_t i = 0; i < phase.size(); i++) { phase[i] = 0.0; } } }; -class LIBARDOUR_API LinearInterpolation : public Interpolation { -public: - samplecnt_t interpolate (int channel, samplecnt_t nframes, Sample* input, Sample* output); -}; - class LIBARDOUR_API CubicInterpolation : public Interpolation { -public: - samplecnt_t interpolate (int channel, samplecnt_t nframes, Sample* input, Sample* output); -}; - -class BufferSet; - -class LIBARDOUR_API CubicMidiInterpolation : public Interpolation { -public: - samplecnt_t distance (samplecnt_t nframes, bool roll = true); + public: + CubicInterpolation (); + samplecnt_t interpolate (int channel, samplecnt_t input_samples, Sample* input, samplecnt_t & output_samples, Sample* output); + samplecnt_t distance (samplecnt_t nframes); + void reset (); + + private: + Sample z[4]; + char valid_z_bits; + + bool is_valid (int n) const { return valid_z_bits & (1<