mirror of
https://github.com/encounter/SDL.git
synced 2025-05-17 12:51:24 +00:00
Cleanly switch between audio recording, playback, and both, on iOS
This commit is contained in:
parent
14661d3f30
commit
a990a34ac4
@ -280,11 +280,47 @@ device_list_changed(AudioObjectID systemObj, UInt32 num_addr, const AudioObjectP
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static int open_playback_devices = 0;
|
static int open_playback_devices;
|
||||||
static int open_capture_devices = 0;
|
static int open_capture_devices;
|
||||||
|
static int num_open_devices;
|
||||||
|
static SDL_AudioDevice **open_devices;
|
||||||
|
|
||||||
#if !MACOSX_COREAUDIO
|
#if !MACOSX_COREAUDIO
|
||||||
|
|
||||||
|
static BOOL session_active = NO;
|
||||||
|
|
||||||
|
static void pause_audio_devices()
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
if (!open_devices) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < num_open_devices; ++i) {
|
||||||
|
SDL_AudioDevice *device = open_devices[i];
|
||||||
|
if (device->hidden->audioQueue && !device->hidden->interrupted) {
|
||||||
|
AudioQueuePause(device->hidden->audioQueue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void resume_audio_devices()
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
if (!open_devices) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < num_open_devices; ++i) {
|
||||||
|
SDL_AudioDevice *device = open_devices[i];
|
||||||
|
if (device->hidden->audioQueue && !device->hidden->interrupted) {
|
||||||
|
AudioQueueStart(device->hidden->audioQueue, NULL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void interruption_begin(_THIS)
|
static void interruption_begin(_THIS)
|
||||||
{
|
{
|
||||||
if (this != NULL && this->hidden->audioQueue != NULL) {
|
if (this != NULL && this->hidden->audioQueue != NULL) {
|
||||||
@ -379,9 +415,18 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
|
|||||||
options |= AVAudioSessionCategoryOptionAllowBluetoothA2DP |
|
options |= AVAudioSessionCategoryOptionAllowBluetoothA2DP |
|
||||||
AVAudioSessionCategoryOptionAllowAirPlay;
|
AVAudioSessionCategoryOptionAllowAirPlay;
|
||||||
}
|
}
|
||||||
|
if (category == AVAudioSessionCategoryPlayback ||
|
||||||
|
category == AVAudioSessionCategoryPlayAndRecord) {
|
||||||
|
options |= AVAudioSessionCategoryOptionDuckOthers;
|
||||||
|
}
|
||||||
|
|
||||||
if ([session respondsToSelector:@selector(setCategory:mode:options:error:)]) {
|
if ([session respondsToSelector:@selector(setCategory:mode:options:error:)]) {
|
||||||
if (![session.category isEqualToString:category] || session.categoryOptions != options) {
|
if (![session.category isEqualToString:category] || session.categoryOptions != options) {
|
||||||
|
/* Stop the current session so we don't interrupt other application audio */
|
||||||
|
pause_audio_devices();
|
||||||
|
[session setActive:NO error:nil];
|
||||||
|
session_active = NO;
|
||||||
|
|
||||||
if (![session setCategory:category mode:mode options:options error:&err]) {
|
if (![session setCategory:category mode:mode options:options error:&err]) {
|
||||||
NSString *desc = err.description;
|
NSString *desc = err.description;
|
||||||
SDL_SetError("Could not set Audio Session category: %s", desc.UTF8String);
|
SDL_SetError("Could not set Audio Session category: %s", desc.UTF8String);
|
||||||
@ -390,6 +435,11 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (![session.category isEqualToString:category]) {
|
if (![session.category isEqualToString:category]) {
|
||||||
|
/* Stop the current session so we don't interrupt other application audio */
|
||||||
|
pause_audio_devices();
|
||||||
|
[session setActive:NO error:nil];
|
||||||
|
session_active = NO;
|
||||||
|
|
||||||
if (![session setCategory:category error:&err]) {
|
if (![session setCategory:category error:&err]) {
|
||||||
NSString *desc = err.description;
|
NSString *desc = err.description;
|
||||||
SDL_SetError("Could not set Audio Session category: %s", desc.UTF8String);
|
SDL_SetError("Could not set Audio Session category: %s", desc.UTF8String);
|
||||||
@ -398,7 +448,7 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (open && (open_playback_devices + open_capture_devices) == 1) {
|
if ((open_playback_devices || open_capture_devices) && !session_active) {
|
||||||
if (![session setActive:YES error:&err]) {
|
if (![session setActive:YES error:&err]) {
|
||||||
if ([err code] == AVAudioSessionErrorCodeResourceNotAvailable &&
|
if ([err code] == AVAudioSessionErrorCodeResourceNotAvailable &&
|
||||||
category == AVAudioSessionCategoryPlayAndRecord) {
|
category == AVAudioSessionCategoryPlayAndRecord) {
|
||||||
@ -409,8 +459,12 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
|
|||||||
SDL_SetError("Could not activate Audio Session: %s", desc.UTF8String);
|
SDL_SetError("Could not activate Audio Session: %s", desc.UTF8String);
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
} else if (!open_playback_devices && !open_capture_devices) {
|
session_active = YES;
|
||||||
|
resume_audio_devices();
|
||||||
|
} else if (!open_playback_devices && !open_capture_devices && session_active) {
|
||||||
|
pause_audio_devices();
|
||||||
[session setActive:NO error:nil];
|
[session setActive:NO error:nil];
|
||||||
|
session_active = NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (open) {
|
if (open) {
|
||||||
@ -438,7 +492,6 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
|
|||||||
|
|
||||||
this->hidden->interruption_listener = CFBridgingRetain(listener);
|
this->hidden->interruption_listener = CFBridgingRetain(listener);
|
||||||
} else {
|
} else {
|
||||||
if (this->hidden->interruption_listener != NULL) {
|
|
||||||
SDLInterruptionListener *listener = nil;
|
SDLInterruptionListener *listener = nil;
|
||||||
listener = (SDLInterruptionListener *) CFBridgingRelease(this->hidden->interruption_listener);
|
listener = (SDLInterruptionListener *) CFBridgingRelease(this->hidden->interruption_listener);
|
||||||
[center removeObserver:listener];
|
[center removeObserver:listener];
|
||||||
@ -447,7 +500,6 @@ static BOOL update_audio_session(_THIS, SDL_bool open, SDL_bool allow_playandrec
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
@ -619,6 +671,7 @@ static void
|
|||||||
COREAUDIO_CloseDevice(_THIS)
|
COREAUDIO_CloseDevice(_THIS)
|
||||||
{
|
{
|
||||||
const SDL_bool iscapture = this->iscapture;
|
const SDL_bool iscapture = this->iscapture;
|
||||||
|
int i;
|
||||||
|
|
||||||
/* !!! FIXME: what does iOS do when a bluetooth audio device vanishes? Headphones unplugged? */
|
/* !!! FIXME: what does iOS do when a bluetooth audio device vanishes? Headphones unplugged? */
|
||||||
/* !!! FIXME: (we only do a "default" device on iOS right now...can we do more?) */
|
/* !!! FIXME: (we only do a "default" device on iOS right now...can we do more?) */
|
||||||
@ -638,6 +691,20 @@ COREAUDIO_CloseDevice(_THIS)
|
|||||||
update_audio_session(this, SDL_FALSE, SDL_TRUE);
|
update_audio_session(this, SDL_FALSE, SDL_TRUE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
for (i = 0; i < num_open_devices; ++i) {
|
||||||
|
if (open_devices[i] == this) {
|
||||||
|
--num_open_devices;
|
||||||
|
if (i < num_open_devices) {
|
||||||
|
SDL_memmove(&open_devices[i], &open_devices[i+1], sizeof(open_devices[i])*(num_open_devices - i));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (num_open_devices == 0) {
|
||||||
|
SDL_free(open_devices);
|
||||||
|
open_devices = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* if callback fires again, feed silence; don't call into the app. */
|
/* if callback fires again, feed silence; don't call into the app. */
|
||||||
SDL_AtomicSet(&this->paused, 1);
|
SDL_AtomicSet(&this->paused, 1);
|
||||||
|
|
||||||
@ -942,6 +1009,7 @@ COREAUDIO_OpenDevice(_THIS, void *handle, const char *devname, int iscapture)
|
|||||||
AudioStreamBasicDescription *strdesc;
|
AudioStreamBasicDescription *strdesc;
|
||||||
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
|
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
|
||||||
int valid_datatype = 0;
|
int valid_datatype = 0;
|
||||||
|
SDL_AudioDevice **new_open_devices;
|
||||||
|
|
||||||
/* Initialize all variables that we clean on shutdown */
|
/* Initialize all variables that we clean on shutdown */
|
||||||
this->hidden = (struct SDL_PrivateAudioData *)
|
this->hidden = (struct SDL_PrivateAudioData *)
|
||||||
@ -959,6 +1027,12 @@ COREAUDIO_OpenDevice(_THIS, void *handle, const char *devname, int iscapture)
|
|||||||
open_playback_devices++;
|
open_playback_devices++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
new_open_devices = (SDL_AudioDevice **)SDL_realloc(open_devices, sizeof(open_devices[0]) * (num_open_devices + 1));
|
||||||
|
if (new_open_devices) {
|
||||||
|
open_devices = new_open_devices;
|
||||||
|
open_devices[num_open_devices++] = this;
|
||||||
|
}
|
||||||
|
|
||||||
#if !MACOSX_COREAUDIO
|
#if !MACOSX_COREAUDIO
|
||||||
if (!update_audio_session(this, SDL_TRUE, SDL_TRUE)) {
|
if (!update_audio_session(this, SDL_TRUE, SDL_TRUE)) {
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user