From 1802e494ede1b9287fb5639c5812181d8543813a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20Ni=C3=9Fl?= Date: Mon, 16 Apr 2007 00:09:15 +0200 Subject: FIX: Make sleeps in video out loops interruptable for immediate OSD redrawing. While splitting my original big patch set, I've lost three lines. This change will make xine-lib compile again. --- src/xine-engine/video_out.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index d61df1eb2..6a55f9705 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -131,6 +131,9 @@ typedef struct { int frame_drop_limit; int frame_drop_cpt; int crop_left, crop_right, crop_top, crop_bottom; + pthread_mutex_t trigger_drawing_mutex; + pthread_cond_t trigger_drawing_cond; + int trigger_drawing; } vos_t; -- cgit v1.2.3