summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/x11_common.h')
-rw-r--r--video/out/x11_common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/video/out/x11_common.h b/video/out/x11_common.h
index f6d73dae00..eeff773bef 100644
--- a/video/out/x11_common.h
+++ b/video/out/x11_common.h
@@ -20,9 +20,12 @@
#include <stdint.h>
#include <stdbool.h>
+#include <pthread.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
+#include "osdep/semaphore.h"
+
#include "common/common.h"
struct vo;
@@ -57,6 +60,9 @@ struct vo_x11_state {
bool screensaver_enabled;
bool dpms_touched;
double screensaver_time_last;
+ pthread_t screensaver_thread;
+ sem_t screensaver_sem;
+ struct mp_cancel *screensaver_terminate;
XIM xim;
XIC xic;