2013-06-22 18:19:27 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
///
|
|
|
|
/// SoundTouch - main class for tempo/pitch/rate adjusting routines.
|
|
|
|
///
|
|
|
|
/// Notes:
|
|
|
|
/// - Initialize the SoundTouch object instance by setting up the sound stream
|
|
|
|
/// parameters with functions 'setSampleRate' and 'setChannels', then set
|
|
|
|
/// desired tempo/pitch/rate settings with the corresponding functions.
|
|
|
|
///
|
|
|
|
/// - The SoundTouch class behaves like a first-in-first-out pipeline: The
|
|
|
|
/// samples that are to be processed are fed into one of the pipe by calling
|
|
|
|
/// function 'putSamples', while the ready processed samples can be read
|
|
|
|
/// from the other end of the pipeline with function 'receiveSamples'.
|
|
|
|
///
|
|
|
|
/// - The SoundTouch processing classes require certain sized 'batches' of
|
|
|
|
/// samples in order to process the sound. For this reason the classes buffer
|
|
|
|
/// incoming samples until there are enough of samples available for
|
|
|
|
/// processing, then they carry out the processing step and consequently
|
|
|
|
/// make the processed samples available for outputting.
|
|
|
|
///
|
|
|
|
/// - For the above reason, the processing routines introduce a certain
|
|
|
|
/// 'latency' between the input and output, so that the samples input to
|
|
|
|
/// SoundTouch may not be immediately available in the output, and neither
|
|
|
|
/// the amount of outputtable samples may not immediately be in direct
|
|
|
|
/// relationship with the amount of previously input samples.
|
|
|
|
///
|
|
|
|
/// - The tempo/pitch/rate control parameters can be altered during processing.
|
|
|
|
/// Please notice though that they aren't currently protected by semaphores,
|
|
|
|
/// so in multi-thread application external semaphore protection may be
|
|
|
|
/// required.
|
|
|
|
///
|
|
|
|
/// - This class utilizes classes 'TDStretch' for tempo change (without modifying
|
|
|
|
/// pitch) and 'RateTransposer' for changing the playback rate (that is, both
|
|
|
|
/// tempo and pitch in the same ratio) of the sound. The third available control
|
|
|
|
/// 'pitch' (change pitch but maintain tempo) is produced by a combination of
|
|
|
|
/// combining the two other controls.
|
|
|
|
///
|
|
|
|
/// Author : Copyright (c) Olli Parviainen
|
|
|
|
/// Author e-mail : oparviai 'at' iki.fi
|
|
|
|
/// SoundTouch WWW: http://www.surina.net/soundtouch
|
|
|
|
///
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// License :
|
|
|
|
//
|
|
|
|
// SoundTouch audio processing library
|
|
|
|
// Copyright (c) Olli Parviainen
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "SoundTouch.h"
|
|
|
|
#include "TDStretch.h"
|
|
|
|
#include "RateTransposer.h"
|
|
|
|
#include "cpu_detect.h"
|
|
|
|
|
|
|
|
using namespace soundtouch;
|
|
|
|
|
|
|
|
/// test if two floating point numbers are equal
|
|
|
|
#define TEST_FLOAT_EQUAL(a, b) (fabs(a - b) < 1e-10)
|
|
|
|
|
|
|
|
|
|
|
|
/// Print library version string for autoconf
|
|
|
|
extern "C" void soundtouch_ac_test()
|
|
|
|
{
|
|
|
|
printf("SoundTouch Version: %s\n",SOUNDTOUCH_VERSION);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SoundTouch::SoundTouch()
|
|
|
|
{
|
|
|
|
// Initialize rate transposer and tempo changer instances
|
|
|
|
|
2014-09-04 10:41:45 +00:00
|
|
|
pRateTransposer = new RateTransposer();
|
2013-06-22 18:19:27 +00:00
|
|
|
pTDStretch = TDStretch::newInstance();
|
|
|
|
|
|
|
|
setOutPipe(pTDStretch);
|
|
|
|
|
|
|
|
rate = tempo = 0;
|
|
|
|
|
|
|
|
virtualPitch =
|
|
|
|
virtualRate =
|
|
|
|
virtualTempo = 1.0;
|
|
|
|
|
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
samplesExpectedOut = 0;
|
|
|
|
samplesOutput = 0;
|
2015-12-28 12:07:53 +00:00
|
|
|
|
2013-06-22 18:19:27 +00:00
|
|
|
channels = 0;
|
2014-09-04 10:41:45 +00:00
|
|
|
bSrateSet = false;
|
2013-06-22 18:19:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SoundTouch::~SoundTouch()
|
|
|
|
{
|
|
|
|
delete pRateTransposer;
|
|
|
|
delete pTDStretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Get SoundTouch library version string
|
|
|
|
const char *SoundTouch::getVersionString()
|
|
|
|
{
|
|
|
|
static const char *_version = SOUNDTOUCH_VERSION;
|
|
|
|
|
|
|
|
return _version;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Get SoundTouch library version Id
|
|
|
|
uint SoundTouch::getVersionId()
|
|
|
|
{
|
|
|
|
return SOUNDTOUCH_VERSION_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets the number of channels, 1 = mono, 2 = stereo
|
|
|
|
void SoundTouch::setChannels(uint numChannels)
|
|
|
|
{
|
2023-03-24 21:20:21 +00:00
|
|
|
if (!verifyNumberOfChannels(numChannels)) return;
|
|
|
|
|
2013-06-22 18:19:27 +00:00
|
|
|
channels = numChannels;
|
|
|
|
pRateTransposer->setChannels((int)numChannels);
|
|
|
|
pTDStretch->setChannels((int)numChannels);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets new rate control value. Normal rate = 1.0, smaller values
|
|
|
|
// represent slower rate, larger faster rates.
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setRate(double newRate)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
|
|
|
virtualRate = newRate;
|
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets new rate control value as a difference in percents compared
|
|
|
|
// to the original rate (-50 .. +100 %)
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setRateChange(double newRate)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
2015-12-28 12:07:53 +00:00
|
|
|
virtualRate = 1.0 + 0.01 * newRate;
|
2013-06-22 18:19:27 +00:00
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets new tempo control value. Normal tempo = 1.0, smaller values
|
|
|
|
// represent slower tempo, larger faster tempo.
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setTempo(double newTempo)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
|
|
|
virtualTempo = newTempo;
|
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets new tempo control value as a difference in percents compared
|
|
|
|
// to the original tempo (-50 .. +100 %)
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setTempoChange(double newTempo)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
2015-12-28 12:07:53 +00:00
|
|
|
virtualTempo = 1.0 + 0.01 * newTempo;
|
2013-06-22 18:19:27 +00:00
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets new pitch control value. Original pitch = 1.0, smaller values
|
|
|
|
// represent lower pitches, larger values higher pitch.
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setPitch(double newPitch)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
|
|
|
virtualPitch = newPitch;
|
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets pitch change in octaves compared to the original pitch
|
|
|
|
// (-1.00 .. +1.00)
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setPitchOctaves(double newPitch)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
2015-12-28 12:07:53 +00:00
|
|
|
virtualPitch = exp(0.69314718056 * newPitch);
|
2013-06-22 18:19:27 +00:00
|
|
|
calcEffectiveRateAndTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets pitch change in semi-tones compared to the original pitch
|
|
|
|
// (-12 .. +12)
|
|
|
|
void SoundTouch::setPitchSemiTones(int newPitch)
|
|
|
|
{
|
2015-12-28 12:07:53 +00:00
|
|
|
setPitchOctaves((double)newPitch / 12.0);
|
2013-06-22 18:19:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-28 12:07:53 +00:00
|
|
|
void SoundTouch::setPitchSemiTones(double newPitch)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
2015-12-28 12:07:53 +00:00
|
|
|
setPitchOctaves(newPitch / 12.0);
|
2013-06-22 18:19:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Calculates 'effective' rate and tempo values from the
|
|
|
|
// nominal control values.
|
|
|
|
void SoundTouch::calcEffectiveRateAndTempo()
|
|
|
|
{
|
2015-12-28 12:07:53 +00:00
|
|
|
double oldTempo = tempo;
|
|
|
|
double oldRate = rate;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
tempo = virtualTempo / virtualPitch;
|
|
|
|
rate = virtualPitch * virtualRate;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
if (!TEST_FLOAT_EQUAL(rate,oldRate)) pRateTransposer->setRate(rate);
|
2023-03-24 21:20:21 +00:00
|
|
|
if (!TEST_FLOAT_EQUAL(tempo, oldTempo)) pTDStretch->setTempo(tempo);
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
#ifndef SOUNDTOUCH_PREVENT_CLICK_AT_RATE_CROSSOVER
|
|
|
|
if (rate <= 1.0f)
|
|
|
|
{
|
|
|
|
if (output != pTDStretch)
|
|
|
|
{
|
|
|
|
FIFOSamplePipe *tempoOut;
|
|
|
|
|
|
|
|
assert(output == pRateTransposer);
|
|
|
|
// move samples in the current output buffer to the output of pTDStretch
|
|
|
|
tempoOut = pTDStretch->getOutput();
|
|
|
|
tempoOut->moveSamples(*output);
|
|
|
|
// move samples in pitch transposer's store buffer to tempo changer's input
|
2014-09-04 10:41:45 +00:00
|
|
|
// deprecated : pTDStretch->moveSamples(*pRateTransposer->getStore());
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
output = pTDStretch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (output != pRateTransposer)
|
|
|
|
{
|
|
|
|
FIFOSamplePipe *transOut;
|
|
|
|
|
|
|
|
assert(output == pTDStretch);
|
|
|
|
// move samples in the current output buffer to the output of pRateTransposer
|
|
|
|
transOut = pRateTransposer->getOutput();
|
|
|
|
transOut->moveSamples(*output);
|
|
|
|
// move samples in tempo changer's input to pitch transposer's input
|
|
|
|
pRateTransposer->moveSamples(*pTDStretch->getInput());
|
|
|
|
|
|
|
|
output = pRateTransposer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets sample rate.
|
|
|
|
void SoundTouch::setSampleRate(uint srate)
|
|
|
|
{
|
|
|
|
// set sample rate, leave other tempo changer parameters as they are.
|
|
|
|
pTDStretch->setParameters((int)srate);
|
2023-03-24 21:20:21 +00:00
|
|
|
bSrateSet = true;
|
2013-06-22 18:19:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Adds 'numSamples' pcs of samples from the 'samples' memory position into
|
|
|
|
// the input of the object.
|
|
|
|
void SoundTouch::putSamples(const SAMPLETYPE *samples, uint nSamples)
|
|
|
|
{
|
2014-09-04 10:41:45 +00:00
|
|
|
if (bSrateSet == false)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
|
|
|
ST_THROW_RT_ERROR("SoundTouch : Sample rate not defined");
|
|
|
|
}
|
|
|
|
else if (channels == 0)
|
|
|
|
{
|
|
|
|
ST_THROW_RT_ERROR("SoundTouch : Number of channels not defined");
|
|
|
|
}
|
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
// accumulate how many samples are expected out from processing, given the current
|
|
|
|
// processing setting
|
|
|
|
samplesExpectedOut += (double)nSamples / ((double)rate * (double)tempo);
|
2015-12-28 12:07:53 +00:00
|
|
|
|
2013-06-22 18:19:27 +00:00
|
|
|
#ifndef SOUNDTOUCH_PREVENT_CLICK_AT_RATE_CROSSOVER
|
2015-12-28 12:07:53 +00:00
|
|
|
if (rate <= 1.0f)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
|
|
|
// transpose the rate down, output the transposed sound to tempo changer buffer
|
|
|
|
assert(output == pTDStretch);
|
|
|
|
pRateTransposer->putSamples(samples, nSamples);
|
|
|
|
pTDStretch->moveSamples(*pRateTransposer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
// evaluate the tempo changer, then transpose the rate up,
|
|
|
|
assert(output == pRateTransposer);
|
|
|
|
pTDStretch->putSamples(samples, nSamples);
|
|
|
|
pRateTransposer->moveSamples(*pTDStretch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Flushes the last samples from the processing pipeline to the output.
|
|
|
|
// Clears also the internal processing buffers.
|
|
|
|
//
|
|
|
|
// Note: This function is meant for extracting the last samples of a sound
|
|
|
|
// stream. This function may introduce additional blank samples in the end
|
|
|
|
// of the sound stream, and thus it's not recommended to call this function
|
|
|
|
// in the middle of a sound stream.
|
|
|
|
void SoundTouch::flush()
|
|
|
|
{
|
|
|
|
int i;
|
2023-03-24 21:20:21 +00:00
|
|
|
int numStillExpected;
|
2015-12-28 12:07:53 +00:00
|
|
|
SAMPLETYPE *buff = new SAMPLETYPE[128 * channels];
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
// how many samples are still expected to output
|
|
|
|
numStillExpected = (int)((long)(samplesExpectedOut + 0.5) - samplesOutput);
|
|
|
|
if (numStillExpected < 0) numStillExpected = 0;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2015-12-28 12:07:53 +00:00
|
|
|
memset(buff, 0, 128 * channels * sizeof(SAMPLETYPE));
|
2013-06-22 18:19:27 +00:00
|
|
|
// "Push" the last active samples out from the processing pipeline by
|
|
|
|
// feeding blank samples into the processing pipeline until new,
|
|
|
|
// processed samples appear in the output (not however, more than
|
2015-12-28 12:07:53 +00:00
|
|
|
// 24ksamples in any case)
|
2023-03-24 21:20:21 +00:00
|
|
|
for (i = 0; (numStillExpected > (int)numSamples()) && (i < 200); i ++)
|
|
|
|
{
|
|
|
|
putSamples(buff, 128);
|
|
|
|
}
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
adjustAmountOfSamples(numStillExpected);
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2015-12-28 12:07:53 +00:00
|
|
|
delete[] buff;
|
|
|
|
|
|
|
|
// Clear input buffers
|
2013-06-22 18:19:27 +00:00
|
|
|
pTDStretch->clearInput();
|
2015-12-28 12:07:53 +00:00
|
|
|
// yet leave the output intouched as that's where the
|
2013-06-22 18:19:27 +00:00
|
|
|
// flushed samples are!
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Changes a setting controlling the processing system behaviour. See the
|
|
|
|
// 'SETTING_...' defines for available setting ID's.
|
2014-09-04 10:41:45 +00:00
|
|
|
bool SoundTouch::setSetting(int settingId, int value)
|
2013-06-22 18:19:27 +00:00
|
|
|
{
|
|
|
|
int sampleRate, sequenceMs, seekWindowMs, overlapMs;
|
|
|
|
|
|
|
|
// read current tdstretch routine parameters
|
|
|
|
pTDStretch->getParameters(&sampleRate, &sequenceMs, &seekWindowMs, &overlapMs);
|
|
|
|
|
|
|
|
switch (settingId)
|
|
|
|
{
|
|
|
|
case SETTING_USE_AA_FILTER :
|
|
|
|
// enables / disabless anti-alias filter
|
2014-09-04 10:41:45 +00:00
|
|
|
pRateTransposer->enableAAFilter((value != 0) ? true : false);
|
|
|
|
return true;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
case SETTING_AA_FILTER_LENGTH :
|
|
|
|
// sets anti-alias filter length
|
|
|
|
pRateTransposer->getAAFilter()->setLength(value);
|
2014-09-04 10:41:45 +00:00
|
|
|
return true;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
case SETTING_USE_QUICKSEEK :
|
|
|
|
// enables / disables tempo routine quick seeking algorithm
|
2014-09-04 10:41:45 +00:00
|
|
|
pTDStretch->enableQuickSeek((value != 0) ? true : false);
|
|
|
|
return true;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
case SETTING_SEQUENCE_MS:
|
|
|
|
// change time-stretch sequence duration parameter
|
|
|
|
pTDStretch->setParameters(sampleRate, value, seekWindowMs, overlapMs);
|
2014-09-04 10:41:45 +00:00
|
|
|
return true;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
case SETTING_SEEKWINDOW_MS:
|
|
|
|
// change time-stretch seek window length parameter
|
|
|
|
pTDStretch->setParameters(sampleRate, sequenceMs, value, overlapMs);
|
2014-09-04 10:41:45 +00:00
|
|
|
return true;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
case SETTING_OVERLAP_MS:
|
|
|
|
// change time-stretch overlap length parameter
|
|
|
|
pTDStretch->setParameters(sampleRate, sequenceMs, seekWindowMs, value);
|
2014-09-04 10:41:45 +00:00
|
|
|
return true;
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
default :
|
2014-09-04 10:41:45 +00:00
|
|
|
return false;
|
2013-06-22 18:19:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Reads a setting controlling the processing system behaviour. See the
|
|
|
|
// 'SETTING_...' defines for available setting ID's.
|
|
|
|
//
|
|
|
|
// Returns the setting value.
|
|
|
|
int SoundTouch::getSetting(int settingId) const
|
|
|
|
{
|
|
|
|
int temp;
|
|
|
|
|
|
|
|
switch (settingId)
|
|
|
|
{
|
|
|
|
case SETTING_USE_AA_FILTER :
|
|
|
|
return (uint)pRateTransposer->isAAFilterEnabled();
|
|
|
|
|
|
|
|
case SETTING_AA_FILTER_LENGTH :
|
|
|
|
return pRateTransposer->getAAFilter()->getLength();
|
|
|
|
|
|
|
|
case SETTING_USE_QUICKSEEK :
|
2023-03-24 21:20:21 +00:00
|
|
|
return (uint)pTDStretch->isQuickSeekEnabled();
|
2013-06-22 18:19:27 +00:00
|
|
|
|
|
|
|
case SETTING_SEQUENCE_MS:
|
2023-03-24 21:20:21 +00:00
|
|
|
pTDStretch->getParameters(nullptr, &temp, nullptr, nullptr);
|
2013-06-22 18:19:27 +00:00
|
|
|
return temp;
|
|
|
|
|
|
|
|
case SETTING_SEEKWINDOW_MS:
|
2023-03-24 21:20:21 +00:00
|
|
|
pTDStretch->getParameters(nullptr, nullptr, &temp, nullptr);
|
2013-06-22 18:19:27 +00:00
|
|
|
return temp;
|
|
|
|
|
|
|
|
case SETTING_OVERLAP_MS:
|
2023-03-24 21:20:21 +00:00
|
|
|
pTDStretch->getParameters(nullptr, nullptr, nullptr, &temp);
|
2013-06-22 18:19:27 +00:00
|
|
|
return temp;
|
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
case SETTING_NOMINAL_INPUT_SEQUENCE :
|
|
|
|
{
|
|
|
|
int size = pTDStretch->getInputSampleReq();
|
|
|
|
|
|
|
|
#ifndef SOUNDTOUCH_PREVENT_CLICK_AT_RATE_CROSSOVER
|
|
|
|
if (rate <= 1.0)
|
|
|
|
{
|
|
|
|
// transposing done before timestretch, which impacts latency
|
|
|
|
return (int)(size * rate + 0.5);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SETTING_NOMINAL_OUTPUT_SEQUENCE :
|
|
|
|
{
|
|
|
|
int size = pTDStretch->getOutputBatchSize();
|
|
|
|
|
|
|
|
if (rate > 1.0)
|
|
|
|
{
|
|
|
|
// transposing done after timestretch, which impacts latency
|
|
|
|
return (int)(size / rate + 0.5);
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SETTING_INITIAL_LATENCY:
|
|
|
|
{
|
|
|
|
double latency = pTDStretch->getLatency();
|
|
|
|
int latency_tr = pRateTransposer->getLatency();
|
|
|
|
|
|
|
|
#ifndef SOUNDTOUCH_PREVENT_CLICK_AT_RATE_CROSSOVER
|
|
|
|
if (rate <= 1.0)
|
|
|
|
{
|
|
|
|
// transposing done before timestretch, which impacts latency
|
|
|
|
latency = (latency + latency_tr) * rate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
latency += (double)latency_tr / rate;
|
|
|
|
}
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
return (int)(latency + 0.5);
|
|
|
|
}
|
2013-06-22 18:19:27 +00:00
|
|
|
|
2023-03-24 21:20:21 +00:00
|
|
|
default :
|
2013-06-22 18:19:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Clears all the samples in the object's output and internal processing
|
|
|
|
// buffers.
|
|
|
|
void SoundTouch::clear()
|
|
|
|
{
|
2023-03-24 21:20:21 +00:00
|
|
|
samplesExpectedOut = 0;
|
|
|
|
samplesOutput = 0;
|
2013-06-22 18:19:27 +00:00
|
|
|
pRateTransposer->clear();
|
|
|
|
pTDStretch->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Returns number of samples currently unprocessed.
|
|
|
|
uint SoundTouch::numUnprocessedSamples() const
|
|
|
|
{
|
|
|
|
FIFOSamplePipe * psp;
|
|
|
|
if (pTDStretch)
|
|
|
|
{
|
|
|
|
psp = pTDStretch->getInput();
|
|
|
|
if (psp)
|
|
|
|
{
|
|
|
|
return psp->numSamples();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2015-12-28 12:07:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// Output samples from beginning of the sample buffer. Copies requested samples to
|
|
|
|
/// output buffer and removes them from the sample buffer. If there are less than
|
|
|
|
/// 'numsample' samples in the buffer, returns all that available.
|
|
|
|
///
|
|
|
|
/// \return Number of samples returned.
|
|
|
|
uint SoundTouch::receiveSamples(SAMPLETYPE *output, uint maxSamples)
|
|
|
|
{
|
2023-03-24 21:20:21 +00:00
|
|
|
uint ret = FIFOProcessor::receiveSamples(output, maxSamples);
|
|
|
|
samplesOutput += (long)ret;
|
|
|
|
return ret;
|
2015-12-28 12:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Adjusts book-keeping so that given number of samples are removed from beginning of the
|
|
|
|
/// sample buffer without copying them anywhere.
|
|
|
|
///
|
|
|
|
/// Used to reduce the number of samples in the buffer when accessing the sample buffer directly
|
|
|
|
/// with 'ptrBegin' function.
|
|
|
|
uint SoundTouch::receiveSamples(uint maxSamples)
|
|
|
|
{
|
2023-03-24 21:20:21 +00:00
|
|
|
uint ret = FIFOProcessor::receiveSamples(maxSamples);
|
|
|
|
samplesOutput += (long)ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Get ratio between input and output audio durations, useful for calculating
|
|
|
|
/// processed output duration: if you'll process a stream of N samples, then
|
|
|
|
/// you can expect to get out N * getInputOutputSampleRatio() samples.
|
|
|
|
double SoundTouch::getInputOutputSampleRatio()
|
|
|
|
{
|
|
|
|
return 1.0 / (tempo * rate);
|
2015-12-28 12:07:53 +00:00
|
|
|
}
|