From 8917ec9c88ee3fd2b4d90ffad887fbc0a68b09fa Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Wed, 31 Aug 2022 20:40:03 +0100 Subject: [PATCH] Don't set framesPerCallback for main stream as per oboe guidance It's best to let oboe figure it out on it's own --- app/src/main/cpp/skyline/audio.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/cpp/skyline/audio.cpp b/app/src/main/cpp/skyline/audio.cpp index 6b1ab0de..9635f6d9 100644 --- a/app/src/main/cpp/skyline/audio.cpp +++ b/app/src/main/cpp/skyline/audio.cpp @@ -8,7 +8,6 @@ namespace skyline::audio { builder.setChannelCount(constant::StereoChannelCount); builder.setSampleRate(constant::SampleRate); builder.setFormat(constant::PcmFormat); - builder.setFramesPerCallback(constant::MixBufferSize); builder.setUsage(oboe::Usage::Game); builder.setCallback(this); builder.setSharingMode(oboe::SharingMode::Exclusive);