Skip to content

Commit

Permalink
Rename queue used to isolate AVAudioEngine access (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbooth authored Jan 19, 2025
1 parent 02fa6a4 commit ca1709d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/CSFBAudioEngine/Player/SFBAudioPlayer.mm
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ @implementation SFBAudioPlayer
- (instancetype)init
{
if((self = [super init])) {
_engineQueue = dispatch_queue_create("org.sbooth.AudioEngine.AudioPlayer.AVAudioEngineIsolationQueue", DISPATCH_QUEUE_SERIAL);
_engineQueue = dispatch_queue_create("AudioPlayer.AVAudioEngineIsolation", DISPATCH_QUEUE_SERIAL);
if(!_engineQueue) {
os_log_error(_audioPlayerLog, "Unable to create AVAudioEngine isolation dispatch queue: dispatch_queue_create failed");
return nil;
Expand Down

0 comments on commit ca1709d

Please sign in to comment.