Mercurial > mplayer.hg
annotate libvo/mga_common.c @ 9712:b320a02fa57b
Switch to the new config header
Fix the chapter==0 bug when playing a list of title
author | albeu |
---|---|
date | Thu, 27 Mar 2003 20:45:54 +0000 |
parents | 148281a4e77b |
children | 695825b70485 |
rev | line source |
---|---|
413 | 1 |
566 | 2 #include "fastmemcpy.h" |
2625 | 3 #include "../mmx_defs.h" |
5405 | 4 #include "../postproc/rgb2rgb.h" |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
5 #include "mp_msg.h" |
1 | 6 |
7 // mga_vid drawing functions | |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
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 #ifdef VO_XMGA |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
10 static void mDrawColorKey( void ); /* forward declaration to kill warnings */ |
8988 | 11 #ifdef HAVE_XINERAMA |
12 extern int xinerama_screen; | |
13 #endif | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6311
diff
changeset
|
14 #endif |
1 | 15 |
56 | 16 static int mga_next_frame=0; |
17 | |
18 static mga_vid_config_t mga_vid_config; | |
19 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
|
20 static int f = -1; |
56 | 21 |
8123
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
8017
diff
changeset
|
22 static uint32_t drwX,drwY,drwWidth,drwHeight; |
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
8017
diff
changeset
|
23 #ifdef VO_XMGA |
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
8017
diff
changeset
|
24 static uint32_t drwBorderWidth,drwDepth; |
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
8017
diff
changeset
|
25 #endif |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
26 static uint32_t drwcX,drwcY,dwidth,dheight; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
27 |
202 | 28 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
29 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; | |
9692 | 30 x0+=mga_vid_config.src_width*(vo_panscan_x>>1)/(vo_dwidth+vo_panscan_x); |
466 | 31 switch(mga_vid_config.format){ |
32 case MGA_VID_FORMAT_YV12: | |
470 | 33 case MGA_VID_FORMAT_IYUV: |
34 case MGA_VID_FORMAT_I420: | |
326 | 35 vo_draw_alpha_yv12(w,h,src,srca,stride,vid_data+bespitch*y0+x0,bespitch); |
466 | 36 break; |
37 case MGA_VID_FORMAT_YUY2: | |
326 | 38 vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0),2*bespitch); |
466 | 39 break; |
40 case MGA_VID_FORMAT_UYVY: | |
41 vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0)+1,2*bespitch); | |
42 break; | |
43 } | |
1 | 44 } |
45 | |
7680 | 46 static void draw_osd(void) |
47 { | |
9692 | 48 vo_draw_text(mga_vid_config.src_width-mga_vid_config.src_width*vo_panscan_x/(vo_dwidth+vo_panscan_x),mga_vid_config.src_height,draw_alpha); |
7680 | 49 } |
50 | |
51 | |
1 | 52 //static void |
53 //write_slice_g200(uint8_t *y,uint8_t *cr, uint8_t *cb,uint32_t slice_num) | |
54 | |
55 static void | |
56 draw_slice_g200(uint8_t *image[], int stride[], int width,int height,int x,int y) | |
57 { | |
58 uint8_t *dest; | |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
6799
diff
changeset
|
59 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; |
1 | 60 |
284 | 61 dest = vid_data + bespitch*y + x; |
4949 | 62 mem2agpcpy_pic(dest, image[0], width, height, bespitch, stride[0]); |
1 | 63 |
64 width/=2;height/=2;x/=2;y/=2; | |
65 | |
284 | 66 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch*y + 2*x; |
5405 | 67 |
68 interleaveBytes(image[1],image[2],dest, | |
5406 | 69 width, height, |
5405 | 70 stride[1], stride[2], bespitch); |
1 | 71 } |
72 | |
73 static void | |
74 draw_slice_g400(uint8_t *image[], int stride[], int w,int h,int x,int y) | |
75 { | |
76 uint8_t *dest; | |
5317 | 77 uint8_t *dest2; |
1 | 78 uint32_t bespitch,bespitch2; |
79 | |
80 bespitch = (mga_vid_config.src_width + 31) & ~31; | |
81 bespitch2 = bespitch/2; | |
82 | |
83 dest = vid_data + bespitch * y + x; | |
4949 | 84 mem2agpcpy_pic(dest, image[0], w, h, bespitch, stride[0]); |
1 | 85 |
86 w/=2;h/=2;x/=2;y/=2; | |
5317 | 87 |
1 | 88 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch2 * y + x; |
5317 | 89 dest2= dest + bespitch2*mga_vid_config.src_height / 2; |
1 | 90 |
5317 | 91 if(mga_vid_config.format==MGA_VID_FORMAT_YV12){ |
92 // mga_vid's YV12 assumes Y,U,V order (insteda of Y,V,U) :( | |
93 mem2agpcpy_pic(dest, image[1], w, h, bespitch2, stride[1]); | |
94 mem2agpcpy_pic(dest2,image[2], w, h, bespitch2, stride[2]); | |
95 } else { | |
4949 | 96 mem2agpcpy_pic(dest, image[2], w, h, bespitch2, stride[2]); |
5317 | 97 mem2agpcpy_pic(dest2,image[1], w, h, bespitch2, stride[1]); |
98 } | |
1 | 99 |
100 } | |
101 | |
102 static uint32_t | |
103 draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y) | |
104 { | |
4949 | 105 |
106 #if 0 | |
107 printf("vo: %p/%d %p/%d %p/%d %dx%d/%d;%d \n", | |
108 src[0],stride[0], | |
109 src[1],stride[1], | |
110 src[2],stride[2], | |
111 w,h,x,y); | |
112 #endif | |
113 | |
1 | 114 if (mga_vid_config.card_type == MGA_G200) |
115 draw_slice_g200(src,stride,w,h,x,y); | |
116 else | |
117 draw_slice_g400(src,stride,w,h,x,y); | |
118 return 0; | |
119 } | |
120 | |
121 static void | |
31 | 122 vo_mga_flip_page(void) |
1 | 123 { |
47 | 124 |
125 // printf("-- flip to %d --\n",mga_next_frame); | |
1 | 126 |
47 | 127 #if 1 |
128 ioctl(f,MGA_VID_FSEL,&mga_next_frame); | |
56 | 129 mga_next_frame=(mga_next_frame+1)%mga_vid_config.num_frames; |
47 | 130 vid_data=frames[mga_next_frame]; |
131 #endif | |
1 | 132 |
133 } | |
134 | |
135 static uint32_t | |
136 draw_frame(uint8_t *src[]) | |
137 { | |
7681 | 138 printf("!!! mga::draw_frame() called !!!\n"); |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
139 return 0; |
1 | 140 } |
141 | |
7681 | 142 static uint32_t get_image(mp_image_t *mpi){ |
4971 | 143 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; |
144 uint32_t bespitch2 = bespitch/2; | |
145 // printf("mga: get_image() called\n"); | |
4975 | 146 if(mpi->type==MP_IMGTYPE_STATIC && mga_vid_config.num_frames>1) return VO_FALSE; // it is not static |
4971 | 147 if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram |
5335 | 148 if(mga_vid_config.card_type == MGA_G200 && mpi->flags&MP_IMGFLAG_PLANAR) return VO_FALSE; |
4971 | 149 // printf("width=%d vs. bespitch=%d, flags=0x%X \n",mpi->width,bespitch,mpi->flags); |
150 if((mpi->width==bespitch) || | |
151 (mpi->flags&(MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH))){ | |
152 // we're lucky or codec accepts stride => ok, let's go! | |
153 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
154 mpi->planes[0]=vid_data; | |
5317 | 155 if(mpi->flags&MP_IMGFLAG_SWAPPED){ |
156 mpi->planes[1]=vid_data + bespitch*mga_vid_config.src_height; | |
157 mpi->planes[2]=mpi->planes[1] + bespitch2*mga_vid_config.src_height/2; | |
158 } else { | |
159 mpi->planes[2]=vid_data + bespitch*mga_vid_config.src_height; | |
160 mpi->planes[1]=mpi->planes[2] + bespitch2*mga_vid_config.src_height/2; | |
161 } | |
4971 | 162 mpi->width=mpi->stride[0]=bespitch; |
163 mpi->stride[1]=mpi->stride[2]=bespitch2; | |
164 } else { | |
165 mpi->planes[0]=vid_data; | |
166 mpi->width=bespitch; | |
167 mpi->stride[0]=mpi->width*(mpi->bpp/8); | |
168 } | |
169 mpi->flags|=MP_IMGFLAG_DIRECT; | |
170 // printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n"); | |
171 return VO_TRUE; | |
172 } | |
173 return VO_FALSE; | |
174 } | |
175 | |
176 static uint32_t | |
7681 | 177 draw_image(mp_image_t *mpi){ |
178 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; | |
179 | |
180 // if -dr or -slices then do nothing: | |
181 if(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK)) return VO_TRUE; | |
182 | |
183 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
184 // copy planar: | |
185 draw_slice(mpi->planes,mpi->stride,mpi->w,mpi->h,mpi->x,mpi->y); | |
186 } else { | |
187 // copy packed: | |
188 mem2agpcpy_pic(vid_data, mpi->planes[0], // dst,src | |
189 mpi->w*(mpi->bpp/8), mpi->h, // w,h | |
190 bespitch*2, mpi->stride[0]); // dstride,sstride | |
191 } | |
192 return VO_TRUE; | |
193 } | |
194 | |
195 static uint32_t | |
1 | 196 query_format(uint32_t format) |
197 { | |
198 switch(format){ | |
199 case IMGFMT_YV12: | |
470 | 200 case IMGFMT_I420: |
201 case IMGFMT_IYUV: | |
1 | 202 case IMGFMT_YUY2: |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
413
diff
changeset
|
203 case IMGFMT_UYVY: |
7694
b64f14fdadfb
also set VFCAP_ACCEPT_STRIDE when draw_image() is implemented
arpi
parents:
7681
diff
changeset
|
204 return 3 | VFCAP_OSD|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN|VFCAP_ACCEPT_STRIDE; |
1 | 205 } |
206 return 0; | |
207 } | |
208 | |
5987 | 209 static void mga_fullscreen() |
210 { | |
211 uint32_t w,h; | |
212 if ( !vo_fs ) { | |
213 vo_fs=VO_TRUE; | |
214 w=vo_screenwidth; h=vo_screenheight; | |
215 aspect(&w,&h,A_ZOOM); | |
216 } else { | |
217 vo_fs=VO_FALSE; | |
218 w=vo_dwidth; h=vo_dheight; | |
219 aspect(&w,&h,A_NOZOOM); | |
220 } | |
221 mga_vid_config.dest_width = w; | |
222 mga_vid_config.dest_height= h; | |
7680 | 223 mga_vid_config.x_org=(vo_screenwidth-w)/2; |
224 mga_vid_config.y_org=(vo_screenheight-h)/2; | |
5987 | 225 if ( ioctl( f,MGA_VID_CONFIG,&mga_vid_config ) ) |
226 printf( "Error in mga_vid_config ioctl (wrong mga_vid.o version?)" ); | |
227 } | |
228 | |
4970 | 229 static uint32_t control(uint32_t request, void *data, ...) |
230 { | |
231 switch (request) { | |
232 case VOCTRL_QUERY_FORMAT: | |
233 return query_format(*((uint32_t*)data)); | |
4971 | 234 case VOCTRL_GET_IMAGE: |
235 return get_image(data); | |
7681 | 236 case VOCTRL_DRAW_IMAGE: |
237 return draw_image(data); | |
6799 | 238 case VOCTRL_SET_EQUALIZER: |
239 { | |
240 va_list ap; | |
241 short value; | |
242 uint32_t luma,prev; | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
243 |
6799 | 244 if ( strcmp( data,"brightness" ) && strcmp( data,"contrast" ) ) return VO_FALSE; |
245 | |
246 if (ioctl(f,MGA_VID_GET_LUMA,&prev)) { | |
247 perror("Error in mga_vid_config ioctl()"); | |
248 printf("Could not get luma values from the kernel module!\n"); | |
249 return VO_FALSE; | |
250 } | |
251 | |
252 // printf("GET: 0x%4X 0x%4X \n",(prev>>16),(prev&0xffff)); | |
253 | |
254 va_start(ap, data); | |
255 value = va_arg(ap, int); | |
256 va_end(ap); | |
257 | |
258 // printf("value: %d -> ",value); | |
259 value=((value+100)*255)/200-128; // maps -100=>-128 and +100=>127 | |
260 // printf("%d \n",value); | |
261 | |
262 if(!strcmp(data,"contrast")) | |
263 luma = (prev&0xFFFF0000)|(value&0xFFFF); | |
264 else | |
265 luma = (prev&0xFFFF)|(value<<16); | |
266 | |
267 if (ioctl(f,MGA_VID_SET_LUMA,luma)) { | |
268 perror("Error in mga_vid_config ioctl()"); | |
269 printf("Could not set luma values in the kernel module!\n"); | |
270 return VO_FALSE; | |
271 } | |
272 | |
273 return VO_TRUE; | |
274 } | |
275 | |
276 case VOCTRL_GET_EQUALIZER: | |
277 { | |
278 va_list ap; | |
279 int * value; | |
280 short val; | |
281 uint32_t luma; | |
282 | |
283 if ( strcmp( data,"brightness" ) && strcmp( data,"contrast" ) ) return VO_FALSE; | |
284 | |
285 if (ioctl(f,MGA_VID_GET_LUMA,&luma)) { | |
286 perror("Error in mga_vid_config ioctl()"); | |
287 printf("Could not get luma values from the kernel module!\n"); | |
288 return VO_FALSE; | |
289 } | |
290 | |
291 if ( !strcmp( data,"contrast" ) ) | |
292 val=(luma & 0xFFFF); | |
293 else | |
294 val=(luma >> 16); | |
295 | |
296 va_start(ap, data); | |
297 value = va_arg(ap, int*); | |
298 va_end(ap); | |
299 | |
300 *value = (val*200)/255; | |
301 | |
302 return VO_TRUE; | |
303 } | |
304 | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
305 #ifndef VO_XMGA |
5987 | 306 case VOCTRL_FULLSCREEN: |
7680 | 307 if (vo_screenwidth && vo_screenheight) |
308 mga_fullscreen(); | |
309 else | |
310 printf("Screen width/height unknown!\n"); | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
311 return VO_TRUE; |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
312 case VOCTRL_GET_PANSCAN: |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
313 if ( !vo_fs ) return VO_FALSE; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
314 return VO_TRUE; |
5987 | 315 #endif |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
316 |
6009 | 317 #if defined( VO_XMGA ) && defined( HAVE_NEW_GUI ) |
318 case VOCTRL_GUISUPPORT: | |
319 return VO_TRUE; | |
320 #endif | |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
321 |
6307 | 322 #ifdef VO_XMGA |
323 case VOCTRL_GET_PANSCAN: | |
6311
da2dda48b7ec
add mute support ( step 1 ) and fixed panscan bugs (1000l for me)
pontscho
parents:
6307
diff
changeset
|
324 if ( !inited || !vo_fs ) return VO_FALSE; |
6307 | 325 return VO_TRUE; |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
326 case VOCTRL_FULLSCREEN: |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
327 vo_x11_fullscreen(); |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
328 vo_panscan_amount=0; |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
329 /* indended, fallthrough to update panscan on fullscreen/windowed switch */ |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
330 #endif |
6307 | 331 case VOCTRL_SET_PANSCAN: |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
332 if ( vo_fs && ( vo_panscan != vo_panscan_amount ) ) // || ( !vo_fs && vo_panscan_amount ) ) |
6307 | 333 { |
8123
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
8017
diff
changeset
|
334 // int old_y = vo_panscan_y; |
6307 | 335 panscan_calc(); |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
336 // if ( old_y != vo_panscan_y ) |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6335
diff
changeset
|
337 set_window(); |
6307 | 338 } |
339 return VO_TRUE; | |
4970 | 340 } |
341 return VO_NOTIMPL; | |
342 } | |
343 | |
344 | |
7679 | 345 static int mga_init(int width,int height,unsigned int format){ |
346 | |
347 switch(format){ | |
348 case IMGFMT_YV12: | |
349 width+=width&1;height+=height&1; | |
350 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2; | |
351 mga_vid_config.format=MGA_VID_FORMAT_I420; break; | |
352 case IMGFMT_I420: | |
353 case IMGFMT_IYUV: | |
354 width+=width&1;height+=height&1; | |
355 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2; | |
356 mga_vid_config.format=MGA_VID_FORMAT_YV12; break; | |
357 case IMGFMT_YUY2: | |
358 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2; | |
359 mga_vid_config.format=MGA_VID_FORMAT_YUY2; break; | |
360 case IMGFMT_UYVY: | |
361 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2; | |
362 mga_vid_config.format=MGA_VID_FORMAT_UYVY; break; | |
363 default: | |
364 printf("mga: invalid output format %0X\n",format); | |
365 return (-1); | |
366 } | |
367 | |
368 mga_vid_config.src_width = width; | |
369 mga_vid_config.src_height= height; | |
7680 | 370 if(!mga_vid_config.dest_width) |
371 mga_vid_config.dest_width = width; | |
372 if(!mga_vid_config.dest_height) | |
373 mga_vid_config.dest_height= height; | |
56 | 374 |
7680 | 375 mga_vid_config.colkey_on=0; |
376 | |
5432 | 377 mga_vid_config.num_frames=(vo_directrendering && !vo_doublebuffering)?1:3; |
56 | 378 mga_vid_config.version=MGA_VID_VERSION; |
379 if (ioctl(f,MGA_VID_CONFIG,&mga_vid_config)) | |
380 { | |
275 | 381 perror("Error in mga_vid_config ioctl()"); |
382 printf("Your mga_vid driver version is incompatible with this MPlayer version!\n"); | |
56 | 383 return -1; |
384 } | |
5432 | 385 |
386 printf("[mga] Using %d buffers.\n",mga_vid_config.num_frames); | |
56 | 387 |
388 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,f,0); | |
389 frames[1] = frames[0] + 1*mga_vid_config.frame_size; | |
390 frames[2] = frames[0] + 2*mga_vid_config.frame_size; | |
391 frames[3] = frames[0] + 3*mga_vid_config.frame_size; | |
392 mga_next_frame = 0; | |
393 vid_data = frames[mga_next_frame]; | |
394 | |
395 //clear the buffer | |
396 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames); | |
397 | |
7777 | 398 #ifndef VO_XMGA |
7679 | 399 ioctl(f,MGA_VID_ON,0); |
7777 | 400 #endif |
7679 | 401 |
56 | 402 return 0; |
403 } | |
404 | |
1637 | 405 static int mga_uninit(){ |
7679 | 406 if(f>=0){ |
1637 | 407 ioctl( f,MGA_VID_OFF,0 ); |
408 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames); | |
409 close(f); | |
5389
7296c4262457
quick hack to make vo_mga accept multiple calls to config
rfelker
parents:
5335
diff
changeset
|
410 f = -1; |
7679 | 411 } |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
6799
diff
changeset
|
412 return 0; |
1637 | 413 } |
4970 | 414 |
7676 | 415 static uint32_t preinit(const char *vo_subdevice) |
4970 | 416 { |
7695 | 417 const char *devname=vo_subdevice?vo_subdevice:"/dev/mga_vid"; |
5433 | 418 |
419 f = open(devname,O_RDWR); | |
420 if(f == -1) | |
421 { | |
422 perror("open"); | |
7676 | 423 printf("vo_mga: Couldn't open %s\n",devname); |
5433 | 424 return(-1); |
425 } | |
7679 | 426 |
427 #ifdef VO_XMGA | |
8778
ff92d9b5ade5
don't keep mga_vid device open if x11 init fails (fixes "-vo xmga,mga")
rfelker
parents:
8123
diff
changeset
|
428 if (!vo_init()) { |
ff92d9b5ade5
don't keep mga_vid device open if x11 init fails (fixes "-vo xmga,mga")
rfelker
parents:
8123
diff
changeset
|
429 close(f); |
ff92d9b5ade5
don't keep mga_vid device open if x11 init fails (fixes "-vo xmga,mga")
rfelker
parents:
8123
diff
changeset
|
430 return -1; |
ff92d9b5ade5
don't keep mga_vid device open if x11 init fails (fixes "-vo xmga,mga")
rfelker
parents:
8123
diff
changeset
|
431 } |
7679 | 432 #endif |
433 | |
4970 | 434 return 0; |
435 } | |
436 | |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
437 static void set_window( void ){ |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
438 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
439 #ifdef VO_XMGA |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
440 if ( WinID ) |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
441 { |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
442 XGetGeometry( mDisplay,vo_window,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
443 mp_msg(MSGT_VO,MSGL_V,"[xmga] x: %d y: %d w: %d h: %d\n",drwX,drwY,drwWidth,drwHeight ); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
444 drwX=0; drwY=0; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
445 XTranslateCoordinates( mDisplay,vo_window,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
446 mp_msg(MSGT_VO,MSGL_V,"[xmga] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
447 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
448 } |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
449 else |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
450 #endif |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
451 { drwX=drwcX=vo_dx; drwY=drwcY=vo_dy; drwWidth=vo_dwidth; drwHeight=vo_dheight; } |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
452 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
453 aspect(&dwidth,&dheight,A_NOZOOM); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
454 if ( vo_fs ) |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
455 { |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
456 aspect(&dwidth,&dheight,A_ZOOM); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
457 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
458 drwcX+=drwX; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
459 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
460 drwcY+=drwY; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
461 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
462 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
463 mp_msg(MSGT_VO,MSGL_V,"[xmga-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
464 } |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
465 vo_dwidth=drwWidth; vo_dheight=drwHeight; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
466 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
467 #ifdef VO_XMGA |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
468 #ifdef HAVE_XINERAMA |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
469 if(XineramaIsActive(mDisplay)) |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
470 { |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
471 XineramaScreenInfo *screens; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
472 int num_screens; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
473 int i; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
474 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
475 screens = XineramaQueryScreens(mDisplay,&num_screens); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
476 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
477 /* find the screen we are on */ |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
478 i = 0; |
8988 | 479 while(i<num_screens && |
480 ((screens[i].x_org < drwcX) || | |
481 (screens[i].y_org < drwcY) || | |
482 (screens[i].x_org + screens[i].width >= drwcX) || | |
483 (screens[i].y_org + screens[i].height >= drwcY))) | |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
484 { |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
485 i++; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
486 } |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
487 |
8988 | 488 if(i<num_screens) |
489 { | |
490 /* save the screen we are on */ | |
491 xinerama_screen = i; | |
492 } else { | |
493 /* oops.. couldnt find the screen we are on | |
494 * because the upper left corner left the | |
495 * visual range. assume we are still on the | |
496 * same screen | |
497 */ | |
498 i = xinerama_screen; | |
499 } | |
500 | |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
501 /* set drwcX and drwcY to the right values */ |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
502 drwcX = drwcX - screens[i].x_org; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
503 drwcY = drwcY - screens[i].y_org; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
504 XFree(screens); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
505 } |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
506 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
507 #endif |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
508 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
509 mDrawColorKey(); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
510 #endif |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
511 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
512 mga_vid_config.x_org=drwcX; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
513 mga_vid_config.y_org=drwcY; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
514 mga_vid_config.dest_width=drwWidth; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
515 mga_vid_config.dest_height=drwHeight; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
516 if ( vo_panscan > 0.0f && vo_fs ) |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
517 { |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
518 drwX-=vo_panscan_x>>1; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
519 drwY-=vo_panscan_y>>1; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
520 drwWidth+=vo_panscan_x; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
521 drwHeight+=vo_panscan_y; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
522 |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
523 mga_vid_config.x_org-=vo_panscan_x>>1; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
524 mga_vid_config.y_org-=vo_panscan_y>>1; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
525 mga_vid_config.dest_width=drwWidth; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
526 mga_vid_config.dest_height=drwHeight; |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
527 #ifdef VO_XMGA |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
528 mDrawColorKey(); |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
529 #endif |
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
530 } |
9047 | 531 if ( ioctl( f,MGA_VID_CONFIG,&mga_vid_config ) ) mp_msg(MSGT_VO,MSGL_WARN,"Error in mga_vid_config ioctl (wrong mga_vid.o version?)" ); |
8017
a57aac3a927a
panscan support in -vo mga (actually moved common code to mga_common.c)
arpi
parents:
7777
diff
changeset
|
532 } |