2 VIDIX accelerated overlay on (black) background
18 #include "video_out.h"
19 #include "video_out_internal.h"
25 #include "vosub_vidix.h"
26 #include "vidix/vidixlib.h"
29 static vo_info_t info
= {
38 #define UNUSED(x) ((void)(x)) /* Removes warning about unused arguments */
41 static char *vidix_name
;
42 static uint32_t swidth
,sheight
,sformat
;
43 /// center video only when screenw & height are set
44 static uint32_t center
=0;
45 static vidix_grkey_t gr_key
;
48 static uint32_t setup_vidix(void){
50 aspect(&vo_dwidth
,&vo_dheight
,vo_fs
? A_ZOOM
: A_NOZOOM
);
52 if(vo_dwidth
<= vo_screenwidth
)x
= (vo_screenwidth
- vo_dwidth
)/2;
54 if(vo_dheight
<= vo_screenheight
)y
= (vo_screenheight
- vo_dheight
)/2;
57 if(vo_config_count
)vidix_stop();
58 if(vidix_init(swidth
, sheight
, x
, y
, vo_dwidth
, vo_dheight
, sformat
, 32, vo_screenwidth
,vo_screenheight
)){
59 mp_msg(MSGT_VO
, MSGL_FATAL
, "Can't setup VIDIX driver: %s\n", strerror(errno
));
63 if(vidix_grkey_support()){
64 vidix_grkey_get(&gr_key
);
65 gr_key
.key_op
= KEYS_PUT
;
66 if (!vo_fs
&& !(vo_colorkey
& 0xff000000)){
67 gr_key
.ckey
.op
= CKEY_TRUE
;
68 gr_key
.ckey
.red
= (vo_colorkey
& 0x00FF0000) >> 16;
69 gr_key
.ckey
.green
= (vo_colorkey
& 0x0000FF00) >> 8;
70 gr_key
.ckey
.blue
= vo_colorkey
& 0x000000FF;
72 else gr_key
.ckey
.op
= CKEY_FALSE
;
73 vidix_grkey_set(&gr_key
);
78 static int config(uint32_t width
, uint32_t height
, uint32_t d_width
,uint32_t d_height
, uint32_t flags
, char *title
, uint32_t format
){
79 vo_fs
= flags
& VOFLAG_FULLSCREEN
;
81 if(vo_screenwidth
&& vo_screenheight
){
82 if(!vo_geometry
)center
=1;
84 else mp_msg(MSGT_VO
, MSGL_WARN
, "vo_cvidix: warn: screenwidth and height not set assuming 640x480\n");
86 if(!vo_screenwidth
)vo_screenwidth
=640;
87 if(!vo_screenheight
)vo_screenheight
=480;
93 aspect_save_orig(width
,height
);
94 aspect_save_prescale(d_width
,d_height
);
95 aspect_save_screenres(vo_screenwidth
,vo_screenheight
);
100 else geometry(&vo_dx
, &vo_dy
, &vo_dwidth
, &vo_dheight
,vo_screenwidth
,vo_screenheight
);
101 return setup_vidix();
104 static void check_events(void){
107 /* draw_osd, flip_page, draw_slice, draw_frame should be
108 overwritten with vidix functions (vosub_vidix.c) */
109 static void draw_osd(void){
110 mp_msg(MSGT_VO
, MSGL_FATAL
, "vo_cvidix: error: didn't use vidix draw_osd!\n");
114 static void flip_page(void){
115 mp_msg(MSGT_VO
, MSGL_FATAL
, "vo_cvidix: error: didn't use vidix flip_page!\n");
119 static int draw_slice(uint8_t *src
[], int stride
[],int w
, int h
, int x
, int y
){
126 mp_msg(MSGT_VO
, MSGL_FATAL
, "vo_cvidix: error: didn't use vidix draw_slice!\n");
130 static int draw_frame(uint8_t *src
[]){
132 mp_msg(MSGT_VO
, MSGL_FATAL
, "vo_cvidix: error: didn't use vidix draw_frame!\n");
136 static int query_format(uint32_t format
){
137 return(vidix_query_fourcc(format
));
140 static void uninit(void){
141 if(!vo_config_count
) return;
149 static int preinit(const char *arg
){
150 if(arg
)vidix_name
= strdup(arg
);
152 mp_msg(MSGT_VO
, MSGL_INFO
, "vo_cvidix: No vidix driver name provided, probing available ones (-v option for details)!\n");
155 if(vidix_preinit(vidix_name
, &video_out_cvidix
))return 1;
159 static int control(uint32_t request
, void *data
, ...){
161 case VOCTRL_QUERY_FORMAT
:
162 return query_format(*((uint32_t*)data
));
163 case VOCTRL_FULLSCREEN
:
168 case VOCTRL_SET_EQUALIZER
:
173 value
= va_arg(ap
, int);
175 return vidix_control(request
, data
, (int *) value
);
177 case VOCTRL_GET_EQUALIZER
:
182 value
= va_arg(ap
, int *);
184 return vidix_control(request
, data
, value
);
187 return vidix_control(request
, data
);