Unlock a mixer previously locked by a call to MIX_LockMixer().
Defined in <SDL3_mixer/SDL_mixer.h>
void MIX_UnlockMixer(MIX_Mixer *mixer);| MIX_Mixer * | mixer | the mixer to unlock. May be NULL. |
While locked, the mixer will not be able to mix more audio or change its internal state another thread. Those other threads will block until the mixer is unlocked again.
Under the hood, this function calls SDL_LockMutex(), so all the same rules apply: the lock can be recursive, it must be unlocked the same number of times from the same thread that locked it, etc.
Unlocking a NULL mixer is a safe no-op.
This call must be paired with a previous MIX_LockMixer call on the same thread.
This function is available since SDL_mixer 3.0.0.