Mercurial > mplayer.hg
annotate libvo/mga_common.c @ 6524:05cd2cf758e4
if09 support
author | alex |
---|---|
date | Sun, 23 Jun 2002 15:03:54 +0000 |
parents | 86d5fc5b54e2 |
children | a31b9f15cbff |
rev | line source |
---|---|
413 | 1 |
566 | 2 #include "fastmemcpy.h" |
2625 | 3 #include "../mmx_defs.h" |
5405 | 4 #include "../postproc/rgb2rgb.h" |
1 | 5 |
6 // mga_vid drawing functions | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6311
diff
changeset
|
7 #ifdef VO_XMGA |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
8 static void set_window( void ); /* forward declaration to kill warnings */ |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6311
diff
changeset
|
9 #endif |
1 | 10 |
56 | 11 static int mga_next_frame=0; |
12 | |
13 static mga_vid_config_t mga_vid_config; | |
14 static uint8_t *vid_data, *frames[4]; | |
5389
7296c4262457
quick hack to make vo_mga accept multiple calls to config
rfelker
parents:
5335
diff
changeset
|
15 static int f = -1; |
56 | 16 |
202 | 17 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
18 int x,y; | |
19 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; | |
466 | 20 switch(mga_vid_config.format){ |
21 case MGA_VID_FORMAT_YV12: | |
470 | 22 case MGA_VID_FORMAT_IYUV: |
23 case MGA_VID_FORMAT_I420: | |
326 | 24 vo_draw_alpha_yv12(w,h,src,srca,stride,vid_data+bespitch*y0+x0,bespitch); |
466 | 25 break; |
26 case MGA_VID_FORMAT_YUY2: | |
326 | 27 vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0),2*bespitch); |
466 | 28 break; |
29 case MGA_VID_FORMAT_UYVY: | |
30 vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0)+1,2*bespitch); | |
31 break; | |
32 } | |
1 | 33 } |
34 | |
5014
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
35 static int mga_set_video_eq( const vidix_video_eq_t *info) |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
36 { |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
37 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
38 uint32_t luma; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
39 float factor = 256.0 / 2000; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
40 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
41 luma = ((int)(info->brightness * factor) << 16) + |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
42 ((int)(info->contrast * factor) & 0xFFFF); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
43 if (ioctl(f,MGA_VID_SET_LUMA,luma)) { |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
44 perror("Error in mga_vid_config ioctl()"); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
45 printf("Could not set luma values in the kernel module!\n"); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
46 return -1; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
47 } |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
48 return 0; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
49 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
50 } |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
51 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
52 static int mga_get_video_eq( vidix_video_eq_t *info) |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
53 { |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
54 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
55 uint32_t luma; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
56 float factor = 2000.0 / 256; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
57 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
58 if (ioctl(f,MGA_VID_GET_LUMA,&luma)) { |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
59 perror("Error in mga_vid_config ioctl()"); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
60 printf("Could not get luma values from the kernel module!\n"); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
61 return -1; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
62 } |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
63 info->brightness = (luma >> 16) * factor; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
64 info->cap |= VEQ_CAP_BRIGHTNESS; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
65 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
66 info->contrast = (luma & 0xFFFF) * factor; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
67 info->cap |= VEQ_CAP_CONTRAST; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
68 |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
69 return 0; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
70 } |
1 | 71 |
72 //static void | |
73 //write_slice_g200(uint8_t *y,uint8_t *cr, uint8_t *cb,uint32_t slice_num) | |
74 | |
75 static void | |
76 draw_slice_g200(uint8_t *image[], int stride[], int width,int height,int x,int y) | |
77 { | |
78 uint8_t *src; | |
79 uint8_t *src2; | |
80 uint8_t *dest; | |
81 uint32_t bespitch,h,w; | |
82 | |
284 | 83 bespitch = (mga_vid_config.src_width + 31) & ~31; |
1 | 84 |
284 | 85 dest = vid_data + bespitch*y + x; |
4949 | 86 mem2agpcpy_pic(dest, image[0], width, height, bespitch, stride[0]); |
1 | 87 |
88 width/=2;height/=2;x/=2;y/=2; | |
89 | |
284 | 90 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch*y + 2*x; |
5405 | 91 |
92 interleaveBytes(image[1],image[2],dest, | |
5406 | 93 width, height, |
5405 | 94 stride[1], stride[2], bespitch); |
1 | 95 } |
96 | |
97 static void | |
98 draw_slice_g400(uint8_t *image[], int stride[], int w,int h,int x,int y) | |
99 { | |
100 uint8_t *src; | |
101 uint8_t *dest; | |
5317 | 102 uint8_t *dest2; |
1 | 103 uint32_t bespitch,bespitch2; |
104 int i; | |
105 | |
106 bespitch = (mga_vid_config.src_width + 31) & ~31; | |
107 bespitch2 = bespitch/2; | |
108 | |
109 dest = vid_data + bespitch * y + x; | |
4949 | 110 mem2agpcpy_pic(dest, image[0], w, h, bespitch, stride[0]); |
1 | 111 |
112 w/=2;h/=2;x/=2;y/=2; | |
5317 | 113 |
1 | 114 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch2 * y + x; |
5317 | 115 dest2= dest + bespitch2*mga_vid_config.src_height / 2; |
1 | 116 |
5317 | 117 if(mga_vid_config.format==MGA_VID_FORMAT_YV12){ |
118 // mga_vid's YV12 assumes Y,U,V order (insteda of Y,V,U) :( | |
119 mem2agpcpy_pic(dest, image[1], w, h, bespitch2, stride[1]); | |
120 mem2agpcpy_pic(dest2,image[2], w, h, bespitch2, stride[2]); | |
121 } else { | |
4949 | 122 mem2agpcpy_pic(dest, image[2], w, h, bespitch2, stride[2]); |
5317 | 123 mem2agpcpy_pic(dest2,image[1], w, h, bespitch2, stride[1]); |
124 } | |
1 | 125 |
126 } | |
127 | |
128 static uint32_t | |
129 draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y) | |
130 { | |
4949 | 131 |
132 #if 0 | |
133 printf("vo: %p/%d %p/%d %p/%d %dx%d/%d;%d \n", | |
134 src[0],stride[0], | |
135 src[1],stride[1], | |
136 src[2],stride[2], | |
137 w,h,x,y); | |
138 #endif | |
139 | |
1 | 140 if (mga_vid_config.card_type == MGA_G200) |
141 draw_slice_g200(src,stride,w,h,x,y); | |
142 else | |
143 draw_slice_g400(src,stride,w,h,x,y); | |
144 return 0; | |
145 } | |
146 | |
147 static void | |
31 | 148 vo_mga_flip_page(void) |
1 | 149 { |
47 | 150 |
151 // printf("-- flip to %d --\n",mga_next_frame); | |
1 | 152 |
47 | 153 #if 1 |
154 ioctl(f,MGA_VID_FSEL,&mga_next_frame); | |
56 | 155 mga_next_frame=(mga_next_frame+1)%mga_vid_config.num_frames; |
47 | 156 vid_data=frames[mga_next_frame]; |
157 #endif | |
1 | 158 |
159 } | |
160 | |
161 | |
162 static void | |
163 write_frame_yuy2(uint8_t *y) | |
164 { | |
165 int len=2*mga_vid_config.src_width; | |
4949 | 166 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; |
1 | 167 |
4949 | 168 mem2agpcpy_pic(vid_data, y, len, mga_vid_config.src_height, 2*bespitch, len); |
1 | 169 } |
170 | |
171 static uint32_t | |
172 draw_frame(uint8_t *src[]) | |
173 { | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
174 switch(mga_vid_config.format){ |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
175 case MGA_VID_FORMAT_YUY2: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
176 case MGA_VID_FORMAT_UYVY: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
177 write_frame_yuy2(src[0]);break; |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
178 } |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
179 return 0; |
1 | 180 } |
181 | |
182 static uint32_t | |
4971 | 183 get_image(mp_image_t *mpi){ |
184 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; | |
185 uint32_t bespitch2 = bespitch/2; | |
186 // printf("mga: get_image() called\n"); | |
4975 | 187 if(mpi->type==MP_IMGTYPE_STATIC && mga_vid_config.num_frames>1) return VO_FALSE; // it is not static |
4971 | 188 if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram |
5335 | 189 if(mga_vid_config.card_type == MGA_G200 && mpi->flags&MP_IMGFLAG_PLANAR) return VO_FALSE; |
4971 | 190 // printf("width=%d vs. bespitch=%d, flags=0x%X \n",mpi->width,bespitch,mpi->flags); |
191 if((mpi->width==bespitch) || | |
192 (mpi->flags&(MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH))){ | |
193 // we're lucky or codec accepts stride => ok, let's go! | |
194 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
195 mpi->planes[0]=vid_data; | |
5317 | 196 if(mpi->flags&MP_IMGFLAG_SWAPPED){ |
197 mpi->planes[1]=vid_data + bespitch*mga_vid_config.src_height; | |
198 mpi->planes[2]=mpi->planes[1] + bespitch2*mga_vid_config.src_height/2; | |
199 } else { | |
200 mpi->planes[2]=vid_data + bespitch*mga_vid_config.src_height; | |
201 mpi->planes[1]=mpi->planes[2] + bespitch2*mga_vid_config.src_height/2; | |
202 } | |
4971 | 203 mpi->width=mpi->stride[0]=bespitch; |
204 mpi->stride[1]=mpi->stride[2]=bespitch2; | |
205 } else { | |
206 mpi->planes[0]=vid_data; | |
207 mpi->width=bespitch; | |
208 mpi->stride[0]=mpi->width*(mpi->bpp/8); | |
209 } | |
210 mpi->flags|=MP_IMGFLAG_DIRECT; | |
211 // printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n"); | |
212 return VO_TRUE; | |
213 } | |
214 return VO_FALSE; | |
215 } | |
216 | |
217 static uint32_t | |
1 | 218 query_format(uint32_t format) |
219 { | |
220 switch(format){ | |
221 case IMGFMT_YV12: | |
470 | 222 case IMGFMT_I420: |
223 case IMGFMT_IYUV: | |
1 | 224 case IMGFMT_YUY2: |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
225 case IMGFMT_UYVY: |
1 | 226 // case IMGFMT_RGB|24: |
227 // case IMGFMT_BGR|24: | |
5566 | 228 return 3 | VFCAP_OSD|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN; |
1 | 229 } |
230 return 0; | |
231 } | |
232 | |
5014
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
233 static void query_vaa(vo_vaa_t *vaa) |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
234 { |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
235 memset(vaa,0,sizeof(vo_vaa_t)); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
236 vaa->get_video_eq = mga_get_video_eq; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
237 vaa->set_video_eq = mga_set_video_eq; |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
238 } |
5987 | 239 |
240 static void mga_fullscreen() | |
241 { | |
242 uint32_t w,h; | |
243 if ( !vo_fs ) { | |
244 vo_fs=VO_TRUE; | |
245 w=vo_screenwidth; h=vo_screenheight; | |
246 aspect(&w,&h,A_ZOOM); | |
247 } else { | |
248 vo_fs=VO_FALSE; | |
249 w=vo_dwidth; h=vo_dheight; | |
250 aspect(&w,&h,A_NOZOOM); | |
251 } | |
252 mga_vid_config.dest_width = w; | |
253 mga_vid_config.dest_height= h; | |
254 if (vo_screenwidth && vo_screenheight) { | |
255 mga_vid_config.x_org=(vo_screenwidth-w)/2; | |
256 mga_vid_config.y_org=(vo_screenheight-h)/2; | |
257 } else { | |
258 mga_vid_config.x_org= 0; | |
259 mga_vid_config.y_org= 0; | |
260 } | |
261 if ( ioctl( f,MGA_VID_CONFIG,&mga_vid_config ) ) | |
262 printf( "Error in mga_vid_config ioctl (wrong mga_vid.o version?)" ); | |
263 } | |
264 | |
4970 | 265 static uint32_t control(uint32_t request, void *data, ...) |
266 { | |
267 switch (request) { | |
5014
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
268 case VOCTRL_QUERY_VAA: |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
269 query_vaa((vo_vaa_t*)data); |
4458e43871d3
video_eq support - applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
4981
diff
changeset
|
270 return VO_TRUE; |
4970 | 271 case VOCTRL_QUERY_FORMAT: |
272 return query_format(*((uint32_t*)data)); | |
4971 | 273 case VOCTRL_GET_IMAGE: |
274 return get_image(data); | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
275 |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
276 #ifndef VO_XMGA |
5987 | 277 case VOCTRL_FULLSCREEN: |
278 mga_fullscreen(); | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
279 return VO_TRUE; |
5987 | 280 #endif |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
281 |
6009 | 282 #if defined( VO_XMGA ) && defined( HAVE_NEW_GUI ) |
283 case VOCTRL_GUISUPPORT: | |
284 return VO_TRUE; | |
285 #endif | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
286 |
6307 | 287 #ifdef VO_XMGA |
288 case VOCTRL_GET_PANSCAN: | |
6311
da2dda48b7ec
add mute support ( step 1 ) and fixed panscan bugs (1000l for me)
pontscho
parents:
6307
diff
changeset
|
289 if ( !inited || !vo_fs ) return VO_FALSE; |
6307 | 290 return VO_TRUE; |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
291 case VOCTRL_FULLSCREEN: |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
292 vo_x11_fullscreen(); |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
293 vo_panscan_amount=0; |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
294 /* indended, fallthrough to update panscan on fullscreen/windowed switch */ |
6307 | 295 case VOCTRL_SET_PANSCAN: |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
296 if ( vo_fs && ( vo_panscan != vo_panscan_amount ) ) // || ( !vo_fs && vo_panscan_amount ) ) |
6307 | 297 { |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
298 int old_y = vo_panscan_y; |
6307 | 299 panscan_calc(); |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
300 // if ( old_y != vo_panscan_y ) |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
301 set_window(); |
6307 | 302 } |
303 return VO_TRUE; | |
304 #endif | |
4970 | 305 } |
306 return VO_NOTIMPL; | |
307 } | |
308 | |
309 | |
56 | 310 static int mga_init(){ |
311 char *frame_mem; | |
312 | |
5432 | 313 mga_vid_config.num_frames=(vo_directrendering && !vo_doublebuffering)?1:3; |
56 | 314 mga_vid_config.version=MGA_VID_VERSION; |
315 if (ioctl(f,MGA_VID_CONFIG,&mga_vid_config)) | |
316 { | |
275 | 317 perror("Error in mga_vid_config ioctl()"); |
318 printf("Your mga_vid driver version is incompatible with this MPlayer version!\n"); | |
56 | 319 return -1; |
320 } | |
321 ioctl(f,MGA_VID_ON,0); | |
5432 | 322 |
323 printf("[mga] Using %d buffers.\n",mga_vid_config.num_frames); | |
56 | 324 |
325 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,f,0); | |
326 frames[1] = frames[0] + 1*mga_vid_config.frame_size; | |
327 frames[2] = frames[0] + 2*mga_vid_config.frame_size; | |
328 frames[3] = frames[0] + 3*mga_vid_config.frame_size; | |
329 mga_next_frame = 0; | |
330 vid_data = frames[mga_next_frame]; | |
331 | |
332 //clear the buffer | |
333 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames); | |
334 | |
335 return 0; | |
336 | |
337 } | |
338 | |
1637 | 339 static int mga_uninit(){ |
340 ioctl( f,MGA_VID_OFF,0 ); | |
341 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames); | |
342 close(f); | |
5389
7296c4262457
quick hack to make vo_mga accept multiple calls to config
rfelker
parents:
5335
diff
changeset
|
343 f = -1; |
1637 | 344 } |
4970 | 345 |
346 static uint32_t preinit(const char *arg) | |
347 { | |
5433 | 348 char *devname=vo_subdevice?vo_subdevice:"/dev/mga_vid"; |
349 | |
350 f = open(devname,O_RDWR); | |
351 if(f == -1) | |
352 { | |
353 perror("open"); | |
354 printf("Couldn't open %s\n",devname); | |
355 return(-1); | |
356 } | |
4970 | 357 return 0; |
358 } | |
359 |