| 16 | } |
| 17 | |
| 18 | int Abyss::Streams::AudioStream::streamReadCallback(void *opaque, uint8_t *buffer, const int size) { |
| 19 | return static_cast<AudioStream *>(opaque)->streamRead(buffer, size); |
| 20 | } |
| 21 | |
| 22 | int64_t Abyss::Streams::AudioStream::streamSeekCallback(void *opaque, const int64_t offset, const int whence) { |
| 23 | return static_cast<AudioStream *>(opaque)->streamSeek(offset, whence); |
nothing calls this directly
no test coverage detected