1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

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

This commit is contained in:
attila 2022-12-21 17:56:21 +01:00 committed by Attila Szarvas
parent 84352ca05f
commit 55a8b2ac12

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!
} }
} }