Commit 72f131d9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

vout_ReleasePicture: do not wake up the video output thread

The video output thread never allocates pictures from the decoder
thread. It uses the reserve private pool and, when if not rendering
directly, the display pool. Thus it has nothing particular to do when
a decoder pool picture is released.

(vout_PutPicture() wakes the thread up to kick rendering.)
parent 61828fc1
...@@ -461,8 +461,6 @@ void vout_ReleasePicture(vout_thread_t *vout, picture_t *picture) ...@@ -461,8 +461,6 @@ void vout_ReleasePicture(vout_thread_t *vout, picture_t *picture)
picture_Release(picture); picture_Release(picture);
vlc_mutex_unlock(&vout->p->picture_lock); vlc_mutex_unlock(&vout->p->picture_lock);
vout_control_Wake(&vout->p->control);
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment