| 88 | } |
| 89 | |
| 90 | bool StbVorbisDecoder::seek(fl::u32 sampleNumber) { |
| 91 | if (!mVorbis) return false; |
| 92 | return vb::stb_vorbis_seek(static_cast<vb::stb_vorbis*>(mVorbis), sampleNumber) != 0; |
| 93 | } |
| 94 | |
| 95 | fl::u32 StbVorbisDecoder::getSampleOffset() const { |
| 96 | if (!mVorbis) return 0; |
no outgoing calls