Sound stream for OGG format.
#include <AUI/Audio/Formats/ogg/AOggSoundStream.h>
|
|
| AOggSoundStream (aui::non_null< _unique< IInputStream > > stream) |
| |
| AAudioFormat | info () override |
| | Get general info about sound stream.
|
| |
| size_t | read (char *dst, size_t size) override |
| | Reads up to size bytes from stream. Blocking (waiting for new data) is allowed.
|
| |
| size_t | read (std::span< std::byte > destination) |
| | Reads up to destination.size() bytes from stream. Blocking (waiting for new data) is allowed.
|
| |
| void | readExact (char *dst, size_t size) |
| | Reads exact size bytes from stream. Blocking (waiting for new data) is allowed.
|
| |
| template<typename T> |
| T | deserialize () |
| |
| template<typename T> |
| IInputStream & | operator>> (T &dst) |
| |
| template<typename T> |
| IInputStream & | operator>> (T &&dst) |
| |
◆ info()#
◆ read()#
| size_t AOggSoundStream::read |
( |
char * | dst, |
|
|
size_t | size ) |
|
overridevirtual |
- Sneaky exceptions
- An implementation can throw any exception that subclasses AIOException.
- Parameters
-
| dst | destination buffer |
| size | destination buffer's size. > 0 |
- Returns
- number of read bytes (including 0)
Implements IInputStream.