| 257 | } |
| 258 | |
| 259 | U32 SFXVorbisStream::getPosition() const |
| 260 | { |
| 261 | AssertFatal( mVF, "SFXVorbisStream::getPosition() - Stream is closed!" ); |
| 262 | return U32( ov_pcm_tell( mVF ) ) * mFormat.getBytesPerSample(); |
| 263 | } |
| 264 | |
| 265 | void SFXVorbisStream::setPosition( U32 offset ) |
| 266 | { |
no test coverage detected