mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-19 09:41:32 +08:00
deps/media-playback: Fix pause continually running loop
Fixes an issue where when paused, the thread loop would continue to repeat endlessly until unpaused.
This commit is contained in:
+2
-1
@@ -679,9 +679,10 @@ static inline bool mp_media_thread(mp_media_t *m)
|
||||
|
||||
pthread_mutex_lock(&m->mutex);
|
||||
is_active = m->active;
|
||||
pause = m->pause;
|
||||
pthread_mutex_unlock(&m->mutex);
|
||||
|
||||
if (!is_active) {
|
||||
if (!is_active || pause) {
|
||||
if (os_sem_wait(m->sem) < 0)
|
||||
return false;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user