fix(android): exclude android from fixed 64 audio buffer size (#16198)

This commit is contained in:
Vojtěch Lapuník
2026-09-14 04:40:18 +02:00
committed by GitHub
parent 8b716c7046
commit e4b9594c5e

View File

@@ -2347,9 +2347,9 @@ impl AudioHandler {
log::info!("Remote input format: {:?}", format0);
#[allow(unused_mut)]
let mut config: StreamConfig = config.into();
#[cfg(not(target_os = "ios"))]
#[cfg(not(any(target_os = "android", target_os = "ios")))]
{
// this makes ios audio output not work
// this makes ios and android audio output not work
config.buffer_size = cpal::BufferSize::Fixed(64);
}