4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
6 * You can redistribute this file under terms and conditions
7 * of GNU General Public licence v2.
9 * This file contains vo_vesa interface to Linux Video Overlay.
10 * (Partly based on vo_mga.c from mplayer's package)
14 #include <sys/ioctl.h>
27 #include "img_format.h"
28 #include "drivers/mga_vid.h" /* <- should be changed to "linux/'something'.h" */
29 #include "fastmemcpy.h"
31 #include "video_out.h"
32 #include "libmpcodecs/vfcap.h"
34 #define WIDTH_ALIGN 32 /* should be 16 for rage:422 and 32 for rage:420 */
36 #define UNUSED(x) ((void)(x)) /**< Removes warning about unused arguments */
38 static uint8_t *frames
[NUM_FRAMES
];
40 static int lvo_handler
= -1;
41 static uint8_t *lvo_mem
= NULL
;
42 static uint8_t next_frame
;
43 static mga_vid_config_t mga_vid_config
;
44 static unsigned image_bpp
,image_height
,image_width
,src_format
;
45 uint32_t vlvo_control(uint32_t request
, void *data
, ...);
47 #define PIXEL_SIZE() ((video_mode_info.BitsPerPixel+7)/8)
48 #define SCREEN_LINE_SIZE(pixel_size) (video_mode_info.XResolution*(pixel_size) )
49 #define IMAGE_LINE_SIZE(pixel_size) (image_width*(pixel_size))
51 extern vo_functions_t video_out_vesa
;
53 int vlvo_preinit(const char *drvname
)
55 mp_msg(MSGT_VO
,MSGL_WARN
, MSGTR_LIBVO_VESA_ThisBranchIsNoLongerSupported
);
57 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
58 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: vlvo_preinit(%s) was called\n",drvname
);}
59 lvo_handler
= open(drvname
,O_RDWR
);
62 mp_msg(MSGT_VO
,MSGL_WARN
, MSGTR_LIBVO_VESA_CouldntOpen
,drvname
);
65 /* we are able to tune up this stuff depend on fourcc format */
66 video_out_vesa
.draw_slice
=vlvo_draw_slice
;
67 video_out_vesa
.draw_frame
=vlvo_draw_frame
;
68 video_out_vesa
.flip_page
=vlvo_flip_page
;
69 video_out_vesa
.draw_osd
=vlvo_draw_osd
;
70 video_out_vesa
.control
=vlvo_control
;
74 int vlvo_init(unsigned src_width
,unsigned src_height
,
75 unsigned x_org
,unsigned y_org
,unsigned dst_width
,
76 unsigned dst_height
,unsigned format
,unsigned dest_bpp
)
79 mp_msg(MSGT_VO
,MSGL_WARN
, MSGTR_LIBVO_VESA_ThisBranchIsNoLongerSupported
);
81 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
82 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: vlvo_init() was called\n");}
83 image_width
= src_width
;
84 image_height
= src_height
;
85 mga_vid_config
.version
=MGA_VID_VERSION
;
86 src_format
= mga_vid_config
.format
=format
;
87 awidth
= (src_width
+ (WIDTH_ALIGN
-1)) & ~(WIDTH_ALIGN
-1);
93 mga_vid_config
.frame_size
= awidth
*src_height
+(awidth
*src_height
)/2;
98 mga_vid_config
.frame_size
= awidth
*src_height
*2;
105 mga_vid_config
.frame_size
= awidth
*src_height
*2;
110 mga_vid_config
.frame_size
= awidth
*src_height
*3;
115 mga_vid_config
.frame_size
= awidth
*src_height
*4;
118 mp_msg(MSGT_VO
,MSGL_WARN
, MSGTR_LIBVO_VESA_InvalidOutputFormat
,vo_format_name(format
),format
);
121 mga_vid_config
.colkey_on
=0;
122 mga_vid_config
.src_width
= src_width
;
123 mga_vid_config
.src_height
= src_height
;
124 mga_vid_config
.dest_width
= dst_width
;
125 mga_vid_config
.dest_height
= dst_height
;
126 mga_vid_config
.x_org
=x_org
;
127 mga_vid_config
.y_org
=y_org
;
128 mga_vid_config
.num_frames
=NUM_FRAMES
;
129 if (ioctl(lvo_handler
,MGA_VID_CONFIG
,&mga_vid_config
))
131 perror("vesa_lvo: Error in mga_vid_config ioctl()");
132 mp_msg(MSGT_VO
,MSGL_WARN
, MSGTR_LIBVO_VESA_IncompatibleDriverVersion
);
135 ioctl(lvo_handler
,MGA_VID_ON
,0);
137 frames
[0] = (char*)mmap(0,mga_vid_config
.frame_size
*mga_vid_config
.num_frames
,PROT_WRITE
,MAP_SHARED
,lvo_handler
,0);
138 for(i
=1;i
<NUM_FRAMES
;i
++)
139 frames
[i
] = frames
[i
-1] + mga_vid_config
.frame_size
;
141 lvo_mem
= frames
[next_frame
];
144 memset(frames
[0],0x80,mga_vid_config
.frame_size
*mga_vid_config
.num_frames
);
148 void vlvo_term( void )
150 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
151 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: vlvo_term() was called\n");}
152 ioctl( lvo_handler
,MGA_VID_OFF
,0 );
153 munmap(frames
[0],mga_vid_config
.frame_size
*mga_vid_config
.num_frames
);
154 if(lvo_handler
!= -1) close(lvo_handler
);
157 uint32_t vlvo_draw_slice_420(uint8_t *image
[], int stride
[], int w
,int h
,int x
,int y
)
161 uint32_t bespitch
,bespitch2
;
164 bespitch
= (mga_vid_config
.src_width
+ (WIDTH_ALIGN
-1)) & ~(WIDTH_ALIGN
-1);
165 bespitch2
= bespitch
/2;
167 dest
= lvo_mem
+ bespitch
* y
+ x
;
177 dest
= lvo_mem
+ bespitch
*mga_vid_config
.src_height
+ bespitch2
* y
+ x
;
185 dest
= lvo_mem
+ bespitch
*mga_vid_config
.src_height
186 + bespitch
*mga_vid_config
.src_height
/ 4
197 uint32_t vlvo_draw_slice(uint8_t *image
[], int stride
[], int w
,int h
,int x
,int y
)
199 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
200 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: vlvo_draw_slice() was called\n");}
201 if(src_format
== IMGFMT_YV12
|| src_format
== IMGFMT_I420
|| src_format
== IMGFMT_IYUV
)
202 vlvo_draw_slice_420(image
,stride
,w
,h
,x
,y
);
207 bytpp
= (image_bpp
+7)/8;
208 dst
= lvo_mem
+ (image_width
* y
+ x
)*bytpp
;
209 /* vlvo_draw_slice_422(image,stride,w,h,x,y); just for speed */
210 memcpy(dst
,image
[0],mga_vid_config
.frame_size
);
215 uint32_t vlvo_draw_frame(uint8_t *image
[])
217 /* Note it's very strange but sometime for YUY2 draw_frame is called */
218 memcpy(lvo_mem
,image
[0],mga_vid_config
.frame_size
);
219 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
220 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: vlvo_flip_page() was called\n");}
224 void vlvo_flip_page(void)
226 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
227 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: vlvo_draw_osd() was called\n");}
228 if(vo_doublebuffering
)
230 ioctl(lvo_handler
,MGA_VID_FSEL
,&next_frame
);
231 next_frame
=(next_frame
+1)%mga_vid_config
.num_frames
;
232 lvo_mem
=frames
[next_frame
];
236 static void draw_alpha_null(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
)
247 static void draw_alpha(int x0
,int y0
, int w
,int h
, unsigned char* src
, unsigned char *srca
, int stride
)
249 uint32_t bespitch
= /*(*/mga_vid_config
.src_width
;// + 15) & ~15;
250 switch(mga_vid_config
.format
){
253 vo_draw_alpha_rgb15(w
,h
,src
,srca
,stride
,lvo_mem
+2*(y0
*bespitch
+x0
),2*bespitch
);
257 vo_draw_alpha_rgb16(w
,h
,src
,srca
,stride
,lvo_mem
+2*(y0
*bespitch
+x0
),2*bespitch
);
261 vo_draw_alpha_rgb24(w
,h
,src
,srca
,stride
,lvo_mem
+3*(y0
*bespitch
+x0
),3*bespitch
);
265 vo_draw_alpha_rgb32(w
,h
,src
,srca
,stride
,lvo_mem
+4*(y0
*bespitch
+x0
),4*bespitch
);
270 vo_draw_alpha_yv12(w
,h
,src
,srca
,stride
,lvo_mem
+bespitch
*y0
+x0
,bespitch
);
273 vo_draw_alpha_yuy2(w
,h
,src
,srca
,stride
,lvo_mem
+2*(bespitch
*y0
+x0
),bespitch
);
276 vo_draw_alpha_yuy2(w
,h
,src
,srca
,stride
,lvo_mem
+2*(bespitch
*y0
+x0
)+1,bespitch
);
279 draw_alpha_null(x0
,y0
,w
,h
,src
,srca
,stride
);
283 void vlvo_draw_osd(void)
285 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
286 mp_msg(MSGT_VO
,MSGL_DBG2
,"vesa_lvo: vlvo_draw_osd() was called\n"); }
287 /* TODO: hw support */
289 /* disable this stuff until new fbvid.h interface will be implemented
290 because in different fourcc radeon_vid and rage128_vid have different
292 vo_draw_text(mga_vid_config
.src_width
,mga_vid_config
.src_height
,draw_alpha
);
296 uint32_t vlvo_query_info(uint32_t format
)
298 if( mp_msg_test(MSGT_VO
,MSGL_DBG2
) ) {
299 mp_msg(MSGT_VO
,MSGL_DBG2
, "vesa_lvo: query_format was called: %x (%s)\n",format
,vo_format_name(format
)); }
300 return VFCAP_CSP_SUPPORTED
;
303 uint32_t vlvo_control(uint32_t request
, void *data
, ...)
306 case VOCTRL_QUERY_FORMAT
:
307 return vlvo_query_info(*((uint32_t*)data
));