Fix AudioPlayer.get_pos() always returns 0
This commit is contained in:
parent
0edc3d7208
commit
6cf0c62221
|
@ -42,6 +42,7 @@ void AudioStreamPlaybackOGGVorbis::_mix_internal(AudioFrame *p_buffer, int p_fra
|
|||
|
||||
int mixed = stb_vorbis_get_samples_float_interleaved(ogg_stream, 2, (float *)p_buffer, todo * 2);
|
||||
todo -= mixed;
|
||||
frames_mixed += mixed;
|
||||
|
||||
if (todo) {
|
||||
//end of file!
|
||||
|
@ -95,7 +96,12 @@ void AudioStreamPlaybackOGGVorbis::seek_pos(float p_time) {
|
|||
if (!active)
|
||||
return;
|
||||
|
||||
stb_vorbis_seek(ogg_stream, uint32_t(p_time * vorbis_stream->sample_rate));
|
||||
if (p_time >= get_length()) {
|
||||
p_time = 0;
|
||||
}
|
||||
frames_mixed = uint32_t(vorbis_stream->sample_rate * p_time);
|
||||
|
||||
stb_vorbis_seek(ogg_stream, frames_mixed);
|
||||
}
|
||||
|
||||
float AudioStreamPlaybackOGGVorbis::get_length() const {
|
||||
|
|
Loading…
Reference in New Issue