diff options
Diffstat (limited to 'xine/vo_post.h')
-rw-r--r-- | xine/vo_post.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/xine/vo_post.h b/xine/vo_post.h new file mode 100644 index 00000000..c14cf9f3 --- /dev/null +++ b/xine/vo_post.h @@ -0,0 +1,20 @@ +/* + * vo_post.h: Intercept video driver + * + * See the main source file 'xineliboutput.c' for copyright information and + * how to reach the author. + * + * $Id: vo_post.h,v 1.1 2008-11-20 09:24:27 phintuka Exp $ + * + */ + +#ifndef _XINELIBOUTPUT_VO_POST_H +#define _XINELIBOUTPUT_VO_POST_H + +#include <xine/video_out.h> + +/* Wire / unwire hook chain to video port */ +int wire_video_driver(xine_video_port_t *video_port, vo_driver_t *hook); +int unwire_video_driver(xine_video_port_t *video_port, vo_driver_t *hook, vo_driver_t *video_out); + +#endif /* _XINELIBOUTPUT_VO_POST_H */ |