Mercurial > mplayer.hg
annotate libvo/vesa_lvo.c @ 2989:53a98d2feb8a
typo
NB: after more tests, static support works when "bad" libs are disabled :)
author | pl |
---|---|
date | Mon, 19 Nov 2001 01:03:11 +0000 |
parents | 49199909c939 |
children | fb792e58aac5 |
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 | |
22 #include "vesa_lvo.h" | |
23 #include "img_format.h" | |
24 #include "../drivers/mga_vid.h" /* <- should be changed to "linux/'something'.h" */ | |
25 #include "fastmemcpy.h" | |
26 #include "../mmx_defs.h" | |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
27 #include "../postproc/rgb2rgb.h" |
2869 | 28 |
29 #define WIDTH_ALIGN 32 /* should be 16 for radeons */ | |
30 #define NUM_FRAMES 2 | |
31 static uint8_t *frames[NUM_FRAMES]; | |
32 | |
33 static int lvo_handler = -1; | |
34 static uint8_t *lvo_mem = NULL; | |
35 static uint8_t next_frame; | |
36 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
|
37 static unsigned image_bpp,image_height,image_width,src_format; |
2952 | 38 extern int verbose; |
2869 | 39 |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
40 #define HAVE_RADEON 1 |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
41 |
2869 | 42 #define PIXEL_SIZE() ((video_mode_info.BitsPerPixel+7)/8) |
43 #define SCREEN_LINE_SIZE(pixel_size) (video_mode_info.XResolution*(pixel_size) ) | |
44 #define IMAGE_LINE_SIZE(pixel_size) (image_width*(pixel_size)) | |
45 | |
2971 | 46 int vlvo_preinit(const char *drvname) |
47 { | |
48 lvo_handler = open(drvname,O_RDWR); | |
49 if(lvo_handler == -1) | |
50 { | |
51 printf("vesa_lvo: Couldn't open '%s'\n",drvname); | |
52 return -1; | |
53 } | |
54 return 0; | |
55 } | |
56 | |
57 int vlvo_init(unsigned src_width,unsigned src_height, | |
2869 | 58 unsigned x_org,unsigned y_org,unsigned dst_width, |
59 unsigned dst_height,unsigned format,unsigned dest_bpp) | |
60 { | |
61 size_t i,awidth; | |
62 image_width = src_width; | |
63 image_height = src_height; | |
64 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
|
65 src_format = mga_vid_config.format=format; |
2869 | 66 awidth = (src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1); |
67 switch(format){ | |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
68 #ifdef HAVE_RADEON |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
69 case IMGFMT_YV12: |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
70 case IMGFMT_I420: |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
71 case IMGFMT_IYUV: |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
72 image_bpp=16; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
73 mga_vid_config.format = IMGFMT_YUY2; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
74 mga_vid_config.frame_size = awidth*src_height*2; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
75 break; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
76 #else |
2869 | 77 case IMGFMT_YV12: |
78 case IMGFMT_I420: | |
79 case IMGFMT_IYUV: | |
80 image_bpp=16; | |
81 mga_vid_config.frame_size = awidth*src_height+(awidth*src_height)/2; | |
82 break; | |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
83 #endif |
2869 | 84 case IMGFMT_YUY2: |
85 case IMGFMT_UYVY: | |
86 image_bpp=16; | |
87 mga_vid_config.frame_size = awidth*src_height*2; | |
88 break; | |
89 case IMGFMT_RGB15: | |
90 case IMGFMT_BGR15: | |
91 case IMGFMT_RGB16: | |
92 case IMGFMT_BGR16: | |
93 image_bpp=16; | |
94 mga_vid_config.frame_size = awidth*src_height*2; | |
95 break; | |
96 case IMGFMT_RGB24: | |
97 case IMGFMT_BGR24: | |
98 image_bpp=24; | |
99 mga_vid_config.frame_size = awidth*src_height*3; | |
100 break; | |
101 case IMGFMT_RGB32: | |
102 case IMGFMT_BGR32: | |
103 image_bpp=32; | |
104 mga_vid_config.frame_size = awidth*src_height*4; | |
105 break; | |
106 default: | |
107 printf("vesa_lvo: invalid output format %s(%0X)\n",vo_format_name(format),format); | |
108 return -1; | |
109 } | |
110 mga_vid_config.colkey_on=0; | |
111 mga_vid_config.src_width = src_width; | |
112 mga_vid_config.src_height= src_height; | |
113 mga_vid_config.dest_width = dst_width; | |
114 mga_vid_config.dest_height= dst_height; | |
115 mga_vid_config.x_org=x_org; | |
116 mga_vid_config.y_org=y_org; | |
117 mga_vid_config.num_frames=NUM_FRAMES; | |
118 if (ioctl(lvo_handler,MGA_VID_CONFIG,&mga_vid_config)) | |
119 { | |
2971 | 120 perror("vesa_lvo: Error in mga_vid_config ioctl()"); |
121 printf("vesa_lvo: Your fb_vid driver version is incompatible with this MPlayer version!\n"); | |
2869 | 122 return -1; |
123 } | |
124 ioctl(lvo_handler,MGA_VID_ON,0); | |
125 | |
126 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,lvo_handler,0); | |
127 for(i=1;i<NUM_FRAMES;i++) | |
128 frames[i] = frames[i-1] + mga_vid_config.frame_size; | |
129 next_frame = 0; | |
130 lvo_mem = frames[next_frame]; | |
131 | |
132 /*clear the buffer*/ | |
133 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames); | |
134 return 0; | |
135 } | |
136 | |
137 void vlvo_term( void ) | |
138 { | |
139 ioctl( lvo_handler,MGA_VID_OFF,0 ); | |
140 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames); | |
141 if(lvo_handler != -1) close(lvo_handler); | |
142 } | |
143 | |
144 uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) | |
145 { | |
2924 | 146 #if 0 |
147 /* original vo_mga stuff */ | |
2869 | 148 uint8_t *src; |
149 uint8_t *dest; | |
2924 | 150 uint32_t bespitch,bespitch2,srcpitch; |
2869 | 151 int i; |
152 | |
153 bespitch = (mga_vid_config.src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1); | |
154 bespitch2 = bespitch/2; | |
155 | |
156 dest = lvo_mem + bespitch * y + x; | |
157 src = image[0]; | |
158 for(i=0;i<h;i++){ | |
159 memcpy(dest,src,w); | |
160 src+=stride[0]; | |
161 dest += bespitch; | |
162 } | |
163 | |
164 w/=2;h/=2;x/=2;y/=2; | |
165 | |
166 dest = lvo_mem + bespitch*mga_vid_config.src_height + bespitch2 * y + x; | |
167 src = image[1]; | |
168 for(i=0;i<h;i++){ | |
169 memcpy(dest,src,w); | |
170 src+=stride[1]; | |
171 dest += bespitch2; | |
172 } | |
173 | |
174 dest = lvo_mem + bespitch*mga_vid_config.src_height | |
175 + bespitch*mga_vid_config.src_height / 4 | |
176 + bespitch2 * y + x; | |
177 src = image[2]; | |
178 for(i=0;i<h;i++){ | |
179 memcpy(dest,src,w); | |
180 src+=stride[2]; | |
181 dest += bespitch2; | |
182 } | |
2952 | 183 #else |
184 uint8_t *src; | |
185 uint8_t *dst; | |
2974
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
186 uint8_t bytpp; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
187 bytpp = (image_bpp+7)/8; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
188 dst = lvo_mem + (image_width * y + x)*bytpp; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
189 #ifdef HAVE_RADEON |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
190 if(src_format == IMGFMT_YV12) |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
191 { |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
192 yv12toyuy2(image[0],image[1],image[2],dst |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
193 ,w,h,stride[0],stride[1],w*2); |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
194 } |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
195 else |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
196 #endif |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
197 { |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
198 src = image[0]; |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
199 memcpy(dst,src,w*h*bytpp); |
49199909c939
Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents:
2971
diff
changeset
|
200 } |
2924 | 201 #endif |
202 return 0; | |
2869 | 203 } |
204 | |
205 uint32_t vlvo_draw_frame(uint8_t *src[]) | |
206 { | |
207 size_t i, ssize; | |
208 uint8_t *dest; | |
209 const uint8_t *sptr; | |
210 ssize = IMAGE_LINE_SIZE((image_bpp+7)/8); | |
211 dest = lvo_mem; | |
212 sptr = src[0]; | |
213 for(i=0;i<image_height;i++) | |
214 { | |
215 memcpy(dest,sptr,ssize); | |
216 sptr += ssize; | |
217 dest += ssize; | |
218 } | |
219 } | |
220 | |
221 void vlvo_flip_page(void) | |
222 { | |
223 ioctl(lvo_handler,MGA_VID_FSEL,&next_frame); | |
224 next_frame=(next_frame+1)%mga_vid_config.num_frames; | |
225 lvo_mem=frames[next_frame]; | |
226 } | |
227 | |
228 void vlvo_draw_osd(void) | |
229 { | |
230 /* TODO: hw support */ | |
231 } | |
232 | |
233 uint32_t vlvo_query_info(uint32_t format) | |
234 { | |
2952 | 235 if(verbose) printf("vesa_lvo: query_format was called: %x (%s)\n",format,vo_format_name(format)); |
2869 | 236 return 1; |
237 } |