diff options
author | phintuka <phintuka> | 2008-11-20 09:25:52 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-20 09:25:52 +0000 |
commit | 8fb31e5479d92e3c18cb1feb3dc099496698f975 (patch) | |
tree | 4d29339ded29e3e240dfed7a82bd2239215e2885 /xine/vo_hook.h | |
parent | 1a03343dbbb0b091ab0a71d898d1911ffcc3ec4d (diff) | |
download | xineliboutput-1_1_0pre1.tar.gz xineliboutput-1_1_0pre1.tar.bz2 |
New filexineliboutput-1_1_0pre1
Diffstat (limited to 'xine/vo_hook.h')
-rw-r--r-- | xine/vo_hook.h | 27 |
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 */ |