123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- //////////////////////////////////////////////////////////////////////////////
- ///
- /// 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
- ///
- ////////////////////////////////////////////////////////////////////////////////
- //
- // Last changed : $Date: 2013-06-12 15:24:44 +0000 (Wed, 12 Jun 2013) $
- // File revision : $Revision: 4 $
- //
- // $Id: SoundTouch.cpp 171 2013-06-12 15:24:44Z oparviai $
- //
- ////////////////////////////////////////////////////////////////////////////////
- //
- // 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
- pRateTransposer = RateTransposer::newInstance();
- pTDStretch = TDStretch::newInstance();
- setOutPipe(pTDStretch);
- rate = tempo = 0;
- virtualPitch =
- virtualRate =
- virtualTempo = 1.0;
- calcEffectiveRateAndTempo();
- channels = 0;
- bSrateSet = FALSE;
- }
- 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)
- {
- /*if (numChannels != 1 && numChannels != 2)
- {
- //ST_THROW_RT_ERROR("Illegal number of channels");
- return;
- }*/
- 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.
- void SoundTouch::setRate(float newRate)
- {
- virtualRate = newRate;
- calcEffectiveRateAndTempo();
- }
- // Sets new rate control value as a difference in percents compared
- // to the original rate (-50 .. +100 %)
- void SoundTouch::setRateChange(float newRate)
- {
- virtualRate = 1.0f + 0.01f * newRate;
- calcEffectiveRateAndTempo();
- }
- // Sets new tempo control value. Normal tempo = 1.0, smaller values
- // represent slower tempo, larger faster tempo.
- void SoundTouch::setTempo(float newTempo)
- {
- virtualTempo = newTempo;
- calcEffectiveRateAndTempo();
- }
- // Sets new tempo control value as a difference in percents compared
- // to the original tempo (-50 .. +100 %)
- void SoundTouch::setTempoChange(float newTempo)
- {
- virtualTempo = 1.0f + 0.01f * newTempo;
- calcEffectiveRateAndTempo();
- }
- // Sets new pitch control value. Original pitch = 1.0, smaller values
- // represent lower pitches, larger values higher pitch.
- void SoundTouch::setPitch(float newPitch)
- {
- virtualPitch = newPitch;
- calcEffectiveRateAndTempo();
- }
- // Sets pitch change in octaves compared to the original pitch
- // (-1.00 .. +1.00)
- void SoundTouch::setPitchOctaves(float newPitch)
- {
- virtualPitch = (float)exp(0.69314718056f * newPitch);
- calcEffectiveRateAndTempo();
- }
- // Sets pitch change in semi-tones compared to the original pitch
- // (-12 .. +12)
- void SoundTouch::setPitchSemiTones(int newPitch)
- {
- setPitchOctaves((float)newPitch / 12.0f);
- }
- void SoundTouch::setPitchSemiTones(float newPitch)
- {
- setPitchOctaves(newPitch / 12.0f);
- }
- // Calculates 'effective' rate and tempo values from the
- // nominal control values.
- void SoundTouch::calcEffectiveRateAndTempo()
- {
- float oldTempo = tempo;
- float oldRate = rate;
- tempo = virtualTempo / virtualPitch;
- rate = virtualPitch * virtualRate;
- if (!TEST_FLOAT_EQUAL(rate,oldRate)) pRateTransposer->setRate(rate);
- if (!TEST_FLOAT_EQUAL(tempo, oldTempo)) pTDStretch->setTempo(tempo);
- #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
- pTDStretch->moveSamples(*pRateTransposer->getStore());
- 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)
- {
- bSrateSet = TRUE;
- // set sample rate, leave other tempo changer parameters as they are.
- pTDStretch->setParameters((int)srate);
- }
- // Adds 'numSamples' pcs of samples from the 'samples' memory position into
- // the input of the object.
- void SoundTouch::putSamples(const SAMPLETYPE *samples, uint nSamples)
- {
- if (bSrateSet == FALSE)
- {
- ST_THROW_RT_ERROR("SoundTouch : Sample rate not defined");
- }
- else if (channels == 0)
- {
- ST_THROW_RT_ERROR("SoundTouch : Number of channels not defined");
- }
- // Transpose the rate of the new samples if necessary
- /* Bypass the nominal setting - can introduce a click in sound when tempo/pitch control crosses the nominal value...
- if (rate == 1.0f)
- {
- // The rate value is same as the original, simply evaluate the tempo changer.
- assert(output == pTDStretch);
- if (pRateTransposer->isEmpty() == 0)
- {
- // yet flush the last samples in the pitch transposer buffer
- // (may happen if 'rate' changes from a non-zero value to zero)
- pTDStretch->moveSamples(*pRateTransposer);
- }
- pTDStretch->putSamples(samples, nSamples);
- }
- */
- #ifndef SOUNDTOUCH_PREVENT_CLICK_AT_RATE_CROSSOVER
- else if (rate <= 1.0f)
- {
- // 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;
- int nUnprocessed;
- int nOut;
- SAMPLETYPE *buff=(SAMPLETYPE*)malloc(64*channels*sizeof(SAMPLETYPE));
- // check how many samples still await processing, and scale
- // that by tempo & rate to get expected output sample count
- nUnprocessed = numUnprocessedSamples();
- nUnprocessed = (int)((double)nUnprocessed / (tempo * rate) + 0.5);
- nOut = numSamples(); // ready samples currently in buffer ...
- nOut += nUnprocessed; // ... and how many we expect there to be in the end
-
- memset(buff, 0, 64 * channels * sizeof(SAMPLETYPE));
- // "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
- // 8ksamples in any case)
- for (i = 0; i < 128; i ++)
- {
- putSamples(buff, 64);
- if ((int)numSamples() >= nOut)
- {
- // Enough new samples have appeared into the output!
- // As samples come from processing with bigger chunks, now truncate it
- // back to maximum "nOut" samples to improve duration accuracy
- adjustAmountOfSamples(nOut);
- // finish
- break;
- }
- }
- // Clear working buffers
- pRateTransposer->clear();
- pTDStretch->clearInput();
- // yet leave the 'tempoChanger' output intouched as that's where the
- // flushed samples are!
- free(buff);
- }
- // Changes a setting controlling the processing system behaviour. See the
- // 'SETTING_...' defines for available setting ID's.
- BOOL SoundTouch::setSetting(int settingId, int value)
- {
- 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
- pRateTransposer->enableAAFilter((value != 0) ? TRUE : FALSE);
- return TRUE;
- case SETTING_AA_FILTER_LENGTH :
- // sets anti-alias filter length
- pRateTransposer->getAAFilter()->setLength(value);
- return TRUE;
- case SETTING_USE_QUICKSEEK :
- // enables / disables tempo routine quick seeking algorithm
- pTDStretch->enableQuickSeek((value != 0) ? TRUE : FALSE);
- return TRUE;
- case SETTING_SEQUENCE_MS:
- // change time-stretch sequence duration parameter
- pTDStretch->setParameters(sampleRate, value, seekWindowMs, overlapMs);
- return TRUE;
- case SETTING_SEEKWINDOW_MS:
- // change time-stretch seek window length parameter
- pTDStretch->setParameters(sampleRate, sequenceMs, value, overlapMs);
- return TRUE;
- case SETTING_OVERLAP_MS:
- // change time-stretch overlap length parameter
- pTDStretch->setParameters(sampleRate, sequenceMs, seekWindowMs, value);
- return TRUE;
- default :
- return FALSE;
- }
- }
- // 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 :
- return (uint) pTDStretch->isQuickSeekEnabled();
- case SETTING_SEQUENCE_MS:
- pTDStretch->getParameters(NULL, &temp, NULL, NULL);
- return temp;
- case SETTING_SEEKWINDOW_MS:
- pTDStretch->getParameters(NULL, NULL, &temp, NULL);
- return temp;
- case SETTING_OVERLAP_MS:
- pTDStretch->getParameters(NULL, NULL, NULL, &temp);
- return temp;
- case SETTING_NOMINAL_INPUT_SEQUENCE :
- return pTDStretch->getInputSampleReq();
- case SETTING_NOMINAL_OUTPUT_SEQUENCE :
- return pTDStretch->getOutputBatchSize();
- default :
- return 0;
- }
- }
- // Clears all the samples in the object's output and internal processing
- // buffers.
- void SoundTouch::clear()
- {
- 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;
- }
|