|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2013 - Raw Material Software Ltd.
-
- Permission is granted to use this software under the terms of either:
- a) the GPL v2 (or any later version)
- b) the Affero GPL v3
-
- Details of these licenses can be found at: www.gnu.org/licenses
-
- JUCE 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 General Public License for more details.
-
- ------------------------------------------------------------------------------
-
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.juce.com for more information.
-
- ==============================================================================
- */
-
- AudioSampleBuffer::AudioSampleBuffer() noexcept
- : numChannels (0), size (0), allocatedBytes (0),
- channels (static_cast<float**> (preallocatedChannelSpace)),
- isClear (false)
- {
- }
-
- AudioSampleBuffer::AudioSampleBuffer (const int numChans,
- const int numSamples) noexcept
- : numChannels (numChans),
- size (numSamples)
- {
- jassert (numSamples >= 0);
- jassert (numChans >= 0);
-
- allocateData();
- }
-
- AudioSampleBuffer::AudioSampleBuffer (const AudioSampleBuffer& other) noexcept
- : numChannels (other.numChannels),
- size (other.size),
- allocatedBytes (other.allocatedBytes)
- {
- if (allocatedBytes == 0)
- {
- allocateChannels (other.channels, 0);
- }
- else
- {
- allocateData();
-
- if (other.isClear)
- {
- clear();
- }
- else
- {
- for (int i = 0; i < numChannels; ++i)
- FloatVectorOperations::copy (channels[i], other.channels[i], size);
- }
- }
- }
-
- void AudioSampleBuffer::allocateData()
- {
- const size_t channelListSize = sizeof (float*) * (size_t) (numChannels + 1);
- allocatedBytes = (size_t) numChannels * (size_t) size * sizeof (float) + channelListSize + 32;
- allocatedData.malloc (allocatedBytes);
- channels = reinterpret_cast<float**> (allocatedData.getData());
-
- float* chan = (float*) (allocatedData + channelListSize);
- for (int i = 0; i < numChannels; ++i)
- {
- channels[i] = chan;
- chan += size;
- }
-
- channels [numChannels] = nullptr;
- isClear = false;
- }
-
- AudioSampleBuffer::AudioSampleBuffer (float* const* dataToReferTo,
- const int numChans,
- const int numSamples) noexcept
- : numChannels (numChans),
- size (numSamples),
- allocatedBytes (0)
- {
- jassert (dataToReferTo != nullptr);
- jassert (numChans >= 0 && numSamples >= 0);
- allocateChannels (dataToReferTo, 0);
- }
-
- AudioSampleBuffer::AudioSampleBuffer (float* const* dataToReferTo,
- const int numChans,
- const int startSample,
- const int numSamples) noexcept
- : numChannels (numChans),
- size (numSamples),
- allocatedBytes (0),
- isClear (false)
- {
- jassert (dataToReferTo != nullptr);
- jassert (numChans >= 0 && startSample >= 0 && numSamples >= 0);
- allocateChannels (dataToReferTo, startSample);
- }
-
- void AudioSampleBuffer::setDataToReferTo (float** dataToReferTo,
- const int newNumChannels,
- const int newNumSamples) noexcept
- {
- jassert (dataToReferTo != nullptr);
- jassert (newNumChannels >= 0 && newNumSamples >= 0);
-
- allocatedBytes = 0;
- allocatedData.free();
-
- numChannels = newNumChannels;
- size = newNumSamples;
-
- allocateChannels (dataToReferTo, 0);
- jassert (! isClear);
- }
-
- void AudioSampleBuffer::allocateChannels (float* const* const dataToReferTo, int offset)
- {
- jassert (offset >= 0);
-
- // (try to avoid doing a malloc here, as that'll blow up things like Pro-Tools)
- if (numChannels < (int) numElementsInArray (preallocatedChannelSpace))
- {
- channels = static_cast<float**> (preallocatedChannelSpace);
- }
- else
- {
- allocatedData.malloc ((size_t) numChannels + 1, sizeof (float*));
- channels = reinterpret_cast<float**> (allocatedData.getData());
- }
-
- for (int i = 0; i < numChannels; ++i)
- {
- // you have to pass in the same number of valid pointers as numChannels
- jassert (dataToReferTo[i] != nullptr);
-
- channels[i] = dataToReferTo[i] + offset;
- }
-
- channels [numChannels] = nullptr;
- isClear = false;
- }
-
- AudioSampleBuffer& AudioSampleBuffer::operator= (const AudioSampleBuffer& other) noexcept
- {
- if (this != &other)
- {
- setSize (other.getNumChannels(), other.getNumSamples(), false, false, false);
-
- if (other.isClear)
- {
- clear();
- }
- else
- {
- isClear = false;
-
- for (int i = 0; i < numChannels; ++i)
- FloatVectorOperations::copy (channels[i], other.channels[i], size);
- }
- }
-
- return *this;
- }
-
- AudioSampleBuffer::~AudioSampleBuffer() noexcept
- {
- }
-
- void AudioSampleBuffer::setSize (const int newNumChannels,
- const int newNumSamples,
- const bool keepExistingContent,
- const bool clearExtraSpace,
- const bool avoidReallocating) noexcept
- {
- jassert (newNumChannels >= 0);
- jassert (newNumSamples >= 0);
-
- if (newNumSamples != size || newNumChannels != numChannels)
- {
- const size_t allocatedSamplesPerChannel = ((size_t) newNumSamples + 3) & ~3u;
- const size_t channelListSize = ((sizeof (float*) * (size_t) (newNumChannels + 1)) + 15) & ~15u;
- const size_t newTotalBytes = ((size_t) newNumChannels * (size_t) allocatedSamplesPerChannel * sizeof (float))
- + channelListSize + 32;
-
- if (keepExistingContent)
- {
- HeapBlock<char, true> newData;
- newData.allocate (newTotalBytes, clearExtraSpace || isClear);
-
- const size_t numSamplesToCopy = (size_t) jmin (newNumSamples, size);
-
- float** const newChannels = reinterpret_cast<float**> (newData.getData());
- float* newChan = reinterpret_cast<float*> (newData + channelListSize);
-
- for (int j = 0; j < newNumChannels; ++j)
- {
- newChannels[j] = newChan;
- newChan += allocatedSamplesPerChannel;
- }
-
- if (! isClear)
- {
- const int numChansToCopy = jmin (numChannels, newNumChannels);
- for (int i = 0; i < numChansToCopy; ++i)
- FloatVectorOperations::copy (newChannels[i], channels[i], (int) numSamplesToCopy);
- }
-
- allocatedData.swapWith (newData);
- allocatedBytes = newTotalBytes;
- channels = newChannels;
- }
- else
- {
- if (avoidReallocating && allocatedBytes >= newTotalBytes)
- {
- if (clearExtraSpace || isClear)
- allocatedData.clear (newTotalBytes);
- }
- else
- {
- allocatedBytes = newTotalBytes;
- allocatedData.allocate (newTotalBytes, clearExtraSpace || isClear);
- channels = reinterpret_cast<float**> (allocatedData.getData());
- }
-
- float* chan = reinterpret_cast<float*> (allocatedData + channelListSize);
- for (int i = 0; i < newNumChannels; ++i)
- {
- channels[i] = chan;
- chan += allocatedSamplesPerChannel;
- }
- }
-
- channels [newNumChannels] = 0;
- size = newNumSamples;
- numChannels = newNumChannels;
- }
- }
-
- void AudioSampleBuffer::clear() noexcept
- {
- if (! isClear)
- {
- for (int i = 0; i < numChannels; ++i)
- FloatVectorOperations::clear (channels[i], size);
-
- isClear = true;
- }
- }
-
- void AudioSampleBuffer::clear (const int startSample,
- const int numSamples) noexcept
- {
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (! isClear)
- {
- if (startSample == 0 && numSamples == size)
- isClear = true;
-
- for (int i = 0; i < numChannels; ++i)
- FloatVectorOperations::clear (channels[i] + startSample, numSamples);
- }
- }
-
- void AudioSampleBuffer::clear (const int channel,
- const int startSample,
- const int numSamples) noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (! isClear)
- FloatVectorOperations::clear (channels [channel] + startSample, numSamples);
- }
-
- float AudioSampleBuffer::getSample (int channel, int index) const noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (isPositiveAndBelow (index, size));
- return *(channels [channel] + index);
- }
-
- void AudioSampleBuffer::setSample (int channel, int index, float newValue) noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (isPositiveAndBelow (index, size));
- *(channels [channel] + index) = newValue;
- isClear = false;
- }
-
- void AudioSampleBuffer::addSample (int channel, int index, float valueToAdd) noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (isPositiveAndBelow (index, size));
- *(channels [channel] + index) += valueToAdd;
- isClear = false;
- }
-
- void AudioSampleBuffer::applyGain (const int channel,
- const int startSample,
- int numSamples,
- const float gain) noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (gain != 1.0f && ! isClear)
- {
- float* const d = channels [channel] + startSample;
-
- if (gain == 0.0f)
- FloatVectorOperations::clear (d, numSamples);
- else
- FloatVectorOperations::multiply (d, gain, numSamples);
- }
- }
-
- void AudioSampleBuffer::applyGainRamp (const int channel,
- const int startSample,
- int numSamples,
- float startGain,
- float endGain) noexcept
- {
- if (! isClear)
- {
- if (startGain == endGain)
- {
- applyGain (channel, startSample, numSamples, startGain);
- }
- else
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- const float increment = (endGain - startGain) / numSamples;
- float* d = channels [channel] + startSample;
-
- while (--numSamples >= 0)
- {
- *d++ *= startGain;
- startGain += increment;
- }
- }
- }
- }
-
- void AudioSampleBuffer::applyGain (int startSample, int numSamples, float gain) noexcept
- {
- for (int i = 0; i < numChannels; ++i)
- applyGain (i, startSample, numSamples, gain);
- }
-
- void AudioSampleBuffer::applyGain (const float gain) noexcept
- {
- applyGain (0, size, gain);
- }
-
- void AudioSampleBuffer::applyGainRamp (int startSample, int numSamples,
- float startGain, float endGain) noexcept
- {
- for (int i = 0; i < numChannels; ++i)
- applyGainRamp (i, startSample, numSamples, startGain, endGain);
- }
-
- void AudioSampleBuffer::addFrom (const int destChannel,
- const int destStartSample,
- const AudioSampleBuffer& source,
- const int sourceChannel,
- const int sourceStartSample,
- int numSamples,
- const float gain) noexcept
- {
- jassert (&source != this || sourceChannel != destChannel);
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (isPositiveAndBelow (sourceChannel, source.numChannels));
- jassert (sourceStartSample >= 0 && sourceStartSample + numSamples <= source.size);
-
- if (gain != 0.0f && numSamples > 0 && ! source.isClear)
- {
- float* const d = channels [destChannel] + destStartSample;
- const float* const s = source.channels [sourceChannel] + sourceStartSample;
-
- if (isClear)
- {
- isClear = false;
-
- if (gain != 1.0f)
- FloatVectorOperations::copyWithMultiply (d, s, gain, numSamples);
- else
- FloatVectorOperations::copy (d, s, numSamples);
- }
- else
- {
- if (gain != 1.0f)
- FloatVectorOperations::addWithMultiply (d, s, gain, numSamples);
- else
- FloatVectorOperations::add (d, s, numSamples);
- }
- }
- }
-
- void AudioSampleBuffer::addFrom (const int destChannel,
- const int destStartSample,
- const float* source,
- int numSamples,
- const float gain) noexcept
- {
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (source != nullptr);
-
- if (gain != 0.0f && numSamples > 0)
- {
- float* const d = channels [destChannel] + destStartSample;
-
- if (isClear)
- {
- isClear = false;
-
- if (gain != 1.0f)
- FloatVectorOperations::copyWithMultiply (d, source, gain, numSamples);
- else
- FloatVectorOperations::copy (d, source, numSamples);
- }
- else
- {
- if (gain != 1.0f)
- FloatVectorOperations::addWithMultiply (d, source, gain, numSamples);
- else
- FloatVectorOperations::add (d, source, numSamples);
- }
- }
- }
-
- void AudioSampleBuffer::addFromWithRamp (const int destChannel,
- const int destStartSample,
- const float* source,
- int numSamples,
- float startGain,
- const float endGain) noexcept
- {
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (source != nullptr);
-
- if (startGain == endGain)
- {
- addFrom (destChannel, destStartSample, source, numSamples, startGain);
- }
- else
- {
- if (numSamples > 0 && (startGain != 0.0f || endGain != 0.0f))
- {
- isClear = false;
- const float increment = (endGain - startGain) / numSamples;
- float* d = channels [destChannel] + destStartSample;
-
- while (--numSamples >= 0)
- {
- *d++ += startGain * *source++;
- startGain += increment;
- }
- }
- }
- }
-
- void AudioSampleBuffer::copyFrom (const int destChannel,
- const int destStartSample,
- const AudioSampleBuffer& source,
- const int sourceChannel,
- const int sourceStartSample,
- int numSamples) noexcept
- {
- jassert (&source != this || sourceChannel != destChannel);
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (isPositiveAndBelow (sourceChannel, source.numChannels));
- jassert (sourceStartSample >= 0 && sourceStartSample + numSamples <= source.size);
-
- if (numSamples > 0)
- {
- if (source.isClear)
- {
- if (! isClear)
- FloatVectorOperations::clear (channels [destChannel] + destStartSample, numSamples);
- }
- else
- {
- isClear = false;
- FloatVectorOperations::copy (channels [destChannel] + destStartSample,
- source.channels [sourceChannel] + sourceStartSample,
- numSamples);
- }
- }
- }
-
- void AudioSampleBuffer::copyFrom (const int destChannel,
- const int destStartSample,
- const float* source,
- int numSamples) noexcept
- {
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (source != nullptr);
-
- if (numSamples > 0)
- {
- isClear = false;
- FloatVectorOperations::copy (channels [destChannel] + destStartSample, source, numSamples);
- }
- }
-
- void AudioSampleBuffer::copyFrom (const int destChannel,
- const int destStartSample,
- const float* source,
- int numSamples,
- const float gain) noexcept
- {
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (source != nullptr);
-
- if (numSamples > 0)
- {
- float* const d = channels [destChannel] + destStartSample;
-
- if (gain != 1.0f)
- {
- if (gain == 0)
- {
- if (! isClear)
- FloatVectorOperations::clear (d, numSamples);
- }
- else
- {
- isClear = false;
- FloatVectorOperations::copyWithMultiply (d, source, gain, numSamples);
- }
- }
- else
- {
- isClear = false;
- FloatVectorOperations::copy (d, source, numSamples);
- }
- }
- }
-
- void AudioSampleBuffer::copyFromWithRamp (const int destChannel,
- const int destStartSample,
- const float* source,
- int numSamples,
- float startGain,
- float endGain) noexcept
- {
- jassert (isPositiveAndBelow (destChannel, numChannels));
- jassert (destStartSample >= 0 && destStartSample + numSamples <= size);
- jassert (source != nullptr);
-
- if (startGain == endGain)
- {
- copyFrom (destChannel, destStartSample, source, numSamples, startGain);
- }
- else
- {
- if (numSamples > 0 && (startGain != 0.0f || endGain != 0.0f))
- {
- isClear = false;
- const float increment = (endGain - startGain) / numSamples;
- float* d = channels [destChannel] + destStartSample;
-
- while (--numSamples >= 0)
- {
- *d++ = startGain * *source++;
- startGain += increment;
- }
- }
- }
- }
-
- void AudioSampleBuffer::reverse (int channel, int startSample, int numSamples) const noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (! isClear)
- std::reverse (channels[channel] + startSample,
- channels[channel] + startSample + numSamples);
- }
-
- void AudioSampleBuffer::reverse (int startSample, int numSamples) const noexcept
- {
- for (int i = 0; i < numChannels; ++i)
- reverse (i, startSample, numSamples);
- }
-
- Range<float> AudioSampleBuffer::findMinMax (const int channel,
- const int startSample,
- int numSamples) const noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (isClear)
- return Range<float>();
-
- return FloatVectorOperations::findMinAndMax (channels [channel] + startSample, numSamples);
- }
-
- float AudioSampleBuffer::getMagnitude (const int channel,
- const int startSample,
- const int numSamples) const noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (isClear)
- return 0.0f;
-
- const Range<float> r (findMinMax (channel, startSample, numSamples));
-
- return jmax (r.getStart(), -r.getStart(), r.getEnd(), -r.getEnd());
- }
-
- float AudioSampleBuffer::getMagnitude (int startSample, int numSamples) const noexcept
- {
- float mag = 0.0f;
-
- if (! isClear)
- for (int i = 0; i < numChannels; ++i)
- mag = jmax (mag, getMagnitude (i, startSample, numSamples));
-
- return mag;
- }
-
- float AudioSampleBuffer::getRMSLevel (const int channel,
- const int startSample,
- const int numSamples) const noexcept
- {
- jassert (isPositiveAndBelow (channel, numChannels));
- jassert (startSample >= 0 && startSample + numSamples <= size);
-
- if (numSamples <= 0 || channel < 0 || channel >= numChannels || isClear)
- return 0.0f;
-
- const float* const data = channels [channel] + startSample;
- double sum = 0.0;
-
- for (int i = 0; i < numSamples; ++i)
- {
- const float sample = data [i];
- sum += sample * sample;
- }
-
- return (float) std::sqrt (sum / numSamples);
- }
|