mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-16 23:06:03 +00:00
audio: Use AtomicAdd for device counts, don't treat as a refcount.
This commit is contained in:
@@ -254,7 +254,7 @@ static SDL_AudioDevice *CreatePhysicalAudioDevice(const char *name, SDL_bool isc
|
||||
}
|
||||
device->next = *devices;
|
||||
*devices = device;
|
||||
SDL_AtomicIncRef(device_count);
|
||||
SDL_AtomicAdd(device_count, 1);
|
||||
SDL_UnlockRWLock(current_audio.device_list_lock);
|
||||
|
||||
return device;
|
||||
@@ -373,7 +373,7 @@ void SDL_AudioDeviceDisconnected(SDL_AudioDevice *device)
|
||||
device->prev = NULL;
|
||||
|
||||
if (was_live) {
|
||||
SDL_AtomicDecRef(device->iscapture ? ¤t_audio.capture_device_count : ¤t_audio.output_device_count);
|
||||
SDL_AtomicAdd(device->iscapture ? ¤t_audio.capture_device_count : ¤t_audio.output_device_count, -1);
|
||||
}
|
||||
|
||||
SDL_UnlockRWLock(current_audio.device_list_lock);
|
||||
|
Reference in New Issue
Block a user