mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
LLE DSP: Handle cycle drifting
This commit is contained in:
parent
3e72323653
commit
6bb3198006
1 changed files with 3 additions and 1 deletions
|
@ -85,7 +85,9 @@ namespace Audio {
|
||||||
// Run 1 slice of DSP instructions and schedule the next audio frame
|
// Run 1 slice of DSP instructions and schedule the next audio frame
|
||||||
void runAudioFrame(u64 eventTimestamp) override {
|
void runAudioFrame(u64 eventTimestamp) override {
|
||||||
runSlice();
|
runSlice();
|
||||||
scheduler.addEvent(Scheduler::EventType::RunDSP, scheduler.currentTimestamp + Audio::lleSlice * 2);
|
// How many cycles we were late
|
||||||
|
const u64 cycleDrift = scheduler.currentTimestamp - eventTimestamp;
|
||||||
|
scheduler.addEvent(Scheduler::EventType::RunDSP, scheduler.currentTimestamp + Audio::lleSlice * 2 - cycleDrift);
|
||||||
}
|
}
|
||||||
|
|
||||||
void setAudioEnabled(bool enable) override;
|
void setAudioEnabled(bool enable) override;
|
||||||
|
|
Loading…
Add table
Reference in a new issue