|
arduino-audio-tools
|
Ogg Vorbis Decoder. More...
#include <OggVorbisDecoder.h>
Public Member Functions | |
| OggVorbisDecoder () | |
| Constructor for OggVorbisDecoder Initializes the decoder and sets the underlying VorbisDecoder. | |
| void | addNotifyAudioChange (AudioInfoSupport &bi) override |
| Adds target to be notified about audio changes. | |
| AudioInfo | audioInfo () override |
| provides the actual input AudioInfo | |
| virtual AudioInfo | audioInfoOut () |
| bool | begin () override |
| bool | begin (AudioInfo info) override |
| virtual void | clearNotifyAudioChange () |
| Deletes all change notify subscriptions. | |
| void | end () override |
| void | flush () |
| Print * | getOutput () |
| bool | isNotifyActive () |
| Checks if the automatic AudioInfo update is active. | |
| virtual | operator bool () override |
| virtual bool | removeNotifyAudioChange (AudioInfoSupport &bi) |
| Removes a target in order not to be notified about audio changes. | |
| void | setAudioInfo (AudioInfo from) override |
| for most decoders this is not needed | |
| virtual bool | setCodecConfig (const uint8_t *data, size_t len) |
| Some decoders need e.g. a magic cookie to provide the relevant info for decoding. | |
| void | setDecoder (AudioDecoder *decoder) |
| void | setNotifyActive (bool flag) |
| Deactivate/Reactivate automatic AudioInfo updates: (default is active) | |
| virtual void | setOutput (AudioOutput &out_stream) |
| Defines where the decoded result is written to. | |
| virtual void | setOutput (AudioStream &out_stream) |
| Defines where the decoded result is written to. | |
| void | setOutput (Print &print) override |
| Defines the output Stream. | |
| virtual size_t | write (const uint8_t *data, size_t len) override |
Public Attributes | |
| int | id |
| custom id to be used by application | |
Protected Member Functions | |
| virtual void | beginOfSegment (ogg_packet *op) |
| virtual void | endOfSegment (ogg_packet *op) |
| void | notifyAudioChange (AudioInfo info) |
| void | writeBlocking (Print *out, uint8_t *data, size_t len) |
Static Protected Member Functions | |
| static size_t | ogg_io_read (void *user_handle, void *buf, size_t n) |
| static int | read_packet (OGGZ *oggz, oggz_packet *zp, long serialno, void *user_data) |
| static int | read_page (OGGZ *oggz, const ogg_page *og, long serialno, void *user_data) |
Protected Attributes | |
| RingBuffer< uint8_t > | buffer { ( (1024) ) } |
| CopyDecoder | dec_copy |
| AudioInfo | info |
| bool | is_notify_active = true |
| bool | is_open = false |
| Vector< AudioInfoSupport * > | notify_vector |
| EncodedAudioOutput | out |
| AudioDecoder * | p_codec = nullptr |
| OGGZ * | p_oggz = nullptr |
| Print * | p_print = nullptr |
| long | pos = 0 |
| VorbisDecoder | vorbis |
| Underlying Vorbis decoder. | |
Ogg Vorbis Decoder.
This class wraps VorbisDecoder in an Ogg container decoder, allowing decoding of Ogg Vorbis streams with automatic packet extraction.
Usage:
|
inline |
Constructor for OggVorbisDecoder Initializes the decoder and sets the underlying VorbisDecoder.
|
inlineoverridevirtualinherited |
Adds target to be notified about audio changes.
Reimplemented from AudioInfoSource.
|
inlineoverridevirtualinherited |
provides the actual input AudioInfo
Reimplemented from AudioDecoder.
provides the actual output AudioInfo: this is usually the same as audioInfo() unless we use a transforming stream
Reimplemented in PureDataStream, PWMAudioOutput, ChannelFormatConverterStreamT< T >, ChannelFormatConverterStream, NumberFormatConverterStreamT< TFrom, TTo >, NumberFormatConverterStream, FormatConverterStream, Pipeline, ResampleStream, and ResampleStreamT< TInterpolator >.
|
inlineoverridevirtualinherited |
Reimplemented from AudioDecoder.
Reimplemented in OpusOggDecoder.
Reimplemented from AudioDecoder.
|
inlineprotectedvirtualinherited |
Reimplemented in OpusOggDecoder.
Deletes all change notify subscriptions.
Reimplemented in RTSPClient< TcpClient, UdpSocket >.
|
inlineoverridevirtualinherited |
Reimplemented from AudioDecoder.
Reimplemented in OpusOggDecoder.
|
inlineprotectedvirtualinherited |
|
inlineinherited |
|
inlineinherited |
|
inlinestaticprotectedinherited |
Implements AudioWriter.
|
inlinestaticprotectedinherited |
|
inlinestaticprotectedinherited |
|
inlinevirtualinherited |
Removes a target in order not to be notified about audio changes.
Reimplemented in RTSPClient< TcpClient, UdpSocket >.
for most decoders this is not needed
Implements AudioWriter.
Reimplemented in DecoderALAC, CodecChain, DSFDecoder, DecoderL8, OpusAudioDecoder, CodecNOP, and G7xxDecoder.
Some decoders need e.g. a magic cookie to provide the relevant info for decoding.
Reimplemented in DecoderALAC, and MultiDecoder.
|
inlineinherited |
Deactivate/Reactivate automatic AudioInfo updates: (default is active)
|
inlinevirtualinherited |
Defines where the decoded result is written to.
Reimplemented in ADTSDecoder, CodecChain, MTSDecoder, MTSDecoderTSDemux, and MetaDataFilterDecoder.
|
inlinevirtualinherited |
Defines where the decoded result is written to.
Reimplemented in ADTSDecoder, CodecChain, MTSDecoder, MTSDecoderTSDemux, and MetaDataFilterDecoder.
Defines the output Stream.
Reimplemented from AudioDecoder.
Implements AudioWriter.
|
protectedinherited |
|
protectedinherited |
|
inherited |
custom id to be used by application
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protected |
Underlying Vorbis decoder.