Revert "Testing audio latency compensation"

This reverts commit 2692a7d22c.
This commit is contained in:
dec05eba
2024-04-14 00:53:15 +02:00
parent 2692a7d22c
commit b554628099
3 changed files with 8 additions and 22 deletions

View File

@@ -2417,15 +2417,12 @@ int main(int argc, char **argv) {
while(running) {
void *sound_buffer;
int sound_buffer_size = -1;
double latency_seconds = 0.0;
const double time_before_read = clock_get_monotonic_seconds();
if(audio_device.sound_device.handle)
sound_buffer_size = sound_device_read_next_chunk(&audio_device.sound_device, &sound_buffer, 1.0, &latency_seconds);
sound_buffer_size = sound_device_read_next_chunk(&audio_device.sound_device, &sound_buffer, timeout_sec);
const bool got_audio_data = sound_buffer_size >= 0;
const double time_after_read = clock_get_monotonic_seconds();
latency_seconds = time_after_read - time_before_read; // TODO: Remove this
const double this_audio_frame_time = (time_after_read - paused_time_offset) - latency_seconds;
const double this_audio_frame_time = clock_get_monotonic_seconds() - paused_time_offset;
if(paused) {
if(got_audio_data)