Pd++
0.01
A pure C++ implementation of Pure Data objects
|
STK audio file input class. More...
#include <FileWvIn.h>
Public Member Functions | |
FileWvIn (unsigned long chunkThreshold=1000000, unsigned long chunkSize=1024) | |
Default constructor. | |
FileWvIn (std::string fileName, bool raw=false, bool doNormalize=true, unsigned long chunkThreshold=1000000, unsigned long chunkSize=1024) | |
Overloaded constructor for file input. More... | |
~FileWvIn (void) | |
Class destructor. | |
virtual void | openFile (std::string fileName, bool raw=false, bool doNormalize=true) |
Open the specified file and load its data. More... | |
virtual void | closeFile (void) |
Close a file if one is open. | |
virtual void | reset (void) |
Clear outputs and reset time (file) pointer to zero. | |
virtual void | normalize (void) |
Normalize data to a maximum of +-1.0. More... | |
virtual void | normalize (StkFloat peak) |
Normalize data to a maximum of +-peak. More... | |
virtual unsigned long | getSize (void) const |
Return the file size in sample frames. | |
virtual StkFloat | getFileRate (void) const |
Return the input file sample rate in Hz (not the data read rate). More... | |
bool | isOpen (void) |
Query whether a file is open. | |
bool | isFinished (void) const |
Query whether reading is complete. | |
virtual void | setRate (StkFloat rate) |
Set the data read rate in samples. The rate can be negative. More... | |
virtual void | addTime (StkFloat time) |
Increment the read pointer by time samples. More... | |
void | setInterpolate (bool doInterpolate) |
Turn linear interpolation on/off. More... | |
StkFloat | lastOut (unsigned int channel=0) |
Return the specified channel value of the last computed frame. More... | |
virtual StkFloat | tick (unsigned int channel=0) |
Compute a sample frame and return the specified channel value. More... | |
virtual StkFrames & | tick (StkFrames &frames) |
Fill the StkFrames argument with computed frames and return the same reference. More... | |
Public Member Functions inherited from stk::WvIn | |
unsigned int | channelsOut (void) const |
Return the number of audio channels in the data or stream. | |
const StkFrames & | lastFrame (void) const |
Return an StkFrames reference to the last computed sample frame. More... | |
Public Member Functions inherited from stk::Stk | |
void | ignoreSampleRateChange (bool ignore=true) |
A function to enable/disable the automatic updating of class data when the STK sample rate changes. More... | |
Protected Member Functions | |
void | sampleRateChanged (StkFloat newRate, StkFloat oldRate) |
This function should be implemented in subclasses that depend on the sample rate. | |
Protected Member Functions inherited from stk::Stk | |
Stk (void) | |
Default constructor. | |
virtual | ~Stk (void) |
Class destructor. | |
void | addSampleRateAlert (Stk *ptr) |
Add class pointer to list for sample rate change notification. | |
void | removeSampleRateAlert (Stk *ptr) |
Remove class pointer from list for sample rate change notification. | |
void | handleError (StkError::Type type) const |
Internal function for error reporting that assumes message in oStream_ variable. | |
Protected Attributes | |
FileRead | file_ |
bool | finished_ |
bool | interpolate_ |
bool | normalizing_ |
bool | chunking_ |
StkFloat | time_ |
StkFloat | rate_ |
unsigned long | chunkThreshold_ |
unsigned long | chunkSize_ |
long | chunkPointer_ |
Protected Attributes inherited from stk::WvIn | |
StkFrames | data_ |
StkFrames | lastFrame_ |
Protected Attributes inherited from stk::Stk | |
bool | ignoreSampleRateChange_ |
Additional Inherited Members | |
Public Types inherited from stk::Stk | |
typedef unsigned long | StkFormat |
Static Public Member Functions inherited from stk::Stk | |
static StkFloat | sampleRate (void) |
Static method that returns the current STK sample rate. | |
static void | setSampleRate (StkFloat rate) |
Static method that sets the STK sample rate. More... | |
static std::string | rawwavePath (void) |
Static method that returns the current rawwave path. | |
static void | setRawwavePath (std::string path) |
Static method that sets the STK rawwave path. | |
static void | swap16 (unsigned char *ptr) |
Static method that byte-swaps a 16-bit data type. | |
static void | swap32 (unsigned char *ptr) |
Static method that byte-swaps a 32-bit data type. | |
static void | swap64 (unsigned char *ptr) |
Static method that byte-swaps a 64-bit data type. | |
static void | sleep (unsigned long milliseconds) |
Static cross-platform method to sleep for a number of milliseconds. | |
static bool | inRange (StkFloat value, StkFloat min, StkFloat max) |
Static method to check whether a value is within a specified range. | |
static void | handleError (const char *message, StkError::Type type) |
Static function for error reporting and handling using c-strings. | |
static void | handleError (std::string message, StkError::Type type) |
Static function for error reporting and handling using c++ strings. | |
static void | showWarnings (bool status) |
Toggle display of WARNING and STATUS messages. | |
static void | printErrors (bool status) |
Toggle display of error messages before throwing exceptions. | |
Static Public Attributes inherited from stk::Stk | |
static const StkFormat | STK_SINT8 = 0x1 |
static const StkFormat | STK_SINT16 = 0x2 |
static const StkFormat | STK_SINT24 = 0x4 |
static const StkFormat | STK_SINT32 = 0x8 |
static const StkFormat | STK_FLOAT32 = 0x10 |
static const StkFormat | STK_FLOAT64 = 0x20 |
Static Protected Attributes inherited from stk::Stk | |
static std::ostringstream | oStream_ |
STK audio file input class.
This class inherits from WvIn. It provides a "tick-level" interface to the FileRead class. It also provides variable-rate playback functionality. Audio file support is provided by the FileRead class. Linear interpolation is used for fractional read rates.
FileWvIn supports multi-channel data. It is important to distinguish the tick() method that computes a single frame (and returns only the specified sample of a multi-channel frame) from the overloaded one that takes an StkFrames object for multi-channel and/or multi-frame data.
FileWvIn will either load the entire content of an audio file into local memory or incrementally read file data from disk in chunks. This behavior is controlled by the optional constructor arguments chunkThreshold and chunkSize. File sizes greater than chunkThreshold (in sample frames) will be read incrementally in chunks of chunkSize each (also in sample frames).
When the file end is reached, subsequent calls to the tick() functions return zeros and isFinished() returns true.
See the FileRead class for a description of the supported audio file formats.
by Perry R. Cook and Gary P. Scavone, 1995–2014.
FileWvIn::FileWvIn | ( | std::string | fileName, |
bool | raw = false , |
||
bool | doNormalize = true , |
||
unsigned long | chunkThreshold = 1000000 , |
||
unsigned long | chunkSize = 1024 |
||
) |
Overloaded constructor for file input.
An StkError will be thrown if the file is not found, its format is unknown, or a read error occurs.
|
virtual |
Increment the read pointer by time samples.
Note that this function will not modify the interpolation flag status.
|
inlinevirtual |
Return the input file sample rate in Hz (not the data read rate).
WAV, SND, and AIF formatted files specify a sample rate in their headers. STK RAW files have a sample rate of 22050 Hz by definition. MAT-files are assumed to have a rate of 44100 Hz.
|
inline |
Return the specified channel value of the last computed frame.
If no file is loaded, the returned value is 0.0. The channel
argument must be less than the number of output channels, which can be determined with the channelsOut() function (the first channel is specified by 0). However, range checking is only performed if STK_DEBUG is defined during compilation, in which case an out-of-range value will trigger an StkError exception.
|
virtual |
Normalize data to a maximum of +-1.0.
This function has no effect when data is incrementally loaded from disk.
|
virtual |
Normalize data to a maximum of +-peak.
This function has no effect when data is incrementally loaded from disk.
|
virtual |
Open the specified file and load its data.
Data from a previously opened file will be overwritten by this function. An StkError will be thrown if the file is not found, its format is unknown, or a read error occurs. If the file data is to be loaded incrementally from disk and normalization is specified, a scaling will be applied with respect to fixed-point limits. If the data format is floating-point, no scaling is performed.
|
inline |
Turn linear interpolation on/off.
Interpolation is automatically off when the read rate is an integer value. If interpolation is turned off for a fractional rate, the time index is truncated to an integer value.
|
virtual |
Set the data read rate in samples. The rate can be negative.
If the rate value is negative, the data is read in reverse order.
|
virtual |
Compute a sample frame and return the specified channel
value.
For multi-channel files, use the lastFrame() function to get all values from the computed frame. If no file data is loaded, the returned value is 0.0. The channel
argument must be less than the number of channels in the file data (the first channel is specified by 0). However, range checking is only performed if STK_DEBUG is defined during compilation, in which case an out-of-range value will trigger an StkError exception.
Implements stk::WvIn.
Fill the StkFrames argument with computed frames and return the same reference.
The number of channels in the StkFrames argument must equal the number of channels in the file data. However, this is only checked if STK_DEBUG is defined during compilation, in which case an incompatibility will trigger an StkError exception. If no file data is loaded, the function does nothing (a warning will be issued if STK_DEBUG is defined during compilation).
Implements stk::WvIn.