Browse Source

Allow Bluetooth headphones for iOS playandrecord mode

Sam Lantinga 5 years ago
parent
commit
2ae1c0f5d0
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj

+ 8 - 0
Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj

@@ -370,7 +370,15 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
         if (category == AVAudioSessionCategoryPlayAndRecord) {
             options |= AVAudioSessionCategoryOptionDefaultToSpeaker;
         }
+        if (category == AVAudioSessionCategoryRecord ||
+            category == AVAudioSessionCategoryPlayAndRecord) {
+            options |= AVAudioSessionCategoryOptionAllowBluetooth;
+        }
 #endif
+        if (category == AVAudioSessionCategoryPlayAndRecord) {
+            options |= AVAudioSessionCategoryOptionAllowBluetoothA2DP |
+                       AVAudioSessionCategoryOptionAllowAirPlay;
+        }
 
         if ([session respondsToSelector:@selector(setCategory:mode:options:error:)]) {
             if (![session.category isEqualToString:category] || session.categoryOptions != options) {