sync with en/mplayer.1 rev. 30677
[mplayer/glamo.git] / libvo / mga_common.c
blobc7ba8ddffd88e8c9540a630ec7efbde8ceae4b55
1 /*
2 * This file is part of MPlayer.
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.
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.
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.
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"
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
33 static int mga_next_frame=0;
35 static mga_vid_config_t mga_vid_config;
36 static uint8_t *vid_data, *frames[4];
37 static int f = -1;
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;
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;
63 static void draw_osd(void)
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);
70 //static void
71 //write_slice_g200(uint8_t *y,uint8_t *cr, uint8_t *cb,uint32_t slice_num)
73 static void
74 draw_slice_g200(uint8_t *image[], int stride[], int width,int height,int x,int y)
76 uint8_t *dest;
77 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
79 dest = vid_data + bespitch*y + x;
80 mem2agpcpy_pic(dest, image[0], width, height, bespitch, stride[0]);
82 width/=2;height/=2;x/=2;y/=2;
84 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch*y + 2*x;
86 interleaveBytes(image[1],image[2],dest,
87 width, height,
88 stride[1], stride[2], bespitch);
91 static void
92 draw_slice_g400(uint8_t *image[], int stride[], int w,int h,int x,int y)
94 uint8_t *dest;
95 uint8_t *dest2;
96 uint32_t bespitch,bespitch2;
98 bespitch = (mga_vid_config.src_width + 31) & ~31;
99 bespitch2 = bespitch/2;
101 dest = vid_data + bespitch * y + x;
102 mem2agpcpy_pic(dest, image[0], w, h, bespitch, stride[0]);
104 w/=2;h/=2;x/=2;y/=2;
106 dest = vid_data + bespitch*mga_vid_config.src_height + bespitch2 * y + x;
107 dest2= dest + bespitch2*mga_vid_config.src_height / 2;
109 if(mga_vid_config.format==MGA_VID_FORMAT_YV12){
110 // mga_vid's YV12 assumes Y,U,V order (insteda of Y,V,U) :(
111 mem2agpcpy_pic(dest, image[1], w, h, bespitch2, stride[1]);
112 mem2agpcpy_pic(dest2,image[2], w, h, bespitch2, stride[2]);
113 } else {
114 mem2agpcpy_pic(dest, image[2], w, h, bespitch2, stride[2]);
115 mem2agpcpy_pic(dest2,image[1], w, h, bespitch2, stride[1]);
120 static int
121 draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y)
124 #if 0
125 printf("vo: %p/%d %p/%d %p/%d %dx%d/%d;%d \n",
126 src[0],stride[0],
127 src[1],stride[1],
128 src[2],stride[2],
129 w,h,x,y);
130 #endif
132 if (mga_vid_config.card_type == MGA_G200)
133 draw_slice_g200(src,stride,w,h,x,y);
134 else
135 draw_slice_g400(src,stride,w,h,x,y);
136 return 0;
139 static void
140 vo_mga_flip_page(void)
143 // printf("-- flip to %d --\n",mga_next_frame);
145 ioctl(f,MGA_VID_FSEL,&mga_next_frame);
146 mga_next_frame=(mga_next_frame+1)%mga_vid_config.num_frames;
147 vid_data=frames[mga_next_frame];
151 static int
152 draw_frame(uint8_t *src[])
154 mp_msg(MSGT_VO,MSGL_WARN,"!!! mga::draw_frame() called !!!\n");
155 return 0;
158 static uint32_t get_image(mp_image_t *mpi){
159 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
160 uint32_t bespitch2 = bespitch/2;
161 // printf("mga: get_image() called\n");
162 if(mpi->type==MP_IMGTYPE_STATIC && mga_vid_config.num_frames>1) return VO_FALSE; // it is not static
163 if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram
164 if(mga_vid_config.card_type == MGA_G200 && mpi->flags&MP_IMGFLAG_PLANAR) return VO_FALSE;
165 // printf("width=%d vs. bespitch=%d, flags=0x%X \n",mpi->width,bespitch,mpi->flags);
166 if((mpi->width==bespitch) ||
167 (mpi->flags&(MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH))){
168 // we're lucky or codec accepts stride => ok, let's go!
169 if(mpi->flags&MP_IMGFLAG_PLANAR){
170 mpi->planes[0]=vid_data;
171 if(mpi->flags&MP_IMGFLAG_SWAPPED){
172 mpi->planes[1]=vid_data + bespitch*mga_vid_config.src_height;
173 mpi->planes[2]=mpi->planes[1] + bespitch2*mga_vid_config.src_height/2;
174 } else {
175 mpi->planes[2]=vid_data + bespitch*mga_vid_config.src_height;
176 mpi->planes[1]=mpi->planes[2] + bespitch2*mga_vid_config.src_height/2;
178 mpi->width=mpi->stride[0]=bespitch;
179 mpi->stride[1]=mpi->stride[2]=bespitch2;
180 } else {
181 mpi->planes[0]=vid_data;
182 mpi->width=bespitch;
183 mpi->stride[0]=mpi->width*(mpi->bpp/8);
185 mpi->flags|=MP_IMGFLAG_DIRECT;
186 // printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n");
187 return VO_TRUE;
189 return VO_FALSE;
192 static uint32_t
193 draw_image(mp_image_t *mpi){
194 uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31;
196 // if -dr or -slices then do nothing:
197 if(mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK)) return VO_TRUE;
199 if(mpi->flags&MP_IMGFLAG_PLANAR){
200 // copy planar:
201 draw_slice(mpi->planes,mpi->stride,mpi->w,mpi->h,mpi->x,mpi->y);
202 } else {
203 // copy packed:
204 mem2agpcpy_pic(vid_data, mpi->planes[0], // dst,src
205 mpi->w*(mpi->bpp/8), mpi->h, // w,h
206 bespitch*2, mpi->stride[0]); // dstride,sstride
208 return VO_TRUE;
211 static int
212 query_format(uint32_t format)
214 switch(format){
215 case IMGFMT_YV12:
216 case IMGFMT_I420:
217 case IMGFMT_IYUV:
218 case IMGFMT_YUY2:
219 case IMGFMT_UYVY:
220 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_OSD|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN|VFCAP_ACCEPT_STRIDE;
222 return 0;
225 #ifndef VO_XMGA
226 static void mga_fullscreen(void)
228 uint32_t w,h;
229 if ( !vo_fs ) {
230 vo_fs=VO_TRUE;
231 w=vo_screenwidth; h=vo_screenheight;
232 aspect(&w,&h,A_ZOOM);
233 } else {
234 vo_fs=VO_FALSE;
235 w=vo_dwidth; h=vo_dheight;
236 aspect(&w,&h,A_NOZOOM);
238 mga_vid_config.dest_width = w;
239 mga_vid_config.dest_height= h;
240 mga_vid_config.x_org=(vo_screenwidth-w)/2;
241 mga_vid_config.y_org=(vo_screenheight-h)/2;
242 if ( ioctl( f,MGA_VID_CONFIG,&mga_vid_config ) )
243 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_ErrorInConfigIoctl );
245 #endif
247 static int control(uint32_t request, void *data, ...)
249 switch (request) {
250 case VOCTRL_QUERY_FORMAT:
251 return query_format(*((uint32_t*)data));
252 case VOCTRL_GET_IMAGE:
253 return get_image(data);
254 case VOCTRL_DRAW_IMAGE:
255 return draw_image(data);
256 case VOCTRL_SET_EQUALIZER:
258 va_list ap;
259 short value;
260 uint32_t luma,prev;
262 if ( strcmp( data,"brightness" ) && strcmp( data,"contrast" ) ) return VO_FALSE;
264 if (ioctl(f,MGA_VID_GET_LUMA,&prev)) {
265 perror("Error in mga_vid_config ioctl()");
266 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldNotGetLumaValuesFromTheKernelModule);
267 return VO_FALSE;
270 // printf("GET: 0x%4X 0x%4X \n",(prev>>16),(prev&0xffff));
272 va_start(ap, data);
273 value = va_arg(ap, int);
274 va_end(ap);
276 // printf("value: %d -> ",value);
277 value=((value+100)*255)/200-128; // maps -100=>-128 and +100=>127
278 // printf("%d \n",value);
280 if(!strcmp(data,"contrast"))
281 luma = (prev&0xFFFF0000)|(value&0xFFFF);
282 else
283 luma = (prev&0xFFFF)|(value<<16);
285 if (ioctl(f,MGA_VID_SET_LUMA,luma)) {
286 perror("Error in mga_vid_config ioctl()");
287 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldNotSetLumaValuesFromTheKernelModule);
288 return VO_FALSE;
291 return VO_TRUE;
294 case VOCTRL_GET_EQUALIZER:
296 va_list ap;
297 int * value;
298 short val;
299 uint32_t luma;
301 if ( strcmp( data,"brightness" ) && strcmp( data,"contrast" ) ) return VO_FALSE;
303 if (ioctl(f,MGA_VID_GET_LUMA,&luma)) {
304 perror("Error in mga_vid_config ioctl()");
305 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldNotGetLumaValuesFromTheKernelModule);
306 return VO_FALSE;
309 if ( !strcmp( data,"contrast" ) )
310 val=(luma & 0xFFFF);
311 else
312 val=(luma >> 16);
314 va_start(ap, data);
315 value = va_arg(ap, int*);
316 va_end(ap);
318 *value = (val*200)/255;
320 return VO_TRUE;
323 #ifndef VO_XMGA
324 case VOCTRL_FULLSCREEN:
325 if (vo_screenwidth && vo_screenheight)
326 mga_fullscreen();
327 else
328 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_ScreenWidthHeightUnknown);
329 return VO_TRUE;
330 case VOCTRL_GET_PANSCAN:
331 if ( !vo_fs ) return VO_FALSE;
332 return VO_TRUE;
333 #endif
335 #if defined(VO_XMGA) && defined(CONFIG_GUI)
336 case VOCTRL_GUISUPPORT:
337 return VO_TRUE;
338 #endif
340 #ifdef VO_XMGA
341 case VOCTRL_ONTOP:
342 vo_x11_ontop();
343 return VO_TRUE;
344 case VOCTRL_GET_PANSCAN:
345 if ( !initialized || !vo_fs ) return VO_FALSE;
346 return VO_TRUE;
347 case VOCTRL_FULLSCREEN:
348 vo_x11_fullscreen();
349 vo_panscan_amount=0;
350 /* indended, fallthrough to update panscan on fullscreen/windowed switch */
351 #endif
352 case VOCTRL_SET_PANSCAN:
353 if ( vo_fs && ( vo_panscan != vo_panscan_amount ) ) // || ( !vo_fs && vo_panscan_amount ) )
355 // int old_y = vo_panscan_y;
356 panscan_calc();
357 // if ( old_y != vo_panscan_y )
358 set_window();
360 return VO_TRUE;
362 return VO_NOTIMPL;
366 static int mga_init(int width,int height,unsigned int format){
368 switch(format){
369 case IMGFMT_YV12:
370 width+=width&1;height+=height&1;
371 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2;
372 mga_vid_config.format=MGA_VID_FORMAT_I420; break;
373 case IMGFMT_I420:
374 case IMGFMT_IYUV:
375 width+=width&1;height+=height&1;
376 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2;
377 mga_vid_config.format=MGA_VID_FORMAT_YV12; break;
378 case IMGFMT_YUY2:
379 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2;
380 mga_vid_config.format=MGA_VID_FORMAT_YUY2; break;
381 case IMGFMT_UYVY:
382 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2;
383 mga_vid_config.format=MGA_VID_FORMAT_UYVY; break;
384 default:
385 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_InvalidOutputFormat,format);
386 return -1;
389 mga_vid_config.src_width = width;
390 mga_vid_config.src_height= height;
391 if(!mga_vid_config.dest_width)
392 mga_vid_config.dest_width = width;
393 if(!mga_vid_config.dest_height)
394 mga_vid_config.dest_height= height;
396 mga_vid_config.colkey_on=0;
398 mga_vid_config.num_frames=(vo_directrendering && !vo_doublebuffering)?1:3;
399 mga_vid_config.version=MGA_VID_VERSION;
401 if(width > 1024 && height > 1024)
403 mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_MGA_ResolutionTooHigh);
404 return -1;
405 } else if(height <= 1024)
407 // try whether we have a G550
408 int ret;
409 if ((ret = ioctl(f,MGA_VID_CONFIG,&mga_vid_config)))
411 if(mga_vid_config.card_type != MGA_G550)
413 // we don't have a G550, so our resolution is too high
414 mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_MGA_ResolutionTooHigh);
415 return -1;
416 } else {
417 // there is a deeper problem
418 // we have a G550, but still couldn't configure mga_vid
419 perror("Error in mga_vid_config ioctl()");
420 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_IncompatibleDriverVersion);
421 return -1;
423 // if we arrived here, then we could successfully configure mga_vid
424 // at this high resolution
426 } else {
427 // configure mga_vid in case resolution is < 1024x1024 too
428 if (ioctl(f,MGA_VID_CONFIG,&mga_vid_config))
430 perror("Error in mga_vid_config ioctl()");
431 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_IncompatibleDriverVersion);
432 return -1;
436 mp_msg(MSGT_VO,MSGL_V,"[MGA] Using %d buffers.\n",mga_vid_config.num_frames);
438 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,f,0);
439 frames[1] = frames[0] + 1*mga_vid_config.frame_size;
440 frames[2] = frames[0] + 2*mga_vid_config.frame_size;
441 frames[3] = frames[0] + 3*mga_vid_config.frame_size;
442 mga_next_frame = 0;
443 vid_data = frames[mga_next_frame];
445 //clear the buffer
446 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames);
448 #ifndef VO_XMGA
449 ioctl(f,MGA_VID_ON,0);
450 #endif
452 return 0;
455 static int mga_uninit(void){
456 if(f>=0){
457 ioctl( f,MGA_VID_OFF,0 );
458 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames);
459 close(f);
460 f = -1;
462 return 0;
465 static int preinit(const char *vo_subdevice)
467 uint32_t ver;
468 const char *devname=vo_subdevice?vo_subdevice:"/dev/mga_vid";
469 sws_rgb2rgb_init(get_sws_cpuflags());
471 f = open(devname,O_RDWR);
472 if(f == -1)
474 perror("open");
475 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_CouldntOpen,devname);
476 return -1;
479 // check whether the mga_vid driver has the same
480 // version as we expect
482 ioctl(f,MGA_VID_GET_VERSION,&ver);
483 if(MGA_VID_VERSION != ver)
485 mp_msg(MSGT_VO, MSGL_ERR, MSGTR_LIBVO_MGA_mgavidVersionMismatch, ver, MGA_VID_VERSION);
486 return -1;
489 #ifdef VO_XMGA
490 if (!vo_init()) {
491 close(f);
492 return -1;
494 #endif
496 return 0;
499 static void set_window( void ){
501 #ifdef VO_XMGA
502 if ( WinID )
504 XGetGeometry( mDisplay,vo_window,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth );
505 mp_msg(MSGT_VO,MSGL_V,"[xmga] x: %d y: %d w: %d h: %d\n",drwX,drwY,drwWidth,drwHeight );
506 drwX=0; drwY=0;
507 XTranslateCoordinates( mDisplay,vo_window,mRoot,0,0,&drwcX,&drwcY,&mRoot );
508 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 );
511 else
512 #endif
513 { drwX=drwcX=vo_dx; drwY=drwcY=vo_dy; drwWidth=vo_dwidth; drwHeight=vo_dheight; }
515 aspect(&dwidth,&dheight,A_NOZOOM);
516 if ( vo_fs )
518 aspect(&dwidth,&dheight,A_ZOOM);
519 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2;
520 drwcX+=drwX;
521 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2;
522 drwcY+=drwY;
523 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth);
524 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight);
525 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 );
527 vo_dwidth=drwWidth; vo_dheight=drwHeight;
529 #ifdef VO_XMGA
530 #ifdef CONFIG_XINERAMA
531 if(XineramaIsActive(mDisplay))
533 XineramaScreenInfo *screens;
534 int num_screens;
535 int i;
537 screens = XineramaQueryScreens(mDisplay,&num_screens);
539 /* find the screen we are on */
540 i = 0;
541 while(i<num_screens &&
542 ((screens[i].x_org < drwcX) ||
543 (screens[i].y_org < drwcY) ||
544 (screens[i].x_org + screens[i].width >= drwcX) ||
545 (screens[i].y_org + screens[i].height >= drwcY)))
547 i++;
550 if(i<num_screens)
552 /* save the screen we are on */
553 xinerama_screen = i;
554 } else {
555 /* oops.. couldnt find the screen we are on
556 * because the upper left corner left the
557 * visual range. assume we are still on the
558 * same screen
560 i = xinerama_screen;
563 if(xinerama_screen == -1)
565 // The default value of the xinerama_screen is
566 // still there. Which means we could never
567 // figure out on which screen we are.
568 // Choose the first screen as default
569 xinerama_screen = i = 0;
572 /* set drwcX and drwcY to the right values */
573 drwcX = drwcX - screens[i].x_org;
574 drwcY = drwcY - screens[i].y_org;
575 XFree(screens);
578 #endif
580 mDrawColorKey();
581 #endif
583 mga_vid_config.x_org=drwcX;
584 mga_vid_config.y_org=drwcY;
585 mga_vid_config.dest_width=drwWidth;
586 mga_vid_config.dest_height=drwHeight;
587 if ( vo_panscan > 0.0f && vo_fs )
589 drwX-=vo_panscan_x>>1;
590 drwY-=vo_panscan_y>>1;
591 drwWidth+=vo_panscan_x;
592 drwHeight+=vo_panscan_y;
594 mga_vid_config.x_org-=vo_panscan_x>>1;
595 mga_vid_config.y_org-=vo_panscan_y>>1;
596 mga_vid_config.dest_width=drwWidth;
597 mga_vid_config.dest_height=drwHeight;
598 #ifdef VO_XMGA
599 mDrawColorKey();
600 #endif
602 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?)" );