Mercurial > mplayer.hg
annotate libvo/vesa_lvo.c @ 4474:05ac3586db02
added support for dhahelper
author | alex |
---|---|
date | Sat, 02 Feb 2002 07:05:52 +0000 |
parents | 9b6430df4de5 |
children | be41ab8c8918 |
rev | line source |
---|---|
2869 | 1 /* |
2 * vesa_lvo.c | |
3 * | |
4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001 | |
5 * | |
6 * You can redistribute this file under terms and conditions | |
7 * of GNU General Public licence v2. | |
8 * | |
9 * This file contains vo_vesa interface to Linux Video Overlay. | |
10 * (Partly based on vo_mga.c from mplayer's package) | |
11 */ | |
12 | |
13 #include <inttypes.h> | |
14 #include <sys/ioctl.h> | |
15 #include <unistd.h> | |
16 #include <fcntl.h> | |
17 #include <sys/mman.h> | |
18 #include <stdio.h> | |
19 #include <stdlib.h> | |
20 #include <string.h> | |
21 | |
3205 | 22 #include "config.h" |
23 | |
2869 | 24 #include "vesa_lvo.h" |
25 #include "img_format.h" | |
26 #include "../drivers/mga_vid.h" /* <- should be changed to "linux/'something'.h" */ | |
27 #include "fastmemcpy.h" | |
3205 | 28 #include "osd.h" |
3202 | 29 #include "video_out.h" |
30 | |
3165 | 31 #define WIDTH_ALIGN 32 /* should be 16 for rage:422 and 32 for rage:420 */ |
3266
ff90589b635f
Fixed single buffering problems and -vo mga compatibility by number of buffers
nick
parents:
3205
diff
changeset
|
32 #define NUM_FRAMES 10 |
3205 | 33 #define UNUSED(x) ((void)(x)) /**< Removes warning about unused arguments */ |
34 | |
2869 | 35 static uint8_t *frames[NUM_FRAMES]; |
36 | |
37 static int lvo_handler = -1; | |
38 static uint8_t *lvo_mem = NULL; | |
39 static uint8_t next_frame; | |
40 static mga_vid_config_t mga_vid_config; | |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
41 static unsigned image_bpp,image_height,image_width,src_format; |
2952 | 42 extern int verbose; |
2869 | 43 |
44 #define PIXEL_SIZE() ((video_mode_info.BitsPerPixel+7)/8) | |
45 #define SCREEN_LINE_SIZE(pixel_size) (video_mode_info.XResolution*(pixel_size) ) | |
46 #define IMAGE_LINE_SIZE(pixel_size) (image_width*(pixel_size)) | |
47 | |
3202 | 48 extern vo_functions_t video_out_vesa; |
49 | |
2971 | 50 int vlvo_preinit(const char *drvname) |
51 { | |
3017 | 52 if(verbose > 1) printf("vesa_lvo: vlvo_preinit(%s) was called\n",drvname); |
2971 | 53 lvo_handler = open(drvname,O_RDWR); |
54 if(lvo_handler == -1) | |
55 { | |
56 printf("vesa_lvo: Couldn't open '%s'\n",drvname); | |
57 return -1; | |
58 } | |
3202 | 59 /* we are able to tune up this stuff depend on fourcc format */ |
60 video_out_vesa.draw_slice=vlvo_draw_slice; | |
61 video_out_vesa.draw_frame=vlvo_draw_frame; | |
62 video_out_vesa.flip_page=vlvo_flip_page; | |
63 video_out_vesa.draw_osd=vlvo_draw_osd; | |
4372 | 64 video_out_vesa.query_format=vlvo_query_info; |
2971 | 65 return 0; |
66 } | |
67 | |
68 int vlvo_init(unsigned src_width,unsigned src_height, | |
2869 | 69 unsigned x_org,unsigned y_org,unsigned dst_width, |
70 unsigned dst_height,unsigned format,unsigned dest_bpp) | |
71 { | |
72 size_t i,awidth; | |
3017 | 73 if(verbose > 1) printf("vesa_lvo: vlvo_init() was called\n"); |
2869 | 74 image_width = src_width; |
75 image_height = src_height; | |
76 mga_vid_config.version=MGA_VID_VERSION; | |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
77 src_format = mga_vid_config.format=format; |
2869 | 78 awidth = (src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1); |
79 switch(format){ | |
80 case IMGFMT_YV12: | |
81 case IMGFMT_I420: | |
82 case IMGFMT_IYUV: | |
83 image_bpp=16; | |
84 mga_vid_config.frame_size = awidth*src_height+(awidth*src_height)/2; | |
85 break; | |
86 case IMGFMT_YUY2: | |
87 case IMGFMT_UYVY: | |
88 image_bpp=16; | |
89 mga_vid_config.frame_size = awidth*src_height*2; | |
90 break; | |
91 case IMGFMT_RGB15: | |
92 case IMGFMT_BGR15: | |
93 case IMGFMT_RGB16: | |
94 case IMGFMT_BGR16: | |
95 image_bpp=16; | |
96 mga_vid_config.frame_size = awidth*src_height*2; | |
97 break; | |
98 case IMGFMT_RGB24: | |
99 case IMGFMT_BGR24: | |
100 image_bpp=24; | |
101 mga_vid_config.frame_size = awidth*src_height*3; | |
102 break; | |
103 case IMGFMT_RGB32: | |
104 case IMGFMT_BGR32: | |
105 image_bpp=32; | |
106 mga_vid_config.frame_size = awidth*src_height*4; | |
107 break; | |
108 default: | |
109 printf("vesa_lvo: invalid output format %s(%0X)\n",vo_format_name(format),format); | |
110 return -1; | |
111 } | |
112 mga_vid_config.colkey_on=0; | |
113 mga_vid_config.src_width = src_width; | |
114 mga_vid_config.src_height= src_height; | |
115 mga_vid_config.dest_width = dst_width; | |
116 mga_vid_config.dest_height= dst_height; | |
117 mga_vid_config.x_org=x_org; | |
118 mga_vid_config.y_org=y_org; | |
119 mga_vid_config.num_frames=NUM_FRAMES; | |
120 if (ioctl(lvo_handler,MGA_VID_CONFIG,&mga_vid_config)) | |
121 { | |
2971 | 122 perror("vesa_lvo: Error in mga_vid_config ioctl()"); |
123 printf("vesa_lvo: Your fb_vid driver version is incompatible with this MPlayer version!\n"); | |
2869 | 124 return -1; |
125 } | |
126 ioctl(lvo_handler,MGA_VID_ON,0); | |
127 | |
128 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,lvo_handler,0); | |
129 for(i=1;i<NUM_FRAMES;i++) | |
130 frames[i] = frames[i-1] + mga_vid_config.frame_size; | |
131 next_frame = 0; | |
132 lvo_mem = frames[next_frame]; | |
133 | |
134 /*clear the buffer*/ | |
135 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames); | |
136 return 0; | |
137 } | |
138 | |
139 void vlvo_term( void ) | |
140 { | |
3017 | 141 if(verbose > 1) printf("vesa_lvo: vlvo_term() was called\n"); |
2869 | 142 ioctl( lvo_handler,MGA_VID_OFF,0 ); |
143 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames); | |
144 if(lvo_handler != -1) close(lvo_handler); | |
145 } | |
146 | |
3165 | 147 uint32_t vlvo_draw_slice_420(uint8_t *image[], int stride[], int w,int h,int x,int y) |
2869 | 148 { |
149 uint8_t *src; | |
150 uint8_t *dest; | |
3020 | 151 uint32_t bespitch,bespitch2; |
2869 | 152 int i; |
153 | |
154 bespitch = (mga_vid_config.src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1); | |
155 bespitch2 = bespitch/2; | |
156 | |
157 dest = lvo_mem + bespitch * y + x; | |
158 src = image[0]; | |
159 for(i=0;i<h;i++){ | |
160 memcpy(dest,src,w); | |
161 src+=stride[0]; | |
162 dest += bespitch; | |
163 } | |
164 | |
165 w/=2;h/=2;x/=2;y/=2; | |
166 | |
167 dest = lvo_mem + bespitch*mga_vid_config.src_height + bespitch2 * y + x; | |
168 src = image[1]; | |
169 for(i=0;i<h;i++){ | |
170 memcpy(dest,src,w); | |
171 src+=stride[1]; | |
172 dest += bespitch2; | |
173 } | |
174 | |
175 dest = lvo_mem + bespitch*mga_vid_config.src_height | |
176 + bespitch*mga_vid_config.src_height / 4 | |
177 + bespitch2 * y + x; | |
178 src = image[2]; | |
179 for(i=0;i<h;i++){ | |
180 memcpy(dest,src,w); | |
181 src+=stride[2]; | |
182 dest += bespitch2; | |
183 } | |
3020 | 184 return 0; |
185 } | |
186 | |
187 uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) | |
188 { | |
189 if(verbose > 1) printf("vesa_lvo: vlvo_draw_slice() was called\n"); | |
3165 | 190 if(src_format == IMGFMT_YV12 || src_format == IMGFMT_I420 || src_format == IMGFMT_IYUV) |
3202 | 191 vlvo_draw_slice_420(image,stride,w,h,x,y); |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
192 else |
3202 | 193 { |
194 uint8_t *dst; | |
195 uint8_t bytpp; | |
196 bytpp = (image_bpp+7)/8; | |
197 dst = lvo_mem + (image_width * y + x)*bytpp; | |
198 /* vlvo_draw_slice_422(image,stride,w,h,x,y); just for speed */ | |
199 memcpy(dst,image[0],mga_vid_config.frame_size); | |
200 } | |
2924 | 201 return 0; |
2869 | 202 } |
203 | |
3017 | 204 uint32_t vlvo_draw_frame(uint8_t *image[]) |
2869 | 205 { |
3017 | 206 /* Note it's very strange but sometime for YUY2 draw_frame is called */ |
207 memcpy(lvo_mem,image[0],mga_vid_config.frame_size); | |
208 if(verbose > 1) printf("vesa_lvo: vlvo_draw_frame() was called\n"); | |
209 return 0; | |
2869 | 210 } |
211 | |
212 void vlvo_flip_page(void) | |
213 { | |
3017 | 214 if(verbose > 1) printf("vesa_lvo: vlvo_flip_page() was called\n"); |
3266
ff90589b635f
Fixed single buffering problems and -vo mga compatibility by number of buffers
nick
parents:
3205
diff
changeset
|
215 if(vo_doublebuffering) |
ff90589b635f
Fixed single buffering problems and -vo mga compatibility by number of buffers
nick
parents:
3205
diff
changeset
|
216 { |
2869 | 217 ioctl(lvo_handler,MGA_VID_FSEL,&next_frame); |
218 next_frame=(next_frame+1)%mga_vid_config.num_frames; | |
219 lvo_mem=frames[next_frame]; | |
3266
ff90589b635f
Fixed single buffering problems and -vo mga compatibility by number of buffers
nick
parents:
3205
diff
changeset
|
220 } |
2869 | 221 } |
222 | |
3205 | 223 static void draw_alpha_null(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) |
224 { | |
225 UNUSED(x0); | |
226 UNUSED(y0); | |
227 UNUSED(w); | |
228 UNUSED(h); | |
229 UNUSED(src); | |
230 UNUSED(srca); | |
231 UNUSED(stride); | |
232 } | |
233 | |
234 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride) | |
235 { | |
236 uint32_t bespitch = /*(*/mga_vid_config.src_width;// + 15) & ~15; | |
237 switch(mga_vid_config.format){ | |
238 case IMGFMT_BGR15: | |
239 case IMGFMT_RGB15: | |
240 vo_draw_alpha_rgb15(w,h,src,srca,stride,lvo_mem+2*(y0*bespitch+x0),2*bespitch); | |
241 break; | |
242 case IMGFMT_BGR16: | |
243 case IMGFMT_RGB16: | |
244 vo_draw_alpha_rgb16(w,h,src,srca,stride,lvo_mem+2*(y0*bespitch+x0),2*bespitch); | |
245 break; | |
246 case IMGFMT_BGR24: | |
247 case IMGFMT_RGB24: | |
248 vo_draw_alpha_rgb24(w,h,src,srca,stride,lvo_mem+3*(y0*bespitch+x0),3*bespitch); | |
249 break; | |
250 case IMGFMT_BGR32: | |
251 case IMGFMT_RGB32: | |
252 vo_draw_alpha_rgb32(w,h,src,srca,stride,lvo_mem+4*(y0*bespitch+x0),4*bespitch); | |
253 break; | |
254 case IMGFMT_YV12: | |
255 case IMGFMT_IYUV: | |
256 case IMGFMT_I420: | |
257 vo_draw_alpha_yv12(w,h,src,srca,stride,lvo_mem+bespitch*y0+x0,bespitch); | |
258 break; | |
259 case IMGFMT_YUY2: | |
260 vo_draw_alpha_yuy2(w,h,src,srca,stride,lvo_mem+2*(bespitch*y0+x0),bespitch); | |
261 break; | |
262 case IMGFMT_UYVY: | |
263 vo_draw_alpha_yuy2(w,h,src,srca,stride,lvo_mem+2*(bespitch*y0+x0)+1,bespitch); | |
264 break; | |
265 default: | |
266 draw_alpha_null(x0,y0,w,h,src,srca,stride); | |
267 } | |
268 } | |
269 | |
2869 | 270 void vlvo_draw_osd(void) |
271 { | |
3017 | 272 if(verbose > 1) printf("vesa_lvo: vlvo_draw_osd() was called\n"); |
2869 | 273 /* TODO: hw support */ |
3205 | 274 #if 0 |
275 /* disable this stuff until new fbvid.h interface will be implemented | |
276 because in different fourcc radeon_vid and rage128_vid have different | |
277 width alignment */ | |
278 vo_draw_text(mga_vid_config.src_width,mga_vid_config.src_height,draw_alpha); | |
279 #endif | |
2869 | 280 } |
281 | |
282 uint32_t vlvo_query_info(uint32_t format) | |
283 { | |
3017 | 284 if(verbose > 1) printf("vesa_lvo: query_format was called: %x (%s)\n",format,vo_format_name(format)); |
2869 | 285 return 1; |
286 } |