4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - 2002
6 * You can redistribute this file under terms and conditions
7 * of GNU General Public licence v2 or later.
9 * This file contains vosub_vidix interface to any mplayer's VO driver
12 #ifndef MPLAYER_VOSUB_VIDIX_H
13 #define MPLAYER_VOSUB_VIDIX_H
16 #include "video_out.h"
18 /* drvname can be NULL */
19 int vidix_preinit(const char *drvname
, struct vo_old_functions
*server
);
20 int vidix_init(unsigned src_width
,unsigned src_height
,
21 unsigned dest_x
,unsigned dest_y
,unsigned dst_width
,
22 unsigned dst_height
,unsigned format
,unsigned dest_bpp
,
23 unsigned vid_w
,unsigned vid_h
);
24 int vidix_start(void);
26 void vidix_term( void );
27 uint32_t vidix_control(uint32_t request
, void *data
);
28 uint32_t vidix_query_fourcc(uint32_t fourcc
);
30 #include "vidix/vidix.h"
32 int vidix_grkey_support(void);
33 int vidix_grkey_get(vidix_grkey_t
*gr_key
);
34 int vidix_grkey_set(const vidix_grkey_t
*gr_key
);
36 #endif /* MPLAYER_VOSUB_VIDIX_H */