Classes | |
class | itpp::Audio_File |
Base class - do not use this one!
ACTION: ADD DETAILED DOCUMENTATION FOR THIS CLASS!!!!!!!!!!! More... | |
class | itpp::SND_Format |
Base class for SND reading classes (the .au format)
ACTION: ADD DETAILED DOCUMENTATION FOR THIS CLASS!!!!!!!!!!! More... | |
class | itpp::SND_In_File |
A class to read SND-files (the .au format)
ACTION: ADD DETAILED DOCUMENTATION FOR THIS CLASS!!!!!!!!!!! More... | |
class | itpp::SND_Out_File |
A class to write SND-files (the .au format)
ACTION: ADD DETAILED DOCUMENTATION FOR THIS CLASS!!!!!!!!!!! More... | |
class | itpp::SND_IO_File |
This class is capable of doing both input and output.
ACTION: ADD DETAILED DOCUMENTATION FOR THIS CLASS!!!!!!!!!!! More... | |
Functions | |
bool | itpp::raw16le_read (const char *fname, vec &v) |
Read raw 16-bin little endian audio data. | |
bool | itpp::raw16le_read (const char *fname, vec &v, int beg, int len) |
Read raw 16-bin little endian audio data. | |
bool | itpp::raw16le_write (const char *fname, const vec &v, bool append=false) |
Write raw 16-bin little endian audio data. | |
bool | itpp::raw16be_read (const char *fname, vec &v) |
Read raw 16-bin big endian audio data. | |
bool | itpp::raw16be_read (const char *fname, vec &v, int beg, int len) |
Read raw 16-bin big endian audio data. | |
bool | itpp::raw16be_write (const char *fname, const vec &v, bool append=false) |
Write raw 16-bin big endian audio data. | |
bool | itpp::snd_read (const char *fname, vec &v) |
Read SND audio data. | |
bool | itpp::snd_read (const char *fname, vec &v, int beg, int len) |
Read SND audio data. | |
bool | itpp::snd_write (const char *fname, const vec &v, int rate=8000, SND_Format::data_encoding e=SND_Format::enc_linear16) |
Write SND audio data. | |
template<typename T > | |
T | itpp::read_endian (std::istream &s, bool switch_endian=false) |
Read binary data and optionally switch endianness. | |
template<typename T > | |
void | itpp::write_endian (std::ostream &s, T data, bool switch_endian=false) |
Write binary data and optionally switch endianness. |