Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-tremor.
More...
#include <CodecVorbis.h>
|
AudioInfo | currentInfo () |
|
void | notifyAudioChange (AudioInfo info) |
|
bool | ovOpen () |
|
virtual size_t | readBytes (uint8_t *data, size_t len) override |
|
const char * | readError (long error) |
|
|
static int | close_func (void *datasource) |
|
static size_t | read_func (void *ptr, size_t size, size_t nmemb, void *datasource) |
|
static int | seek_func (void *datasource, ogg_int64_t offset, int whence) |
|
static long | tell_func (void *datasource) |
|
|
bool | active |
|
int | bitstream |
|
ov_callbacks | callbacks |
|
AudioInfo | cfg |
|
OggVorbis_File | file |
|
bool | is_first = true |
|
bool | is_notify_active = true |
|
bool | is_ov_open = false |
|
Vector< AudioInfoSupport * > | notify_vector |
|
Stream * | p_input = nullptr |
|
Print * | p_print = nullptr |
|
Vector< uint8_t > | pcm |
|
Vorbis Streaming Decoder using https://github.com/pschatzmann/arduino-libvorbis-tremor.
- Author
- Phil Schatzmann
- Copyright
- GPLv3
◆ setInput()
void setInput |
( |
Stream & |
inStream | ) |
|
|
inlineinherited |
Stream Interface: Decode directly by taking data from the stream. This is more efficient then feeding the decoder with write: just call copy() in the loop
The documentation for this class was generated from the following file: