openshot-audio  0.1.2
Public Member Functions | Public Attributes | List of all members
AudioSampleBuffer Class Reference

#include <juce_AudioSampleBuffer.h>

Public Member Functions

 AudioSampleBuffer () noexcept
 
 AudioSampleBuffer (int numChannels, int numSamples) noexcept
 
 AudioSampleBuffer (float *const *dataToReferTo, int numChannels, int numSamples) noexcept
 
 AudioSampleBuffer (float *const *dataToReferTo, int numChannels, int startSample, int numSamples) noexcept
 
 AudioSampleBuffer (const AudioSampleBuffer &) noexcept
 
AudioSampleBufferoperator= (const AudioSampleBuffer &) noexcept
 
 ~AudioSampleBuffer () noexcept
 
int getNumChannels () const noexcept
 
int getNumSamples () const noexcept
 
const float * getReadPointer (int channelNumber) const noexcept
 
const float * getReadPointer (int channelNumber, int sampleIndex) const noexcept
 
float * getWritePointer (int channelNumber) noexcept
 
float * getWritePointer (int channelNumber, int sampleIndex) noexcept
 
const float ** getArrayOfReadPointers () const noexcept
 
float ** getArrayOfWritePointers () noexcept
 
void setSize (int newNumChannels, int newNumSamples, bool keepExistingContent=false, bool clearExtraSpace=false, bool avoidReallocating=false) noexcept
 
void setDataToReferTo (float **dataToReferTo, int numChannels, int numSamples) noexcept
 
void clear () noexcept
 
void clear (int startSample, int numSamples) noexcept
 
void clear (int channel, int startSample, int numSamples) noexcept
 
bool hasBeenCleared () const noexcept
 
float getSample (int channel, int sampleIndex) const noexcept
 
void setSample (int destChannel, int destSample, float newValue) noexcept
 
void addSample (int destChannel, int destSample, float valueToAdd) noexcept
 
void applyGain (int channel, int startSample, int numSamples, float gain) noexcept
 
void applyGain (int startSample, int numSamples, float gain) noexcept
 
void applyGain (float gain) noexcept
 
void applyGainRamp (int channel, int startSample, int numSamples, float startGain, float endGain) noexcept
 
void applyGainRamp (int startSample, int numSamples, float startGain, float endGain) noexcept
 
void addFrom (int destChannel, int destStartSample, const AudioSampleBuffer &source, int sourceChannel, int sourceStartSample, int numSamples, float gainToApplyToSource=1.0f) noexcept
 
void addFrom (int destChannel, int destStartSample, const float *source, int numSamples, float gainToApplyToSource=1.0f) noexcept
 
void addFromWithRamp (int destChannel, int destStartSample, const float *source, int numSamples, float startGain, float endGain) noexcept
 
void copyFrom (int destChannel, int destStartSample, const AudioSampleBuffer &source, int sourceChannel, int sourceStartSample, int numSamples) noexcept
 
void copyFrom (int destChannel, int destStartSample, const float *source, int numSamples) noexcept
 
void copyFrom (int destChannel, int destStartSample, const float *source, int numSamples, float gain) noexcept
 
void copyFromWithRamp (int destChannel, int destStartSample, const float *source, int numSamples, float startGain, float endGain) noexcept
 
Range< float > findMinMax (int channel, int startSample, int numSamples) const noexcept
 
float getMagnitude (int channel, int startSample, int numSamples) const noexcept
 
float getMagnitude (int startSample, int numSamples) const noexcept
 
float getRMSLevel (int channel, int startSample, int numSamples) const noexcept
 
void reverse (int channel, int startSample, int numSamples) const noexcept
 
void reverse (int startSample, int numSamples) const noexcept
 
 JUCE_DEPRECATED_WITH_BODY (const float *getSampleData(int channel) const, { return getReadPointer(channel);}) JUCE_DEPRECATED_WITH_BODY(const float *getSampleData(int channel
 
int index JUCE_DEPRECATED_WITH_BODY (float *getSampleData(int channel), { return getWritePointer(channel);}) JUCE_DEPRECATED_WITH_BODY(float *getSampleData(int channel
 
int index int JUCE_DEPRECATED_WITH_BODY (const float **getArrayOfChannels() const, { return getArrayOfReadPointers();}) JUCE_DEPRECATED_WITH_BODY(float **getArrayOfChannels()
 

Public Attributes

int index const
 
int index int index
 

Detailed Description

A multi-channel buffer of 32-bit floating point audio samples.

Constructor & Destructor Documentation

◆ AudioSampleBuffer() [1/5]

AudioSampleBuffer::AudioSampleBuffer ( )
noexcept

Creates an empty buffer with 0 channels and 0 length.

◆ AudioSampleBuffer() [2/5]

AudioSampleBuffer::AudioSampleBuffer ( int  numChannels,
int  numSamples 
)
noexcept

Creates a buffer with a specified number of channels and samples.

The contents of the buffer will initially be undefined, so use clear() to set all the samples to zero.

The buffer will allocate its memory internally, and this will be released when the buffer is deleted. If the memory can't be allocated, this will throw a std::bad_alloc exception.

◆ AudioSampleBuffer() [3/5]

AudioSampleBuffer::AudioSampleBuffer ( float *const dataToReferTo,
int  numChannels,
int  numSamples 
)
noexcept

Creates a buffer using a pre-allocated block of memory.

Note that if the buffer is resized or its number of channels is changed, it will re-allocate memory internally and copy the existing data to this new area, so it will then stop directly addressing this memory.

Parameters
dataToReferToa pre-allocated array containing pointers to the data for each channel that should be used by this buffer. The buffer will only refer to this memory, it won't try to delete it when the buffer is deleted or resized.
numChannelsthe number of channels to use - this must correspond to the number of elements in the array passed in
numSamplesthe number of samples to use - this must correspond to the size of the arrays passed in

◆ AudioSampleBuffer() [4/5]

AudioSampleBuffer::AudioSampleBuffer ( float *const dataToReferTo,
int  numChannels,
int  startSample,
int  numSamples 
)
noexcept

Creates a buffer using a pre-allocated block of memory.

Note that if the buffer is resized or its number of channels is changed, it will re-allocate memory internally and copy the existing data to this new area, so it will then stop directly addressing this memory.

Parameters
dataToReferToa pre-allocated array containing pointers to the data for each channel that should be used by this buffer. The buffer will only refer to this memory, it won't try to delete it when the buffer is deleted or resized.
numChannelsthe number of channels to use - this must correspond to the number of elements in the array passed in
startSamplethe offset within the arrays at which the data begins
numSamplesthe number of samples to use - this must correspond to the size of the arrays passed in

◆ AudioSampleBuffer() [5/5]

AudioSampleBuffer::AudioSampleBuffer ( const AudioSampleBuffer other)
noexcept

Copies another buffer.

This buffer will make its own copy of the other's data, unless the buffer was created using an external data buffer, in which case boths buffers will just point to the same shared block of data.

◆ ~AudioSampleBuffer()

AudioSampleBuffer::~AudioSampleBuffer ( )
noexcept

Destructor. This will free any memory allocated by the buffer.

Member Function Documentation

◆ addFrom() [1/2]

void AudioSampleBuffer::addFrom ( int  destChannel,
int  destStartSample,
const AudioSampleBuffer source,
int  sourceChannel,
int  sourceStartSample,
int  numSamples,
float  gainToApplyToSource = 1.0f 
)
noexcept

Adds samples from another buffer to this one.

Parameters
destChannelthe channel within this buffer to add the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source buffer to add from
sourceChannelthe channel within the source buffer to read from
sourceStartSamplethe offset within the source buffer's channel to start reading samples from
numSamplesthe number of samples to process
gainToApplyToSourcean optional gain to apply to the source samples before they are added to this buffer's samples
See also
copyFrom

◆ addFrom() [2/2]

void AudioSampleBuffer::addFrom ( int  destChannel,
int  destStartSample,
const float *  source,
int  numSamples,
float  gainToApplyToSource = 1.0f 
)
noexcept

Adds samples from an array of floats to one of the channels.

Parameters
destChannelthe channel within this buffer to add the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source data to use
numSamplesthe number of samples to process
gainToApplyToSourcean optional gain to apply to the source samples before they are added to this buffer's samples
See also
copyFrom

◆ addFromWithRamp()

void AudioSampleBuffer::addFromWithRamp ( int  destChannel,
int  destStartSample,
const float *  source,
int  numSamples,
float  startGain,
float  endGain 
)
noexcept

Adds samples from an array of floats, applying a gain ramp to them.

Parameters
destChannelthe channel within this buffer to add the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source data to use
numSamplesthe number of samples to process
startGainthe gain to apply to the first sample (this is multiplied with the source samples before they are added to this buffer)
endGainthe gain to apply to the final sample. The gain is linearly interpolated between the first and last samples.

◆ addSample()

void AudioSampleBuffer::addSample ( int  destChannel,
int  destSample,
float  valueToAdd 
)
noexcept

Adds a value to a sample in the buffer. The channel and index are not checked - they are expected to be in-range. If not, an assertion will be thrown, but in a release build, you're into 'undefined behaviour' territory.

◆ applyGain() [1/3]

void AudioSampleBuffer::applyGain ( int  channel,
int  startSample,
int  numSamples,
float  gain 
)
noexcept

Applies a gain multiple to a region of one channel.

For speed, this doesn't check whether the channel and sample number are in-range, so be careful!

◆ applyGain() [2/3]

void AudioSampleBuffer::applyGain ( int  startSample,
int  numSamples,
float  gain 
)
noexcept

Applies a gain multiple to a region of all the channels.

For speed, this doesn't check whether the sample numbers are in-range, so be careful!

◆ applyGain() [3/3]

void AudioSampleBuffer::applyGain ( float  gain)
noexcept

Applies a gain multiple to all the audio data.

◆ applyGainRamp() [1/2]

void AudioSampleBuffer::applyGainRamp ( int  channel,
int  startSample,
int  numSamples,
float  startGain,
float  endGain 
)
noexcept

Applies a range of gains to a region of a channel.

The gain that is applied to each sample will vary from startGain on the first sample to endGain on the last Sample, so it can be used to do basic fades.

For speed, this doesn't check whether the sample numbers are in-range, so be careful!

◆ applyGainRamp() [2/2]

void AudioSampleBuffer::applyGainRamp ( int  startSample,
int  numSamples,
float  startGain,
float  endGain 
)
noexcept

Applies a range of gains to a region of all channels.

The gain that is applied to each sample will vary from startGain on the first sample to endGain on the last Sample, so it can be used to do basic fades.

For speed, this doesn't check whether the sample numbers are in-range, so be careful!

◆ clear() [1/3]

void AudioSampleBuffer::clear ( )
noexcept

Clears all the samples in all channels.

◆ clear() [2/3]

void AudioSampleBuffer::clear ( int  startSample,
int  numSamples 
)
noexcept

Clears a specified region of all the channels.

For speed, this doesn't check whether the channel and sample number are in-range, so be careful!

◆ clear() [3/3]

void AudioSampleBuffer::clear ( int  channel,
int  startSample,
int  numSamples 
)
noexcept

Clears a specified region of just one channel.

For speed, this doesn't check whether the channel and sample number are in-range, so be careful!

◆ copyFrom() [1/3]

void AudioSampleBuffer::copyFrom ( int  destChannel,
int  destStartSample,
const AudioSampleBuffer source,
int  sourceChannel,
int  sourceStartSample,
int  numSamples 
)
noexcept

Copies samples from another buffer to this one.

Parameters
destChannelthe channel within this buffer to copy the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source buffer to read from
sourceChannelthe channel within the source buffer to read from
sourceStartSamplethe offset within the source buffer's channel to start reading samples from
numSamplesthe number of samples to process
See also
addFrom

◆ copyFrom() [2/3]

void AudioSampleBuffer::copyFrom ( int  destChannel,
int  destStartSample,
const float *  source,
int  numSamples 
)
noexcept

Copies samples from an array of floats into one of the channels.

Parameters
destChannelthe channel within this buffer to copy the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source buffer to read from
numSamplesthe number of samples to process
See also
addFrom

◆ copyFrom() [3/3]

void AudioSampleBuffer::copyFrom ( int  destChannel,
int  destStartSample,
const float *  source,
int  numSamples,
float  gain 
)
noexcept

Copies samples from an array of floats into one of the channels, applying a gain to it.

Parameters
destChannelthe channel within this buffer to copy the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source buffer to read from
numSamplesthe number of samples to process
gainthe gain to apply
See also
addFrom

◆ copyFromWithRamp()

void AudioSampleBuffer::copyFromWithRamp ( int  destChannel,
int  destStartSample,
const float *  source,
int  numSamples,
float  startGain,
float  endGain 
)
noexcept

Copies samples from an array of floats into one of the channels, applying a gain ramp.

Parameters
destChannelthe channel within this buffer to copy the samples to
destStartSamplethe start sample within this buffer's channel
sourcethe source buffer to read from
numSamplesthe number of samples to process
startGainthe gain to apply to the first sample (this is multiplied with the source samples before they are copied to this buffer)
endGainthe gain to apply to the final sample. The gain is linearly interpolated between the first and last samples.
See also
addFrom

◆ findMinMax()

Range< float > AudioSampleBuffer::findMinMax ( int  channel,
int  startSample,
int  numSamples 
) const
noexcept

Returns a Range indicating the lowest and highest sample values in a given section.

Parameters
channelthe channel to read from
startSamplethe start sample within the channel
numSamplesthe number of samples to check

◆ getArrayOfReadPointers()

const float** AudioSampleBuffer::getArrayOfReadPointers ( ) const
inlinenoexcept

Returns an array of pointers to the channels in the buffer.

Don't modify any of the pointers that are returned, and bear in mind that these will become invalid if the buffer is resized.

◆ getArrayOfWritePointers()

float** AudioSampleBuffer::getArrayOfWritePointers ( )
inlinenoexcept

Returns an array of pointers to the channels in the buffer.

Don't modify any of the pointers that are returned, and bear in mind that these will become invalid if the buffer is resized.

◆ getMagnitude() [1/2]

float AudioSampleBuffer::getMagnitude ( int  channel,
int  startSample,
int  numSamples 
) const
noexcept

Finds the highest absolute sample value within a region of a channel.

◆ getMagnitude() [2/2]

float AudioSampleBuffer::getMagnitude ( int  startSample,
int  numSamples 
) const
noexcept

Finds the highest absolute sample value within a region on all channels.

◆ getNumChannels()

int AudioSampleBuffer::getNumChannels ( ) const
inlinenoexcept

Returns the number of channels of audio data that this buffer contains.

See also
getSampleData

◆ getNumSamples()

int AudioSampleBuffer::getNumSamples ( ) const
inlinenoexcept

Returns the number of samples allocated in each of the buffer's channels.

See also
getSampleData

◆ getReadPointer() [1/2]

const float* AudioSampleBuffer::getReadPointer ( int  channelNumber) const
inlinenoexcept

Returns a pointer to an array of read-only samples in one of the buffer's channels. For speed, this doesn't check whether the channel number is out of range, so be careful when using it! If you need to write to the data, do NOT call this method and const_cast the result! Instead, you must call getWritePointer so that the buffer knows you're planning on modifying the data.

◆ getReadPointer() [2/2]

const float* AudioSampleBuffer::getReadPointer ( int  channelNumber,
int  sampleIndex 
) const
inlinenoexcept

Returns a pointer to an array of read-only samples in one of the buffer's channels. For speed, this doesn't check whether the channel number or index are out of range, so be careful when using it! If you need to write to the data, do NOT call this method and const_cast the result! Instead, you must call getWritePointer so that the buffer knows you're planning on modifying the data.

◆ getRMSLevel()

float AudioSampleBuffer::getRMSLevel ( int  channel,
int  startSample,
int  numSamples 
) const
noexcept

Returns the root mean squared level for a region of a channel.

◆ getSample()

float AudioSampleBuffer::getSample ( int  channel,
int  sampleIndex 
) const
noexcept

Returns a sample from the buffer. The channel and index are not checked - they are expected to be in-range. If not, an assertion will be thrown, but in a release build, you're into 'undefined behaviour' territory.

◆ getWritePointer() [1/2]

float* AudioSampleBuffer::getWritePointer ( int  channelNumber)
inlinenoexcept

Returns a writeable pointer to one of the buffer's channels. For speed, this doesn't check whether the channel number is out of range, so be careful when using it! Note that if you're not planning on writing to the data, you should always use getReadPointer instead.

◆ getWritePointer() [2/2]

float* AudioSampleBuffer::getWritePointer ( int  channelNumber,
int  sampleIndex 
)
inlinenoexcept

Returns a writeable pointer to one of the buffer's channels. For speed, this doesn't check whether the channel number or index are out of range, so be careful when using it! Note that if you're not planning on writing to the data, you should use getReadPointer instead.

◆ hasBeenCleared()

bool AudioSampleBuffer::hasBeenCleared ( ) const
inlinenoexcept

Returns true if the buffer has been entirely cleared. Note that this does not actually measure the contents of the buffer - it simply returns a flag that is set when the buffer is cleared, and which is reset whenever functions like getWritePointer() are invoked. That means the method does not take any time, but it may return false negatives when in fact the buffer is still empty.

◆ JUCE_DEPRECATED_WITH_BODY() [1/3]

AudioSampleBuffer::JUCE_DEPRECATED_WITH_BODY ( const float *getSampleData(int channel)  const,
{ return getReadPointer(channel);}   
) const

◆ JUCE_DEPRECATED_WITH_BODY() [2/3]

int index AudioSampleBuffer::JUCE_DEPRECATED_WITH_BODY ( float *  getSampleDataint channel,
{ return getWritePointer(channel);}   
)

◆ JUCE_DEPRECATED_WITH_BODY() [3/3]

int index int AudioSampleBuffer::JUCE_DEPRECATED_WITH_BODY ( const float **getArrayOfChannels()  const,
{ return getArrayOfReadPointers();}   
)

◆ operator=()

AudioSampleBuffer & AudioSampleBuffer::operator= ( const AudioSampleBuffer other)
noexcept

Copies another buffer onto this one. This buffer's size will be changed to that of the other buffer.

◆ reverse() [1/2]

void AudioSampleBuffer::reverse ( int  channel,
int  startSample,
int  numSamples 
) const
noexcept

Reverses a part of a channel.

◆ reverse() [2/2]

void AudioSampleBuffer::reverse ( int  startSample,
int  numSamples 
) const
noexcept

Reverses a part of the buffer.

◆ setDataToReferTo()

void AudioSampleBuffer::setDataToReferTo ( float **  dataToReferTo,
int  numChannels,
int  numSamples 
)
noexcept

Makes this buffer point to a pre-allocated set of channel data arrays.

There's also a constructor that lets you specify arrays like this, but this lets you change the channels dynamically.

Note that if the buffer is resized or its number of channels is changed, it will re-allocate memory internally and copy the existing data to this new area, so it will then stop directly addressing this memory.

Parameters
dataToReferToa pre-allocated array containing pointers to the data for each channel that should be used by this buffer. The buffer will only refer to this memory, it won't try to delete it when the buffer is deleted or resized.
numChannelsthe number of channels to use - this must correspond to the number of elements in the array passed in
numSamplesthe number of samples to use - this must correspond to the size of the arrays passed in

◆ setSample()

void AudioSampleBuffer::setSample ( int  destChannel,
int  destSample,
float  newValue 
)
noexcept

Sets a sample in the buffer. The channel and index are not checked - they are expected to be in-range. If not, an assertion will be thrown, but in a release build, you're into 'undefined behaviour' territory.

◆ setSize()

void AudioSampleBuffer::setSize ( int  newNumChannels,
int  newNumSamples,
bool  keepExistingContent = false,
bool  clearExtraSpace = false,
bool  avoidReallocating = false 
)
noexcept

Changes the buffer's size or number of channels.

This can expand or contract the buffer's length, and add or remove channels.

If keepExistingContent is true, it will try to preserve as much of the old data as it can in the new buffer.

If clearExtraSpace is true, then any extra channels or space that is allocated will be also be cleared. If false, then this space is left uninitialised.

If avoidReallocating is true, then changing the buffer's size won't reduce the amount of memory that is currently allocated (but it will still increase it if the new size is bigger than the amount it currently has). If this is false, then a new allocation will be done so that the buffer uses takes up the minimum amount of memory that it needs.

If the required memory can't be allocated, this will throw a std::bad_alloc exception.

Member Data Documentation

◆ const

int index AudioSampleBuffer::const

◆ index

int index int AudioSampleBuffer::index

The documentation for this class was generated from the following files: