comparison libvo/mga_template.c @ 31364:317649676214

Rename libvo/mga_common.c --> libvo/mga_template.c. This file is not compiled but just #included and all other similar files follow the naming scheme of having a "_template.c" suffix.
author diego
date Wed, 16 Jun 2010 13:55:09 +0000
parents libvo/mga_common.c@402ad9e8caed
children a6cb957ad186
comparison
equal deleted inserted replaced
31363:402ad9e8caed 31364:317649676214
1 /*
2 * This file is part of MPlayer.
3 *
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19 #include "fastmemcpy.h"
20 #include "cpudetect.h"
21 #include "libswscale/swscale.h"
22 #include "libswscale/rgb2rgb.h"
23 #include "libmpcodecs/vf_scale.h"
24 #include "mp_msg.h"
25 #include "help_mp.h"
26
27 // mga_vid drawing functions
28 static void set_window( void ); /* forward declaration to kill warnings */
29 #ifdef VO_XMGA
30 static void mDrawColorKey( void ); /* forward declaration to kill warnings */
31 #endif
32
33 static int mga_next_frame=0;
34
35 static mga_vid_config_t mga_vid_config;
36 static uint8_t *vid_data, *frames[4];
37 static int f = -1;
38
39 static uint32_t drwX,drwY,drwWidth,drwHeight;
40 #ifdef VO_XMGA
41 static uint32_t drwBorderWidth,drwDepth;
42 #endif
43 static uint32_t drwcX,drwcY,dwidth,dheight;
44
45 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){
46 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
47 x0+=mga_vid_config.src_width*(vo_panscan_x>>1)/(vo_dwidth+vo_panscan_x);
48 switch(mga_vid_config.format){
49 case MGA_VID_FORMAT_YV12:
50 case MGA_VID_FORMAT_IYUV:
51 case MGA_VID_FORMAT_I420:
52 vo_draw_alpha_yv12(w,h,src,srca,stride,vid_data+bespitch*y0+x0,bespitch);
53 break;
54 case MGA_VID_FORMAT_YUY2:
55 vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0),2*bespitch);
56 break;
57 case MGA_VID_FORMAT_UYVY:
58 vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0)+1,2*bespitch);
59 break;
60 }
61 }
62
63 static void draw_osd(void)
64 {
65 // vo_draw_text(mga_vid_config.src_width,mga_vid_config.src_height,draw_alpha);
66 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);
67 }
68
69
70 static void
71 draw_slice_g200(uint8_t *image[], int stride[], int width,int height,int x,int y)
72 {
73 uint8_t *dest;
74 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
75
76 dest = vid_data + bespitch*y + x;
77 mem2agpcpy_pic(dest, image[0], width, height, bespitch, stride[0]);
78
79 width/=2;height/=2;x/=2;y/=2;
80
81 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch*y + 2*x;
82
83 interleaveBytes(image[1],image[2],dest,
84 width, height,
85 stride[1], stride[2], bespitch);
86 }
87
88 static void
89 draw_slice_g400(uint8_t *image[], int stride[], int w,int h,int x,int y)
90 {
91 uint8_t *dest;
92 uint8_t *dest2;
93 uint32_t bespitch,bespitch2;
94
95 bespitch = (mga_vid_config.src_width + 31) & ~31;
96 bespitch2 = bespitch/2;
97
98 dest = vid_data + bespitch * y + x;
99 mem2agpcpy_pic(dest, image[0], w, h, bespitch, stride[0]);
100
101 w/=2;h/=2;x/=2;y/=2;
102
103 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch2 * y + x;
104 dest2= dest + bespitch2*mga_vid_config.src_height / 2;
105
106 if(mga_vid_config.format==MGA_VID_FORMAT_YV12){
107 // mga_vid's YV12 assumes Y,U,V order (insteda of Y,V,U) :(
108 mem2agpcpy_pic(dest, image[1], w, h, bespitch2, stride[1]);
109 mem2agpcpy_pic(dest2,image[2], w, h, bespitch2, stride[2]);
110 } else {
111 mem2agpcpy_pic(dest, image[2], w, h, bespitch2, stride[2]);
112 mem2agpcpy_pic(dest2,image[1], w, h, bespitch2, stride[1]);
113 }
114
115 }
116
117 static int
118 draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y)
119 {
120
121 #if 0
122 printf("vo: %p/%d %p/%d %p/%d %dx%d/%d;%d \n",
123 src[0],stride[0],
124 src[1],stride[1],
125 src[2],stride[2],
126 w,h,x,y);
127 #endif
128
129 if (mga_vid_config.card_type == MGA_G200)
130 draw_slice_g200(src,stride,w,h,x,y);
131 else
132 draw_slice_g400(src,stride,w,h,x,y);
133 return 0;
134 }
135
136 static void
137 vo_mga_flip_page(void)
138 {
139
140 // printf("-- flip to %d --\n",mga_next_frame);
141
142 ioctl(f,MGA_VID_FSEL,&mga_next_frame);
143 mga_next_frame=(mga_next_frame+1)%mga_vid_config.num_frames;
144 vid_data=frames[mga_next_frame];
145
146 }
147
148 static int
149 draw_frame(uint8_t *src[])
150 {
151 mp_msg(MSGT_VO,MSGL_WARN,"!!! mga::draw_frame() called !!!\n");
152 return 0;
153 }
154
155 static uint32_t get_image(mp_image_t *mpi){
156 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
157 uint32_t bespitch2 = bespitch/2;
158 // printf("mga: get_image() called\n");
159 if(mpi->type==MP_IMGTYPE_STATIC && mga_vid_config.num_frames>1) return VO_FALSE; // it is not static
160 if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram
161 if(mga_vid_config.card_type == MGA_G200 && mpi->flags&MP_IMGFLAG_PLANAR) return VO_FALSE;
162 // printf("width=%d vs. bespitch=%d, flags=0x%X \n",mpi->width,bespitch,mpi->flags);
163 if((mpi->width==bespitch) ||
164 (mpi->flags&(MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH))){
165 // we're lucky or codec accepts stride => ok, let's go!
166 if(mpi->flags&MP_IMGFLAG_PLANAR){
167 mpi->planes[0]=vid_data;
168 if(mpi->flags&MP_IMGFLAG_SWAPPED){
169 mpi->planes[1]=vid_data + bespitch*mga_vid_config.src_height;
170 mpi->planes[2]=mpi->planes[1] + bespitch2*mga_vid_config.src_height/2;
171 } else {
172 mpi->planes[2]=vid_data + bespitch*mga_vid_config.src_height;
173 mpi->planes[1]=mpi->planes[2] + bespitch2*mga_vid_config.src_height/2;
174 }
175 mpi->width=mpi->stride[0]=bespitch;
176 mpi->stride[1]=mpi->stride[2]=bespitch2;
177 } else {
178 mpi->planes[0]=vid_data;
179 mpi->width=bespitch;
180 mpi->stride[0]=mpi->width*(mpi->bpp/8);
181 }
182 mpi->flags|=MP_IMGFLAG_DIRECT;
183 // printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n");
184 return VO_TRUE;
185 }
186 return VO_FALSE;
187 }
188
189 static uint32_t
190 draw_image(mp_image_t *mpi){
191 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
192
193 // if -dr or -slices then do nothing:
194 if(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK)) return VO_TRUE;
195
196 if(mpi->flags&MP_IMGFLAG_PLANAR){
197 // copy planar:
198 draw_slice(mpi->planes,mpi->stride,mpi->w,mpi->h,mpi->x,mpi->y);
199 } else {
200 // copy packed:
201 mem2agpcpy_pic(vid_data, mpi->planes[0], // dst,src
202 mpi->w*(mpi->bpp/8), mpi->h, // w,h
203 bespitch*2, mpi->stride[0]); // dstride,sstride
204 }
205 return VO_TRUE;
206 }
207
208 static int
209 query_format(uint32_t format)
210 {
211 switch(format){
212 case IMGFMT_YV12:
213 case IMGFMT_I420:
214 case IMGFMT_IYUV:
215 case IMGFMT_YUY2:
216 case IMGFMT_UYVY:
217 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_OSD|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN|VFCAP_ACCEPT_STRIDE;
218 }
219 return 0;
220 }
221
222 #ifndef VO_XMGA
223 static void mga_fullscreen(void)
224 {
225 uint32_t w,h;
226 if ( !vo_fs ) {
227 vo_fs=VO_TRUE;
228 w=vo_screenwidth; h=vo_screenheight;
229 aspect(&w,&h,A_ZOOM);
230 } else {
231 vo_fs=VO_FALSE;
232 w=vo_dwidth; h=vo_dheight;
233 aspect(&w,&h,A_NOZOOM);
234 }
235 mga_vid_config.dest_width = w;
236 mga_vid_config.dest_height= h;
237 mga_vid_config.x_org=(vo_screenwidth-w)/2;
238 mga_vid_config.y_org=(vo_screenheight-h)/2;
239 if ( ioctl( f,MGA_VID_CONFIG,&mga_vid_config ) )
240 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_ErrorInConfigIoctl );
241 }
242 #endif
243
244 static int control(uint32_t request, void *data, ...)
245 {
246 switch (request) {
247 case VOCTRL_QUERY_FORMAT:
248 return query_format(*((uint32_t*)data));
249 case VOCTRL_GET_IMAGE:
250 return get_image(data);
251 case VOCTRL_DRAW_IMAGE:
252 return draw_image(data);
253 case VOCTRL_SET_EQUALIZER:
254 {
255 va_list ap;
256 short value;
257 uint32_t luma,prev;
258
259 if ( strcmp( data,"brightness" ) && strcmp( data,"contrast" ) ) return VO_FALSE;
260
261 if (ioctl(f,MGA_VID_GET_LUMA,&prev)) {
262 perror("Error in mga_vid_config ioctl()");
263 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldNotGetLumaValuesFromTheKernelModule);
264 return VO_FALSE;
265 }
266
267 // printf("GET: 0x%4X 0x%4X \n",(prev>>16),(prev&0xffff));
268
269 va_start(ap, data);
270 value = va_arg(ap, int);
271 va_end(ap);
272
273 // printf("value: %d -> ",value);
274 value=((value+100)*255)/200-128; // maps -100=>-128 and +100=>127
275 // printf("%d \n",value);
276
277 if(!strcmp(data,"contrast"))
278 luma = (prev&0xFFFF0000)|(value&0xFFFF);
279 else
280 luma = (prev&0xFFFF)|(value<<16);
281
282 if (ioctl(f,MGA_VID_SET_LUMA,luma)) {
283 perror("Error in mga_vid_config ioctl()");
284 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldNotSetLumaValuesFromTheKernelModule);
285 return VO_FALSE;
286 }
287
288 return VO_TRUE;
289 }
290
291 case VOCTRL_GET_EQUALIZER:
292 {
293 va_list ap;
294 int * value;
295 short val;
296 uint32_t luma;
297
298 if ( strcmp( data,"brightness" ) && strcmp( data,"contrast" ) ) return VO_FALSE;
299
300 if (ioctl(f,MGA_VID_GET_LUMA,&luma)) {
301 perror("Error in mga_vid_config ioctl()");
302 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldNotGetLumaValuesFromTheKernelModule);
303 return VO_FALSE;
304 }
305
306 if ( !strcmp( data,"contrast" ) )
307 val=(luma & 0xFFFF);
308 else
309 val=(luma >> 16);
310
311 va_start(ap, data);
312 value = va_arg(ap, int*);
313 va_end(ap);
314
315 *value = (val*200)/255;
316
317 return VO_TRUE;
318 }
319
320 #ifndef VO_XMGA
321 case VOCTRL_FULLSCREEN:
322 if (vo_screenwidth && vo_screenheight)
323 mga_fullscreen();
324 else
325 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_ScreenWidthHeightUnknown);
326 return VO_TRUE;
327 case VOCTRL_GET_PANSCAN:
328 if ( !vo_fs ) return VO_FALSE;
329 return VO_TRUE;
330 #endif
331
332 #if defined(VO_XMGA) && defined(CONFIG_GUI)
333 case VOCTRL_GUISUPPORT:
334 return VO_TRUE;
335 #endif
336
337 #ifdef VO_XMGA
338 case VOCTRL_ONTOP:
339 vo_x11_ontop();
340 return VO_TRUE;
341 case VOCTRL_GET_PANSCAN:
342 if ( !initialized || !vo_fs ) return VO_FALSE;
343 return VO_TRUE;
344 case VOCTRL_FULLSCREEN:
345 vo_x11_fullscreen();
346 vo_panscan_amount=0;
347 /* indended, fallthrough to update panscan on fullscreen/windowed switch */
348 #endif
349 case VOCTRL_SET_PANSCAN:
350 if ( vo_fs && ( vo_panscan != vo_panscan_amount ) ) // || ( !vo_fs && vo_panscan_amount ) )
351 {
352 // int old_y = vo_panscan_y;
353 panscan_calc();
354 // if ( old_y != vo_panscan_y )
355 set_window();
356 }
357 return VO_TRUE;
358 }
359 return VO_NOTIMPL;
360 }
361
362
363 static int mga_init(int width,int height,unsigned int format){
364
365 switch(format){
366 case IMGFMT_YV12:
367 width+=width&1;height+=height&1;
368 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2;
369 mga_vid_config.format=MGA_VID_FORMAT_I420; break;
370 case IMGFMT_I420:
371 case IMGFMT_IYUV:
372 width+=width&1;height+=height&1;
373 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2;
374 mga_vid_config.format=MGA_VID_FORMAT_YV12; break;
375 case IMGFMT_YUY2:
376 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2;
377 mga_vid_config.format=MGA_VID_FORMAT_YUY2; break;
378 case IMGFMT_UYVY:
379 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2;
380 mga_vid_config.format=MGA_VID_FORMAT_UYVY; break;
381 default:
382 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_InvalidOutputFormat,format);
383 return -1;
384 }
385
386 mga_vid_config.src_width = width;
387 mga_vid_config.src_height= height;
388 if(!mga_vid_config.dest_width)
389 mga_vid_config.dest_width = width;
390 if(!mga_vid_config.dest_height)
391 mga_vid_config.dest_height= height;
392
393 mga_vid_config.colkey_on=0;
394
395 mga_vid_config.num_frames=(vo_directrendering && !vo_doublebuffering)?1:3;
396 mga_vid_config.version=MGA_VID_VERSION;
397
398 if(width > 1024 && height > 1024)
399 {
400 mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_MGA_ResolutionTooHigh);
401 return -1;
402 } else if(height <= 1024)
403 {
404 // try whether we have a G550
405 int ret;
406 if ((ret = ioctl(f,MGA_VID_CONFIG,&mga_vid_config)))
407 {
408 if(mga_vid_config.card_type != MGA_G550)
409 {
410 // we don't have a G550, so our resolution is too high
411 mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_MGA_ResolutionTooHigh);
412 return -1;
413 } else {
414 // there is a deeper problem
415 // we have a G550, but still couldn't configure mga_vid
416 perror("Error in mga_vid_config ioctl()");
417 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_IncompatibleDriverVersion);
418 return -1;
419 }
420 // if we arrived here, then we could successfully configure mga_vid
421 // at this high resolution
422 }
423 } else {
424 // configure mga_vid in case resolution is < 1024x1024 too
425 if (ioctl(f,MGA_VID_CONFIG,&mga_vid_config))
426 {
427 perror("Error in mga_vid_config ioctl()");
428 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_IncompatibleDriverVersion);
429 return -1;
430 }
431 }
432
433 mp_msg(MSGT_VO,MSGL_V,"[MGA] Using %d buffers.\n",mga_vid_config.num_frames);
434
435 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,f,0);
436 frames[1] = frames[0] + 1*mga_vid_config.frame_size;
437 frames[2] = frames[0] + 2*mga_vid_config.frame_size;
438 frames[3] = frames[0] + 3*mga_vid_config.frame_size;
439 mga_next_frame = 0;
440 vid_data = frames[mga_next_frame];
441
442 //clear the buffer
443 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames);
444
445 #ifndef VO_XMGA
446 ioctl(f,MGA_VID_ON,0);
447 #endif
448
449 return 0;
450 }
451
452 static int mga_uninit(void){
453 if(f>=0){
454 ioctl( f,MGA_VID_OFF,0 );
455 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames);
456 close(f);
457 f = -1;
458 }
459 return 0;
460 }
461
462 static int preinit(const char *vo_subdevice)
463 {
464 uint32_t ver;
465 const char *devname=vo_subdevice?vo_subdevice:"/dev/mga_vid";
466 sws_rgb2rgb_init(get_sws_cpuflags());
467
468 f = open(devname,O_RDWR);
469 if(f == -1)
470 {
471 perror("open");
472 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldntOpen,devname);
473 return -1;
474 }
475
476 // check whether the mga_vid driver has the same
477 // version as we expect
478
479 ioctl(f,MGA_VID_GET_VERSION,&ver);
480 if(MGA_VID_VERSION != ver)
481 {
482 mp_msg(MSGT_VO, MSGL_ERR, MSGTR_LIBVO_MGA_mgavidVersionMismatch, ver, MGA_VID_VERSION);
483 return -1;
484 }
485
486 #ifdef VO_XMGA
487 if (!vo_init()) {
488 close(f);
489 return -1;
490 }
491 #endif
492
493 return 0;
494 }
495
496 static void set_window( void ){
497
498 #ifdef VO_XMGA
499 if ( WinID )
500 {
501 XGetGeometry( mDisplay,vo_window,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth );
502 mp_msg(MSGT_VO,MSGL_V,"[xmga] x: %d y: %d w: %d h: %d\n",drwX,drwY,drwWidth,drwHeight );
503 drwX=0; drwY=0;
504 XTranslateCoordinates( mDisplay,vo_window,mRoot,0,0,&drwcX,&drwcY,&mRoot );
505 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 );
506
507 }
508 else
509 #endif
510 { drwX=drwcX=vo_dx; drwY=drwcY=vo_dy; drwWidth=vo_dwidth; drwHeight=vo_dheight; }
511
512 aspect(&dwidth,&dheight,A_NOZOOM);
513 if ( vo_fs )
514 {
515 aspect(&dwidth,&dheight,A_ZOOM);
516 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2;
517 drwcX+=drwX;
518 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2;
519 drwcY+=drwY;
520 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth);
521 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight);
522 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 );
523 }
524 vo_dwidth=drwWidth; vo_dheight=drwHeight;
525
526 #ifdef VO_XMGA
527 #ifdef CONFIG_XINERAMA
528 if(XineramaIsActive(mDisplay))
529 {
530 XineramaScreenInfo *screens;
531 int num_screens;
532 int i;
533
534 screens = XineramaQueryScreens(mDisplay,&num_screens);
535
536 /* find the screen we are on */
537 i = 0;
538 while(i<num_screens &&
539 ((screens[i].x_org < drwcX) ||
540 (screens[i].y_org < drwcY) ||
541 (screens[i].x_org + screens[i].width >= drwcX) ||
542 (screens[i].y_org + screens[i].height >= drwcY)))
543 {
544 i++;
545 }
546
547 if(i<num_screens)
548 {
549 /* save the screen we are on */
550 xinerama_screen = i;
551 } else {
552 /* oops.. couldnt find the screen we are on
553 * because the upper left corner left the
554 * visual range. assume we are still on the
555 * same screen
556 */
557 i = xinerama_screen;
558 }
559
560 if(xinerama_screen == -1)
561 {
562 // The default value of the xinerama_screen is
563 // still there. Which means we could never
564 // figure out on which screen we are.
565 // Choose the first screen as default
566 xinerama_screen = i = 0;
567 }
568
569 /* set drwcX and drwcY to the right values */
570 drwcX = drwcX - screens[i].x_org;
571 drwcY = drwcY - screens[i].y_org;
572 XFree(screens);
573 }
574
575 #endif
576
577 mDrawColorKey();
578 #endif
579
580 mga_vid_config.x_org=drwcX;
581 mga_vid_config.y_org=drwcY;
582 mga_vid_config.dest_width=drwWidth;
583 mga_vid_config.dest_height=drwHeight;
584 if ( vo_panscan > 0.0f && vo_fs )
585 {
586 drwX-=vo_panscan_x>>1;
587 drwY-=vo_panscan_y>>1;
588 drwWidth+=vo_panscan_x;
589 drwHeight+=vo_panscan_y;
590
591 mga_vid_config.x_org-=vo_panscan_x>>1;
592 mga_vid_config.y_org-=vo_panscan_y>>1;
593 mga_vid_config.dest_width=drwWidth;
594 mga_vid_config.dest_height=drwHeight;
595 #ifdef VO_XMGA
596 mDrawColorKey();
597 #endif
598 }
599 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?)" );
600 }