summaryrefslogtreecommitdiff
path: root/xine/vo_hook.h
diff options
context:
space:
mode:
Diffstat (limited to 'xine/vo_hook.h')
-rw-r--r--xine/vo_hook.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/xine/vo_hook.h b/xine/vo_hook.h
new file mode 100644
index 00000000..59b17c07
--- /dev/null
+++ b/xine/vo_hook.h
@@ -0,0 +1,27 @@
+/*
+ * vo_hook.h: Intercept video driver
+ *
+ * See the main source file 'xineliboutput.c' for copyright information and
+ * how to reach the author.
+ *
+ * $Id: vo_hook.h,v 1.1 2008-11-20 09:24:27 phintuka Exp $
+ *
+ */
+
+#ifndef _XINELIBOUTPUT_VO_HOOK_H
+#define _XINELIBOUTPUT_VO_HOOK_H
+
+#include <xine/video_out.h>
+
+/*
+ * vo_driver_hook_t
+ *
+ * Used as base for video driver hooks
+ */
+
+typedef struct driver_hook_s {
+ vo_driver_t vo; /* public part */
+ vo_driver_t *orig_driver;
+} vo_driver_hook_t;
+
+#endif /* _XINELIBOUTPUT_VO_HOOK_H */