|
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2016 - ROLI Ltd.
-
- Permission is granted to use this software under the terms of the ISC license
- http://www.isc.org/downloads/software-support-policy/isc-license/
-
- Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted, provided that the above
- copyright notice and this permission notice appear in all copies.
-
- THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
- TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
- FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
- OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
- USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- OF THIS SOFTWARE.
-
- -----------------------------------------------------------------------------
-
- To release a closed-source product which uses other parts of JUCE not
- licensed under the ISC terms, commercial licenses are available: visit
- www.juce.com for more information.
-
- ==============================================================================
- */
-
- /**
- Interpolator for resampling a stream of floats using Catmull-Rom interpolation.
-
- Note that the resampler is stateful, so when there's a break in the continuity
- of the input stream you're feeding it, you should call reset() before feeding
- it any new data. And like with any other stateful filter, if you're resampling
- multiple channels, make sure each one uses its own CatmullRomInterpolator
- object.
-
- @see LagrangeInterpolator
- */
- class JUCE_API CatmullRomInterpolator
- {
- public:
- CatmullRomInterpolator() noexcept;
- ~CatmullRomInterpolator() noexcept;
-
- /** Resets the state of the interpolator.
- Call this when there's a break in the continuity of the input data stream.
- */
- void reset() noexcept;
-
- /** Resamples a stream of samples.
-
- @param speedRatio the number of input samples to use for each output sample
- @param inputSamples the source data to read from. This must contain at
- least (speedRatio * numOutputSamplesToProduce) samples.
- @param outputSamples the buffer to write the results into
- @param numOutputSamplesToProduce the number of output samples that should be created
-
- @returns the actual number of input samples that were used
- */
- int process (double speedRatio,
- const float* inputSamples,
- float* outputSamples,
- int numOutputSamplesToProduce) noexcept;
-
- /** Resamples a stream of samples, adding the results to the output data
- with a gain.
-
- @param speedRatio the number of input samples to use for each output sample
- @param inputSamples the source data to read from. This must contain at
- least (speedRatio * numOutputSamplesToProduce) samples.
- @param outputSamples the buffer to write the results to - the result values will be added
- to any pre-existing data in this buffer after being multiplied by
- the gain factor
- @param numOutputSamplesToProduce the number of output samples that should be created
- @param gain a gain factor to multiply the resulting samples by before
- adding them to the destination buffer
-
- @returns the actual number of input samples that were used
- */
- int processAdding (double speedRatio,
- const float* inputSamples,
- float* outputSamples,
- int numOutputSamplesToProduce,
- float gain) noexcept;
-
- private:
- float lastInputSamples[5];
- double subSamplePos;
-
- JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (CatmullRomInterpolator)
- };
|