|
@@ -29,7 +29,7 @@ public class SDLAudioManager {
|
|
|
mAudioRecord = null;
|
|
|
mAudioDeviceCallback = null;
|
|
|
|
|
|
- if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
|
|
|
+ if(Build.VERSION.SDK_INT >= 24)
|
|
|
{
|
|
|
mAudioDeviceCallback = new AudioDeviceCallback() {
|
|
|
@Override
|
|
@@ -237,7 +237,7 @@ public class SDLAudioManager {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N && deviceId != 0) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24 && deviceId != 0) {
|
|
|
mAudioRecord.setPreferredDevice(getOutputAudioDeviceInfo(deviceId));
|
|
|
}
|
|
|
|
|
@@ -264,7 +264,7 @@ public class SDLAudioManager {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N && deviceId != 0) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24 && deviceId != 0) {
|
|
|
mAudioTrack.setPreferredDevice(getInputAudioDeviceInfo(deviceId));
|
|
|
}
|
|
|
|
|
@@ -283,7 +283,7 @@ public class SDLAudioManager {
|
|
|
}
|
|
|
|
|
|
private static AudioDeviceInfo getInputAudioDeviceInfo(int deviceId) {
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24) {
|
|
|
AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
|
|
|
return Arrays.stream(audioManager.getDevices(AudioManager.GET_DEVICES_INPUTS))
|
|
|
.filter(deviceInfo -> deviceInfo.getId() == deviceId)
|
|
@@ -295,7 +295,7 @@ public class SDLAudioManager {
|
|
|
}
|
|
|
|
|
|
private static AudioDeviceInfo getOutputAudioDeviceInfo(int deviceId) {
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24) {
|
|
|
AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
|
|
|
return Arrays.stream(audioManager.getDevices(AudioManager.GET_DEVICES_OUTPUTS))
|
|
|
.filter(deviceInfo -> deviceInfo.getId() == deviceId)
|
|
@@ -307,14 +307,14 @@ public class SDLAudioManager {
|
|
|
}
|
|
|
|
|
|
private static void registerAudioDeviceCallback() {
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24) {
|
|
|
AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
|
|
|
audioManager.registerAudioDeviceCallback(mAudioDeviceCallback, null);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
private static void unregisterAudioDeviceCallback(Context context) {
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24) {
|
|
|
AudioManager audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
|
|
|
audioManager.unregisterAudioDeviceCallback(mAudioDeviceCallback);
|
|
|
}
|
|
@@ -324,7 +324,7 @@ public class SDLAudioManager {
|
|
|
* This method is called by SDL using JNI.
|
|
|
*/
|
|
|
public static int[] getAudioOutputDevices() {
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24) {
|
|
|
AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
|
|
|
return Arrays.stream(audioManager.getDevices(AudioManager.GET_DEVICES_OUTPUTS)).mapToInt(AudioDeviceInfo::getId).toArray();
|
|
|
} else {
|
|
@@ -336,7 +336,7 @@ public class SDLAudioManager {
|
|
|
* This method is called by SDL using JNI.
|
|
|
*/
|
|
|
public static int[] getAudioInputDevices() {
|
|
|
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
|
|
+ if (Build.VERSION.SDK_INT >= 24) {
|
|
|
AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
|
|
|
return Arrays.stream(audioManager.getDevices(AudioManager.GET_DEVICES_INPUTS)).mapToInt(AudioDeviceInfo::getId).toArray();
|
|
|
} else {
|
|
@@ -360,7 +360,7 @@ public class SDLAudioManager {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.LOLLIPOP) {
|
|
|
+ if (android.os.Build.VERSION.SDK_INT < 21) {
|
|
|
Log.e(TAG, "Attempted to make an incompatible audio call with uninitialized audio! (floating-point output is supported since Android 5.0 Lollipop)");
|
|
|
return;
|
|
|
}
|