| 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); |
| 24 | } |
| 25 | |
| 26 | int64_t Abyss::Streams::AudioStream::streamSeek(const int64_t offset, const int whence) { |
| 27 | std::ios_base::seekdir dir; |
nothing calls this directly
no test coverage detected