Fixed bug #4982 - Failed to open audio_device on Android 5.x with freq 96khz+

This commit is contained in:
Sylvain 2021-11-20 15:28:36 +01:00
parent 495ee42a83
commit b6d365677b
No known key found for this signature in database
GPG Key ID: 5F87E02E5BC0939E
1 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,10 @@ public class SDLAudioManager
if (desiredChannels > 2) {
desiredChannels = 2;
}
}
/* AudioTrack has sample rate limitation of 48000 (fixed in 5.0.2) */
if (Build.VERSION.SDK_INT < 23) {
if (sampleRate < 8000) {
sampleRate = 8000;
} else if (sampleRate > 48000) {