Pd++
0.01
A pure C++ implementation of Pure Data objects
|
An STK class to handle vectorized audio data. More...
#include <Stk.h>
Public Member Functions | |
StkFrames (unsigned int nFrames=0, unsigned int nChannels=0) | |
The default constructor initializes the frame data structure to size zero. | |
StkFrames (const StkFloat &value, unsigned int nFrames, unsigned int nChannels) | |
Overloaded constructor that initializes the frame data to the specified size with value . | |
~StkFrames () | |
The destructor. | |
StkFrames (const StkFrames &f) | |
StkFrames & | operator= (const StkFrames &f) |
StkFloat & | operator[] (size_t n) |
Subscript operator that returns a reference to element n of self. More... | |
StkFloat | operator[] (size_t n) const |
Subscript operator that returns the value at element n of self. More... | |
void | operator+= (StkFrames &f) |
Assignment by sum operator into self. More... | |
void | operator*= (StkFrames &f) |
Assignment by product operator into self. More... | |
StkFloat & | operator() (size_t frame, unsigned int channel) |
Channel / frame subscript operator that returns a reference. More... | |
StkFloat | operator() (size_t frame, unsigned int channel) const |
Channel / frame subscript operator that returns a value. More... | |
StkFloat | interpolate (StkFloat frame, unsigned int channel=0) const |
Return an interpolated value at the fractional frame index and channel. More... | |
size_t | size () const |
Returns the total number of audio samples represented by the object. | |
bool | empty () const |
Returns true if the object size is zero and false otherwise. | |
void | resize (size_t nFrames, unsigned int nChannels=1) |
Resize self to represent the specified number of channels and frames. More... | |
void | resize (size_t nFrames, unsigned int nChannels, StkFloat value) |
Resize self to represent the specified number of channels and frames and perform element initialization. More... | |
unsigned int | channels (void) const |
Return the number of channels represented by the data. | |
unsigned int | frames (void) const |
Return the number of sample frames represented by the data. | |
void | setDataRate (StkFloat rate) |
Set the sample rate associated with the StkFrames data. More... | |
StkFloat | dataRate (void) const |
Return the sample rate associated with the StkFrames data. More... | |
An STK class to handle vectorized audio data.
This class can hold single- or multi-channel audio data. The data type is always StkFloat and the channel format is always interleaved. In an effort to maintain efficiency, no out-of-bounds checks are performed in this class unless STK_DEBUG is defined.
Internally, the data is stored in a one-dimensional C array. An indexing operator is available to set and retrieve data values. Alternately, one can use pointers to access the data, using the index operator to get an address for a particular location in the data:
StkFloat* ptr = &myStkFrames[0];
Note that this class can also be used as a table with interpolating lookup.
Possible future improvements in this class could include functions to convert to and return other data types.
by Perry R. Cook and Gary P. Scavone, 1995–2014.
|
inline |
Return the sample rate associated with the StkFrames data.
By default, this value is set equal to the current STK sample rate at the time of instantiation.
StkFloat stk::StkFrames::interpolate | ( | StkFloat | frame, |
unsigned int | channel = 0 |
||
) | const |
Return an interpolated value at the fractional frame index and channel.
This function performs linear interpolation. The frame
index must be between 0.0 and frames() - 1. The channel
index must be between 0 and channels() - 1. No range checking is performed unless STK_DEBUG is defined.
|
inline |
Channel / frame subscript operator that returns a reference.
The result can be used as an lvalue. This reference is valid until the resize function is called or the array is destroyed. The frame
index must be between 0 and frames() - 1. The channel
index must be between 0 and channels() - 1. No range checking is performed unless STK_DEBUG is defined.
|
inline |
Channel / frame subscript operator that returns a value.
The frame
index must be between 0 and frames() - 1. The channel
index must be between 0 and channels() - 1. No range checking is performed unless STK_DEBUG is defined.
|
inline |
Assignment by product operator into self.
The dimensions of the argument are expected to be the same as self. No range checking is performed unless STK_DEBUG is defined.
|
inline |
Assignment by sum operator into self.
The dimensions of the argument are expected to be the same as self. No range checking is performed unless STK_DEBUG is defined.
|
inline |
Subscript operator that returns a reference to element n
of self.
The result can be used as an lvalue. This reference is valid until the resize function is called or the array is destroyed. The index n
must be between 0 and size less one. No range checking is performed unless STK_DEBUG is defined.
|
inline |
Subscript operator that returns the value at element n
of self.
The index n
must be between 0 and size less one. No range checking is performed unless STK_DEBUG is defined.
void stk::StkFrames::resize | ( | size_t | nFrames, |
unsigned int | nChannels = 1 |
||
) |
Resize self to represent the specified number of channels and frames.
Changes the size of self based on the number of frames and channels. No element assignment is performed. No memory deallocation occurs if the new size is smaller than the previous size. Further, no new memory is allocated when the new size is smaller or equal to a previously allocated size.
void stk::StkFrames::resize | ( | size_t | nFrames, |
unsigned int | nChannels, | ||
StkFloat | value | ||
) |
Resize self to represent the specified number of channels and frames and perform element initialization.
Changes the size of self based on the number of frames and channels, and assigns value
to every element. No memory deallocation occurs if the new size is smaller than the previous size. Further, no new memory is allocated when the new size is smaller or equal to a previously allocated size.
|
inline |
Set the sample rate associated with the StkFrames data.
By default, this value is set equal to the current STK sample rate at the time of instantiation.