mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
audio: pipewire: Avoid redundant locking
The pw_thread_loop already locks and unlocks the thread mutex at the start and end of each loop iteration, so these locks are unnecessary.
This commit is contained in:
parent
5bb2bbd40c
commit
8deb406300
@ -418,16 +418,12 @@ static void
|
|||||||
core_events_hotplug_init_callback(void *object, uint32_t id, int seq)
|
core_events_hotplug_init_callback(void *object, uint32_t id, int seq)
|
||||||
{
|
{
|
||||||
if (id == PW_ID_CORE && seq == hotplug_init_seq_val) {
|
if (id == PW_ID_CORE && seq == hotplug_init_seq_val) {
|
||||||
PIPEWIRE_pw_thread_loop_lock(hotplug_loop);
|
|
||||||
|
|
||||||
/* This core listener is no longer needed. */
|
/* This core listener is no longer needed. */
|
||||||
spa_hook_remove(&hotplug_core_listener);
|
spa_hook_remove(&hotplug_core_listener);
|
||||||
|
|
||||||
/* Signal that the initial I/O list is populated */
|
/* Signal that the initial I/O list is populated */
|
||||||
SDL_AtomicSet(&hotplug_init_complete, 1);
|
SDL_AtomicSet(&hotplug_init_complete, 1);
|
||||||
PIPEWIRE_pw_thread_loop_signal(hotplug_loop, false);
|
PIPEWIRE_pw_thread_loop_signal(hotplug_loop, false);
|
||||||
|
|
||||||
PIPEWIRE_pw_thread_loop_unlock(hotplug_loop);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user