mplayer.c: #include mplayer.h and access_mpcontext.h
[mplayer.git] / libvo / vosub_vidix.h
blob708db684f6f33d5d2e29c2ce5bf5e70ced3e3b9b
1 /*
2 * vosub_vidix.h
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
15 #include <stdint.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);
25 int vidix_stop(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"
31 /* graphic keys */
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 */