add audio Seek functionality

main
cosmonaut 2022-04-20 14:31:46 -07:00
parent d0b26f2898
commit 13a1ef6491
3 changed files with 56 additions and 0 deletions

View File

@ -241,6 +241,8 @@ namespace FineAudio
public abstract void Play(bool loop);
public abstract void Pause();
public abstract void Stop(bool immediate);
public abstract void Seek(float seconds);
public abstract void Seek(uint sampleFrame);
private void InitDSPSettings(uint srcChannels)
{

View File

@ -93,6 +93,31 @@ namespace FineAudio
}
}
private void PerformSeek(uint sampleFrame)
{
if (State == SoundState.Playing)
{
FAudio.FAudioSourceVoice_Stop(Handle, 0, 0);
FAudio.FAudioSourceVoice_FlushSourceBuffers(Handle);
}
Parent.Handle.PlayBegin = sampleFrame;
Play();
}
public override void Seek(float seconds)
{
uint sampleFrame =
(uint) (Parent.SamplesPerSecond * seconds);
PerformSeek(sampleFrame);
}
public override void Seek(uint sampleFrame)
{
PerformSeek(sampleFrame);
}
public void Free()
{
Parent.FreeInstance(this);

View File

@ -63,6 +63,35 @@ namespace FineAudio
device.AddDynamicSoundInstance(this);
}
private void PerformSeek(uint sampleFrame)
{
if (State == SoundState.Playing)
{
FAudio.FAudioSourceVoice_Stop(Handle, 0, 0);
}
FAudio.FAudioSourceVoice_FlushSourceBuffers(Handle);
ClearBuffers();
FAudio.stb_vorbis_seek(VorbisHandle, sampleFrame);
QueueBuffers();
if (State == SoundState.Playing)
{
Play();
}
}
public override void Seek(float seconds)
{
uint sampleFrame = (uint) (Info.sample_rate * seconds);
PerformSeek(sampleFrame);
}
public override void Seek(uint sampleFrame)
{
PerformSeek(sampleFrame);
}
protected override void AddBuffer(
out float[] buffer,
out uint bufferOffset,