| 93 | } |
| 94 | |
| 95 | fl::u32 StbVorbisDecoder::getSampleOffset() const { |
| 96 | if (!mVorbis) return 0; |
| 97 | return static_cast<fl::u32>(vb::stb_vorbis_get_sample_offset(static_cast<vb::stb_vorbis*>(mVorbis))); |
| 98 | } |
| 99 | |
| 100 | fl::u32 StbVorbisDecoder::getTotalSamples() const { |
| 101 | if (!mVorbis) return 0; |
no outgoing calls
no test coverage detected