Browse Source

Oboe: Add device types introduced between API level 31-33

v7.0.9
attila Attila Szarvas 2 years ago
parent
commit
55a8b2ac12
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      modules/juce_audio_devices/native/juce_android_Oboe.cpp

+ 6
- 1
modules/juce_audio_devices/native/juce_android_Oboe.cpp View File

@@ -1251,7 +1251,12 @@ public:
case 22: return "USB headset"; case 22: return "USB headset";
case 23: return "hearing aid"; case 23: return "hearing aid";
case 24: return "built-in speaker safe"; case 24: return "built-in speaker safe";
case 25: return {};
case 25: return "remote submix";
case 26: return "BLE headset";
case 27: return "BLE speaker";
case 28: return "echo reference";
case 29: return "HDMI eARC";
case 30: return "BLE broadcast";
default: jassertfalse; return {}; // type not supported yet, needs to be added! default: jassertfalse; return {}; // type not supported yet, needs to be added!
} }
} }


Loading…
Cancel
Save