Changes between Initial Version and Version 1 of Ticket #13462, comment 2


Ignore:
Timestamp:
May 4, 2022, 9:27:24 PM (2 years ago)
Author:
rsn8887

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13462, comment 2

    initial v1  
    1 After some testing on PSP with Bosca's help on Discord, I found out that, on PSP, changing "sample = 8192" to "samples = 16" or lower in osys_psp.cpp and changing "_mixer = new Audio::MixerImpl(samplesPerSec);" to "_mixer = new Audio::MixerImpl(samplesPerSec, samples);" seems to reduce the audio lag in Full Throttle to 2.5.1 levels of imperceptibly small lag, or at least very close.
     1After some testing on PSP with Bosca's help on Discord, I found out that, on PSP, changing "samples = 8192" to "samples = 16" or lower in osys_psp.cpp and changing "_mixer = new Audio::MixerImpl(samplesPerSec);" to "_mixer = new Audio::MixerImpl(samplesPerSec, samples);" seems to reduce the audio lag in Full Throttle to 2.5.1 levels of imperceptibly small lag, or at least very close.
    22
    33I am not sure how a 16 sample large buffer can work without producing stuttering, but it seems to work.