TDME2 1.9.121
|
OGG/Vorbis audio decoder. More...
#include <tdme/audio/decoder/VorbisDecoder.h>
Classes | |
struct | OGGFileData |
Public Member Functions | |
virtual void | openFile (const string &pathName, const string &fileName) |
Open a local file. More... | |
virtual void | reset () |
Resets this audio decoder, if a stream was open it will be rewinded. More... | |
virtual int32_t | readFromStream (ByteBuffer *data) |
Read raw PCM data from stream. More... | |
virtual void | close () |
Closes the audio file. More... | |
VorbisDecoder () | |
Constructor. More... | |
~VorbisDecoder () | |
Destructor. More... | |
![]() | |
virtual void | openFile (const string &pathName, const string &fileName)=0 |
Open a local file. More... | |
virtual void | reset ()=0 |
Resets this audio decoder, if a stream was open it will be rewinded. More... | |
int32_t | getChannels () |
int32_t | getSampleRate () |
int32_t | getBitsPerSample () |
int32_t | getSamples () |
virtual int32_t | readFromStream (ByteBuffer *data)=0 |
Read raw PCM data from stream. More... | |
virtual void | close ()=0 |
Closes the audio file. More... | |
AudioDecoder () | |
Constructor. More... | |
virtual | ~AudioDecoder () |
Destructor. More... | |
Static Private Member Functions | |
static size_t | oggfiledata_read (void *buffer, size_t size, size_t count, VorbisDecoder::OGGFileData *oggFileData) |
Read from OGG file data. More... | |
static int | oggfiledata_seek (VorbisDecoder::OGGFileData *oggFileData, ogg_int64_t offset, int whence) |
Seek in OGG file data. More... | |
static int | oggfiledata_close (VorbisDecoder::OGGFileData *oggFileData) |
Close OGG file data. More... | |
static long | oggfiledata_tell (VorbisDecoder::OGGFileData *oggFileData) |
Tell position of OGG file data. More... | |
Private Attributes | |
OGGFileData * | oggFileData { nullptr } |
string | pathName |
string | fileName |
OggVorbis_File | vf |
int | section |
Additional Inherited Members | |
![]() | |
static constexpr int32_t | CHANNELS_NONE { -1 } |
static constexpr int32_t | SAMPLERATE_NONE { -1 } |
static constexpr int32_t | BITSPERSAMPLES_NONE { -1 } |
static constexpr int32_t | SAMPLES_NONE { -1 } |
![]() | |
int32_t | channels |
int32_t | sampleRate |
int32_t | bitsPerSample |
int32_t | samples |
OGG/Vorbis audio decoder.
Definition at line 28 of file VorbisDecoder.h.
VorbisDecoder | ( | ) |
Constructor.
Definition at line 75 of file VorbisDecoder.cpp.
~VorbisDecoder | ( | ) |
Destructor.
Definition at line 80 of file VorbisDecoder.cpp.
|
virtual |
|
staticprivate |
Close OGG file data.
oggFileData | pointer to OGG file data |
Definition at line 67 of file VorbisDecoder.cpp.
|
staticprivate |
Read from OGG file data.
buffer | buffer to read into |
size | chunk bytes to read |
count | chunk count to read |
oggFileData | pointer to OGG file data |
Definition at line 40 of file VorbisDecoder.cpp.
|
staticprivate |
Seek in OGG file data.
oggFileData | OGG file data pointer |
offset | offset (can be relative to position) |
whence | whence see (SEEK_*) |
Definition at line 51 of file VorbisDecoder.cpp.
|
staticprivate |
Tell position of OGG file data.
oggFileData | pointer to OGG file data |
Definition at line 71 of file VorbisDecoder.cpp.
|
virtual |
Open a local file.
pathName | path name |
fileName | file name |
Implements AudioDecoder.
Definition at line 85 of file VorbisDecoder.cpp.
|
virtual |
Read raw PCM data from stream.
data | byte buffer |
Implements AudioDecoder.
Definition at line 137 of file VorbisDecoder.cpp.
|
virtual |
Resets this audio decoder, if a stream was open it will be rewinded.
Implements AudioDecoder.
Definition at line 132 of file VorbisDecoder.cpp.
|
private |
Definition at line 113 of file VorbisDecoder.h.
|
private |
Definition at line 111 of file VorbisDecoder.h.
|
private |
Definition at line 112 of file VorbisDecoder.h.
|
private |
Definition at line 115 of file VorbisDecoder.h.
|
private |
Definition at line 114 of file VorbisDecoder.h.