1 /* vo_xv.c, X11 Xv interface */
3 // Number of buffers _FOR_DOUBLEBUFFERING_MODE_
4 // Use option -double to enable double buffering! (default: single buffer)
26 #include "video_out.h"
27 #include "video_out_internal.h"
31 #include <X11/Xutil.h>
34 #include "x11_common.h"
36 #include "fastmemcpy.h"
40 #include "subopt-helper.h"
43 #include "Gui/interface.h"
46 static vo_info_t info
= {
49 "Gerd Knorr <kraxel@goldbach.in-berlin.de> and others",
57 #include <X11/extensions/XShm.h>
58 /* since it doesn't seem to be defined on some platforms */
59 int XShmGetEventBase(Display
*);
61 static XShmSegmentInfo Shminfo
[NUM_BUFFERS
];
62 static int Shmem_Flag
;
65 // Note: depends on the inclusion of X11/extensions/XShm.h
66 #include <X11/extensions/Xv.h>
67 #include <X11/extensions/Xvlib.h>
69 // FIXME: dynamically allocate this stuff
70 static void allocate_xvimage(int);
71 static unsigned int ver
, rel
, req
, ev
, err
;
72 static unsigned int formats
, adaptors
, xv_format
;
73 static XvAdaptorInfo
*ai
= NULL
;
74 static XvImageFormatValues
*fo
=NULL
;
76 static int current_buf
= 0;
77 static int current_ip_buf
= 0;
78 static int num_buffers
= 1; // default
79 static int visible_buf
= -1; // -1 means: no buffer was drawn yet
80 static XvImage
*xvimage
[NUM_BUFFERS
];
83 static uint32_t image_width
;
84 static uint32_t image_height
;
85 static uint32_t image_format
;
91 static uint32_t drwX
, drwY
, drwBorderWidth
, drwDepth
;
92 static uint32_t dwidth
, dheight
;
93 static uint32_t max_width
= 0, max_height
= 0; // zero means: not set
95 static void (*draw_alpha_fnc
) (int x0
, int y0
, int w
, int h
,
96 unsigned char *src
, unsigned char *srca
,
99 static void draw_alpha_yv12(int x0
, int y0
, int w
, int h
,
100 unsigned char *src
, unsigned char *srca
,
103 x0
+= image_width
* (vo_panscan_x
>> 1) / (vo_dwidth
+ vo_panscan_x
);
104 vo_draw_alpha_yv12(w
, h
, src
, srca
, stride
,
105 xvimage
[current_buf
]->data
+
106 xvimage
[current_buf
]->offsets
[0] +
107 xvimage
[current_buf
]->pitches
[0] * y0
+ x0
,
108 xvimage
[current_buf
]->pitches
[0]);
111 static void draw_alpha_yuy2(int x0
, int y0
, int w
, int h
,
112 unsigned char *src
, unsigned char *srca
,
115 x0
+= image_width
* (vo_panscan_x
>> 1) / (vo_dwidth
+ vo_panscan_x
);
116 vo_draw_alpha_yuy2(w
, h
, src
, srca
, stride
,
117 xvimage
[current_buf
]->data
+
118 xvimage
[current_buf
]->offsets
[0] +
119 xvimage
[current_buf
]->pitches
[0] * y0
+ 2 * x0
,
120 xvimage
[current_buf
]->pitches
[0]);
123 static void draw_alpha_uyvy(int x0
, int y0
, int w
, int h
,
124 unsigned char *src
, unsigned char *srca
,
127 x0
+= image_width
* (vo_panscan_x
>> 1) / (vo_dwidth
+ vo_panscan_x
);
128 vo_draw_alpha_yuy2(w
, h
, src
, srca
, stride
,
129 xvimage
[current_buf
]->data
+
130 xvimage
[current_buf
]->offsets
[0] +
131 xvimage
[current_buf
]->pitches
[0] * y0
+ 2 * x0
+ 1,
132 xvimage
[current_buf
]->pitches
[0]);
135 static void draw_alpha_null(int x0
, int y0
, int w
, int h
,
136 unsigned char *src
, unsigned char *srca
,
142 static void deallocate_xvimage(int foo
);
145 * connect to server, create and map window,
146 * allocate colors and (shared) memory
148 static int config(uint32_t width
, uint32_t height
, uint32_t d_width
,
149 uint32_t d_height
, uint32_t flags
, char *title
,
153 char *hello
= (title
== NULL
) ? "Xv render" : title
;
155 // char *name = ":0.0";
159 XSetWindowAttributes xswa
;
160 XWindowAttributes attribs
;
161 unsigned long xswamask
;
166 unsigned int modeline_width
, modeline_height
;
167 static uint32_t vm_width
;
168 static uint32_t vm_height
;
171 image_height
= height
;
173 image_format
= format
;
175 if ((max_width
!= 0 && max_height
!= 0) &&
176 (image_width
> max_width
|| image_height
> max_height
))
178 mp_msg( MSGT_VO
, MSGL_ERR
, MSGTR_VO_XV_ImagedimTooHigh
,
179 image_width
, image_height
, max_width
, max_height
);
183 vo_mouse_autohide
= 1;
189 if (flags
& VOFLAG_MODESWITCHING
)
192 flip_flag
= flags
& VOFLAG_FLIPPING
;
194 vo_doublebuffering
? (vo_directrendering
? NUM_BUFFERS
: 2) : 1;
196 /* check image formats */
201 for (i
= 0; i
< formats
; i
++)
203 mp_msg(MSGT_VO
, MSGL_V
,
204 "Xvideo image format: 0x%x (%4.4s) %s\n", fo
[i
].id
,
206 (fo
[i
].format
== XvPacked
) ? "packed" : "planar");
207 if (fo
[i
].id
== format
)
208 xv_format
= fo
[i
].id
;
216 guiGetEvent(guiSetShVideo
, 0); // let the GUI to setup/resize our window
222 hint
.width
= d_width
;
223 hint
.height
= d_height
;
227 if ((d_width
== 0) && (d_height
== 0))
229 vm_width
= image_width
;
230 vm_height
= image_height
;
234 vm_height
= d_height
;
236 vo_vm_switch(vm_width
, vm_height
, &modeline_width
,
238 hint
.x
= (vo_screenwidth
- modeline_width
) / 2;
239 hint
.y
= (vo_screenheight
- modeline_height
) / 2;
240 hint
.width
= modeline_width
;
241 hint
.height
= modeline_height
;
242 aspect_save_screenres(modeline_width
, modeline_height
);
247 #ifdef X11_FULLSCREEN
248 /* this code replaces X11_FULLSCREEN hack in mplayer.c
249 * aspect() is available through aspect.h for all vos.
250 * besides zooming should only be done with -zoom,
251 * but I leave the old -fs behaviour so users don't get
252 * irritated for now (and send lots o' mails ;) ::atmos
255 aspect(&d_width
, &d_height
, A_ZOOM
);
259 // dwidth=d_width; dheight=d_height; //XXX: what are the copy vars used for?
261 vo_dheight
= d_height
;
262 hint
.flags
= PPosition
| PSize
/* | PBaseSize */ ;
263 hint
.base_width
= hint
.width
;
264 hint
.base_height
= hint
.height
;
265 XGetWindowAttributes(mDisplay
, DefaultRootWindow(mDisplay
),
267 depth
= attribs
.depth
;
268 if (depth
!= 15 && depth
!= 16 && depth
!= 24 && depth
!= 32)
270 XMatchVisualInfo(mDisplay
, mScreen
, depth
, TrueColor
, &vinfo
);
272 xswa
.background_pixel
= 0;
273 if (xv_ck_info
.method
== CK_METHOD_BACKGROUND
)
275 xswa
.background_pixel
= xv_colorkey
;
277 xswa
.border_pixel
= 0;
278 xswamask
= CWBackPixel
| CWBorderPixel
;
282 vo_window
= WinID
? ((Window
) WinID
) : mRootWin
;
285 XUnmapWindow(mDisplay
, vo_window
);
286 XChangeWindowAttributes(mDisplay
, vo_window
, xswamask
,
288 vo_x11_selectinput_witherr(mDisplay
, vo_window
,
289 StructureNotifyMask
|
296 XMapWindow(mDisplay
, vo_window
);
297 XGetGeometry(mDisplay
, vo_window
, &mRoot
,
298 &drwX
, &drwY
, &vo_dwidth
, &vo_dheight
,
299 &drwBorderWidth
, &drwDepth
);
300 if (vo_dwidth
<= 0) vo_dwidth
= d_width
;
301 if (vo_dheight
<= 0) vo_dheight
= d_height
;
302 drwX
= drwY
= 0; // coordinates need to be local to the window
303 aspect_save_prescale(vo_dwidth
, vo_dheight
);
309 } else if (vo_window
== None
)
312 vo_x11_create_smooth_window(mDisplay
, mRootWin
,
313 vinfo
.visual
, hint
.x
, hint
.y
,
314 hint
.width
, hint
.height
, depth
,
316 XChangeWindowAttributes(mDisplay
, vo_window
, xswamask
, &xswa
);
318 vo_x11_classhint(mDisplay
, vo_window
, "xv");
319 vo_hidecursor(mDisplay
, vo_window
);
321 vo_x11_selectinput_witherr(mDisplay
, vo_window
,
322 StructureNotifyMask
| KeyPressMask
|
323 PropertyChangeMask
| ((WinID
== 0) ?
333 XSetStandardProperties(mDisplay
, vo_window
, hello
, hello
, None
,
335 vo_x11_sizehint(hint
.x
, hint
.y
, hint
.width
, hint
.height
, 0);
336 XMapWindow(mDisplay
, vo_window
);
337 vo_x11_nofs_sizepos(hint
.x
, hint
.y
, hint
.width
, hint
.height
);
338 if (flags
& VOFLAG_FULLSCREEN
)
342 // vo_fs set means we were already at fullscreen
343 vo_x11_sizehint(hint
.x
, hint
.y
, hint
.width
, hint
.height
, 0);
344 vo_x11_nofs_sizepos(hint
.x
, hint
.y
, hint
.width
, hint
.height
);
345 if (flags
& VOFLAG_FULLSCREEN
&& !vo_fs
)
346 vo_x11_fullscreen(); // handle -fs on non-first file
349 // vo_x11_sizehint( hint.x, hint.y, hint.width, hint.height,0 );
352 XFreeGC(mDisplay
, vo_gc
);
353 vo_gc
= XCreateGC(mDisplay
, vo_window
, 0L, &xgcv
);
354 XSync(mDisplay
, False
);
358 /* Grab the mouse pointer in our window */
360 XGrabPointer(mDisplay
, vo_window
, True
, 0,
361 GrabModeAsync
, GrabModeAsync
,
362 vo_window
, None
, CurrentTime
);
363 XSetInputFocus(mDisplay
, vo_window
, RevertToNone
, CurrentTime
);
368 mp_msg(MSGT_VO
, MSGL_V
, "using Xvideo port %d for hw scaling\n",
376 draw_alpha_fnc
= draw_alpha_yv12
;
380 draw_alpha_fnc
= draw_alpha_yuy2
;
383 draw_alpha_fnc
= draw_alpha_uyvy
;
386 draw_alpha_fnc
= draw_alpha_null
;
390 for (current_buf
= 0; current_buf
< num_buffers
; ++current_buf
)
391 deallocate_xvimage(current_buf
);
393 for (current_buf
= 0; current_buf
< num_buffers
; ++current_buf
)
394 allocate_xvimage(current_buf
);
400 set_gamma_correction();
403 aspect(&vo_dwidth
, &vo_dheight
, A_NOZOOM
);
404 if (((flags
& VOFLAG_FULLSCREEN
) && (WinID
<= 0)) || vo_fs
)
406 aspect(&vo_dwidth
, &vo_dheight
, A_ZOOM
);
410 vo_screenwidth
? vo_screenwidth
: vo_dwidth
)) / 2;
414 vo_screenheight
? vo_screenheight
: vo_dheight
)) / 2;
416 (vo_dwidth
> vo_screenwidth
? vo_screenwidth
: vo_dwidth
);
418 (vo_dheight
> vo_screenheight
? vo_screenheight
: vo_dheight
);
419 mp_msg(MSGT_VO
, MSGL_V
, "[xv-fs] dx: %d dy: %d dw: %d dh: %d\n",
420 drwX
, drwY
, vo_dwidth
, vo_dheight
);
425 vo_xv_draw_colorkey(drwX
- (vo_panscan_x
>> 1),
426 drwY
- (vo_panscan_y
>> 1),
427 vo_dwidth
+ vo_panscan_x
- 1,
428 vo_dheight
+ vo_panscan_y
- 1);
435 XvShmPutImage(mDisplay
, xv_port
, vo_window
, vo_gc
,
436 xvimage
[current_buf
], 0, 0, image_width
,
437 image_height
, drwX
, drwY
, 1, 1, False
);
438 XvShmPutImage(mDisplay
, xv_port
, vo_window
, vo_gc
,
439 xvimage
[current_buf
], 0, 0, image_width
,
440 image_height
, drwX
, drwY
, vo_dwidth
,
441 (vo_fs
? vo_dheight
- 1 : vo_dheight
), False
);
445 XvPutImage(mDisplay
, xv_port
, vo_window
, vo_gc
,
446 xvimage
[current_buf
], 0, 0, image_width
, image_height
,
448 XvPutImage(mDisplay
, xv_port
, vo_window
, vo_gc
,
449 xvimage
[current_buf
], 0, 0, image_width
, image_height
,
450 drwX
, drwY
, vo_dwidth
,
451 (vo_fs
? vo_dheight
- 1 : vo_dheight
));
455 mp_msg(MSGT_VO
, MSGL_V
, "[xv] dx: %d dy: %d dw: %d dh: %d\n", drwX
,
456 drwY
, vo_dwidth
, vo_dheight
);
459 vo_x11_setlayer(mDisplay
, vo_window
, vo_ontop
);
464 static void allocate_xvimage(int foo
)
467 * allocate XvImages. FIXME: no error checking, without
468 * mit-shm this will bomb... trzing to fix ::atmos
471 if (mLocalDisplay
&& XShmQueryExtension(mDisplay
))
476 mp_msg(MSGT_VO
, MSGL_INFO
,
477 MSGTR_LIBVO_XV_SharedMemoryNotSupported
);
482 (XvImage
*) XvShmCreateImage(mDisplay
, xv_port
, xv_format
,
483 NULL
, image_width
, image_height
,
487 shmget(IPC_PRIVATE
, xvimage
[foo
]->data_size
, IPC_CREAT
| 0777);
488 Shminfo
[foo
].shmaddr
= (char *) shmat(Shminfo
[foo
].shmid
, 0, 0);
489 Shminfo
[foo
].readOnly
= False
;
491 xvimage
[foo
]->data
= Shminfo
[foo
].shmaddr
;
492 XShmAttach(mDisplay
, &Shminfo
[foo
]);
493 XSync(mDisplay
, False
);
494 shmctl(Shminfo
[foo
].shmid
, IPC_RMID
, 0);
499 (XvImage
*) XvCreateImage(mDisplay
, xv_port
, xv_format
, NULL
,
500 image_width
, image_height
);
501 xvimage
[foo
]->data
= malloc(xvimage
[foo
]->data_size
);
502 XSync(mDisplay
, False
);
504 memset(xvimage
[foo
]->data
, 128, xvimage
[foo
]->data_size
);
508 static void deallocate_xvimage(int foo
)
513 XShmDetach(mDisplay
, &Shminfo
[foo
]);
514 shmdt(Shminfo
[foo
].shmaddr
);
518 free(xvimage
[foo
]->data
);
522 XSync(mDisplay
, False
);
526 static inline void put_xvimage( XvImage
* xvi
)
531 XvShmPutImage(mDisplay
, xv_port
, vo_window
, vo_gc
,
532 xvi
, 0, 0, image_width
,
533 image_height
, drwX
- (vo_panscan_x
>> 1),
534 drwY
- (vo_panscan_y
>> 1), vo_dwidth
+ vo_panscan_x
,
535 vo_dheight
+ vo_panscan_y
,
540 XvPutImage(mDisplay
, xv_port
, vo_window
, vo_gc
,
541 xvi
, 0, 0, image_width
, image_height
,
542 drwX
- (vo_panscan_x
>> 1), drwY
- (vo_panscan_y
>> 1),
543 vo_dwidth
+ vo_panscan_x
,
544 vo_dheight
+ vo_panscan_y
);
548 static void check_events(void)
550 int e
= vo_x11_check_events(mDisplay
);
552 if (e
& VO_EVENT_RESIZE
)
554 XGetGeometry(mDisplay
, vo_window
, &mRoot
, &drwX
, &drwY
, &vo_dwidth
,
555 &vo_dheight
, &drwBorderWidth
, &drwDepth
);
557 mp_msg(MSGT_VO
, MSGL_V
, "[xv] dx: %d dy: %d dw: %d dh: %d\n", drwX
,
558 drwY
, vo_dwidth
, vo_dheight
);
560 aspect(&dwidth
, &dheight
, A_NOZOOM
);
563 aspect(&dwidth
, &dheight
, A_ZOOM
);
566 (dwidth
> vo_screenwidth
? vo_screenwidth
: dwidth
)) / 2;
570 vo_screenheight
? vo_screenheight
: dheight
)) / 2;
572 (dwidth
> vo_screenwidth
? vo_screenwidth
: dwidth
);
574 (dheight
> vo_screenheight
? vo_screenheight
: dheight
);
575 mp_msg(MSGT_VO
, MSGL_V
,
576 "[xv-fs] dx: %d dy: %d dw: %d dh: %d\n", drwX
, drwY
,
577 vo_dwidth
, vo_dheight
);
581 if (e
& VO_EVENT_EXPOSE
|| e
& VO_EVENT_RESIZE
)
583 vo_xv_draw_colorkey(drwX
- (vo_panscan_x
>> 1),
584 drwY
- (vo_panscan_y
>> 1),
585 vo_dwidth
+ vo_panscan_x
- 1,
586 vo_dheight
+ vo_panscan_y
- 1);
589 if ((e
& VO_EVENT_EXPOSE
|| e
& VO_EVENT_RESIZE
) && int_pause
)
591 /* did we already draw a buffer */
592 if ( visible_buf
!= -1 )
594 /* redraw the last visible buffer */
595 put_xvimage( xvimage
[visible_buf
] );
600 static void draw_osd(void)
602 vo_draw_text(image_width
-
603 image_width
* vo_panscan_x
/ (vo_dwidth
+ vo_panscan_x
),
604 image_height
, draw_alpha_fnc
);
607 static void flip_page(void)
609 put_xvimage( xvimage
[current_buf
] );
611 /* remember the currently visible buffer */
612 visible_buf
= current_buf
;
617 vo_directrendering
? 0 : ((current_buf
+ 1) % num_buffers
);
620 XSync(mDisplay
, False
);
624 static int draw_slice(uint8_t * image
[], int stride
[], int w
, int h
,
629 dst
= xvimage
[current_buf
]->data
+ xvimage
[current_buf
]->offsets
[0] +
630 xvimage
[current_buf
]->pitches
[0] * y
+ x
;
631 memcpy_pic(dst
, image
[0], w
, h
, xvimage
[current_buf
]->pitches
[0],
639 dst
= xvimage
[current_buf
]->data
+ xvimage
[current_buf
]->offsets
[1] +
640 xvimage
[current_buf
]->pitches
[1] * y
+ x
;
641 if (image_format
!= IMGFMT_YV12
)
642 memcpy_pic(dst
, image
[1], w
, h
, xvimage
[current_buf
]->pitches
[1],
645 memcpy_pic(dst
, image
[2], w
, h
, xvimage
[current_buf
]->pitches
[1],
648 dst
= xvimage
[current_buf
]->data
+ xvimage
[current_buf
]->offsets
[2] +
649 xvimage
[current_buf
]->pitches
[2] * y
+ x
;
650 if (image_format
== IMGFMT_YV12
)
651 memcpy_pic(dst
, image
[1], w
, h
, xvimage
[current_buf
]->pitches
[1],
654 memcpy_pic(dst
, image
[2], w
, h
, xvimage
[current_buf
]->pitches
[1],
660 static int draw_frame(uint8_t * src
[])
662 mp_msg(MSGT_VO
,MSGL_INFO
, MSGTR_LIBVO_XV_DrawFrameCalled
);
666 static uint32_t draw_image(mp_image_t
* mpi
)
668 if (mpi
->flags
& MP_IMGFLAG_DIRECT
)
671 current_buf
= (int) (mpi
->priv
); // hack!
674 if (mpi
->flags
& MP_IMGFLAG_DRAW_CALLBACK
)
675 return VO_TRUE
; // done
676 if (mpi
->flags
& MP_IMGFLAG_PLANAR
)
678 draw_slice(mpi
->planes
, mpi
->stride
, mpi
->w
, mpi
->h
, 0, 0);
681 if (mpi
->flags
& MP_IMGFLAG_YUV
)
684 memcpy_pic(xvimage
[current_buf
]->data
+
685 xvimage
[current_buf
]->offsets
[0], mpi
->planes
[0],
686 mpi
->w
* (mpi
->bpp
/ 8), mpi
->h
,
687 xvimage
[current_buf
]->pitches
[0], mpi
->stride
[0]);
690 return VO_FALSE
; // not (yet) supported
693 static uint32_t get_image(mp_image_t
* mpi
)
695 int buf
= current_buf
; // we shouldn't change current_buf unless we do DR!
697 if (mpi
->type
== MP_IMGTYPE_STATIC
&& num_buffers
> 1)
698 return VO_FALSE
; // it is not static
699 if (mpi
->imgfmt
!= image_format
)
700 return VO_FALSE
; // needs conversion :(
701 // if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram
702 if (mpi
->flags
& MP_IMGFLAG_READABLE
&&
703 (mpi
->type
== MP_IMGTYPE_IPB
|| mpi
->type
== MP_IMGTYPE_IP
))
705 // reference (I/P) frame of IP or IPB:
707 return VO_FALSE
; // not enough
709 // for IPB with 2 buffers we can DR only one of the 2 P frames:
710 if (mpi
->type
== MP_IMGTYPE_IPB
&& num_buffers
< 3
713 buf
= current_ip_buf
;
714 if (mpi
->type
== MP_IMGTYPE_IPB
)
715 ++buf
; // preserve space for B
717 if (mpi
->height
> xvimage
[buf
]->height
)
718 return VO_FALSE
; //buffer to small
719 if (mpi
->width
* (mpi
->bpp
/ 8) > xvimage
[buf
]->pitches
[0])
720 return VO_FALSE
; //buffer to small
721 if ((mpi
->flags
& (MP_IMGFLAG_ACCEPT_STRIDE
| MP_IMGFLAG_ACCEPT_WIDTH
))
722 || (mpi
->width
* (mpi
->bpp
/ 8) == xvimage
[buf
]->pitches
[0]))
726 xvimage
[current_buf
]->data
+ xvimage
[current_buf
]->offsets
[0];
727 mpi
->stride
[0] = xvimage
[current_buf
]->pitches
[0];
728 mpi
->width
= mpi
->stride
[0] / (mpi
->bpp
/ 8);
729 if (mpi
->flags
& MP_IMGFLAG_PLANAR
)
731 if (mpi
->flags
& MP_IMGFLAG_SWAPPED
)
735 xvimage
[current_buf
]->data
+
736 xvimage
[current_buf
]->offsets
[1];
738 xvimage
[current_buf
]->data
+
739 xvimage
[current_buf
]->offsets
[2];
740 mpi
->stride
[1] = xvimage
[current_buf
]->pitches
[1];
741 mpi
->stride
[2] = xvimage
[current_buf
]->pitches
[2];
746 xvimage
[current_buf
]->data
+
747 xvimage
[current_buf
]->offsets
[2];
749 xvimage
[current_buf
]->data
+
750 xvimage
[current_buf
]->offsets
[1];
751 mpi
->stride
[1] = xvimage
[current_buf
]->pitches
[2];
752 mpi
->stride
[2] = xvimage
[current_buf
]->pitches
[1];
755 mpi
->flags
|= MP_IMGFLAG_DIRECT
;
756 mpi
->priv
= (void *) current_buf
;
757 // printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n");
763 static int query_format(uint32_t format
)
766 int flag
= VFCAP_CSP_SUPPORTED
| VFCAP_CSP_SUPPORTED_BY_HW
| VFCAP_HWSCALE_UP
| VFCAP_HWSCALE_DOWN
| VFCAP_OSD
| VFCAP_ACCEPT_STRIDE
; // FIXME! check for DOWN
768 /* check image formats */
769 for (i
= 0; i
< formats
; i
++)
771 if (fo
[i
].id
== format
)
772 return flag
; //xv_format = fo[i].id;
777 static void uninit(void)
781 if (!vo_config_count
)
784 XvFreeAdaptorInfo(ai
);
790 for (i
= 0; i
< num_buffers
; i
++)
791 deallocate_xvimage(i
);
793 vo_vm_close(mDisplay
);
798 static int preinit(const char *arg
)
803 strarg_t ck_src_arg
= { 0, NULL
};
804 strarg_t ck_method_arg
= { 0, NULL
};
808 /* name arg type arg var test */
809 { "port", OPT_ARG_INT
, &xv_port
, (opt_test_f
)int_pos
},
810 { "ck", OPT_ARG_STR
, &ck_src_arg
, xv_test_ck
},
811 { "ck-method", OPT_ARG_STR
, &ck_method_arg
, xv_test_ckm
},
817 /* parse suboptions */
818 if ( subopt_parse( arg
, subopts
) != 0 )
823 /* modify colorkey settings according to the given options */
824 xv_setup_colorkeyhandling( ck_method_arg
.str
, ck_src_arg
.str
);
829 /* check for Xvideo extension */
830 if (Success
!= XvQueryExtension(mDisplay
, &ver
, &rel
, &req
, &ev
, &err
))
832 mp_msg(MSGT_VO
, MSGL_ERR
,
833 MSGTR_LIBVO_XV_XvNotSupportedByX11
);
837 /* check for Xvideo support */
839 XvQueryAdaptors(mDisplay
, DefaultRootWindow(mDisplay
), &adaptors
,
842 mp_msg(MSGT_VO
, MSGL_ERR
, MSGTR_LIBVO_XV_XvQueryAdaptorsFailed
);
851 for (port_found
= 0, i
= 0; !port_found
&& i
< adaptors
; i
++)
853 if ((ai
[i
].type
& XvInputMask
) && (ai
[i
].type
& XvImageMask
))
855 for (xv_p
= ai
[i
].base_id
;
856 xv_p
< ai
[i
].base_id
+ ai
[i
].num_ports
; ++xv_p
)
868 if (XvGrabPort(mDisplay
, xv_port
, CurrentTime
))
872 mp_msg(MSGT_VO
, MSGL_WARN
,
873 MSGTR_LIBVO_XV_InvalidPortParameter
);
878 for (i
= 0; i
< adaptors
&& xv_port
== 0; i
++)
880 if ((ai
[i
].type
& XvInputMask
) && (ai
[i
].type
& XvImageMask
))
882 for (xv_p
= ai
[i
].base_id
;
883 xv_p
< ai
[i
].base_id
+ ai
[i
].num_ports
; ++xv_p
)
884 if (!XvGrabPort(mDisplay
, xv_p
, CurrentTime
))
890 mp_msg(MSGT_VO
, MSGL_WARN
,
891 MSGTR_LIBVO_XV_CouldNotGrabPort
, (int) xv_p
);
899 mp_msg(MSGT_VO
, MSGL_ERR
,
900 MSGTR_LIBVO_XV_CouldNotFindFreePort
);
902 mp_msg(MSGT_VO
, MSGL_ERR
,
903 MSGTR_LIBVO_XV_NoXvideoSupport
);
907 if ( !vo_xv_init_colorkey() )
909 return -1; // bail out, colorkey setup failed
911 vo_xv_enable_vsync();
912 vo_xv_get_max_img_dim( &max_width
, &max_height
);
914 fo
= XvListImageFormats(mDisplay
, xv_port
, (int *) &formats
);
919 static int control(uint32_t request
, void *data
, ...)
924 return (int_pause
= 1);
926 return (int_pause
= 0);
927 case VOCTRL_QUERY_FORMAT
:
928 return query_format(*((uint32_t *) data
));
929 case VOCTRL_GET_IMAGE
:
930 return get_image(data
);
931 case VOCTRL_DRAW_IMAGE
:
932 return draw_image(data
);
933 case VOCTRL_GUISUPPORT
:
935 case VOCTRL_GET_PANSCAN
:
936 if (!vo_config_count
|| !vo_fs
)
939 case VOCTRL_FULLSCREEN
:
941 /* indended, fallthrough to update panscan on fullscreen/windowed switch */
942 case VOCTRL_SET_PANSCAN
:
943 if ((vo_fs
&& (vo_panscan
!= vo_panscan_amount
))
944 || (!vo_fs
&& vo_panscan_amount
))
946 int old_y
= vo_panscan_y
;
950 if (old_y
!= vo_panscan_y
)
952 vo_x11_clearwindow_part(mDisplay
, vo_window
,
953 vo_dwidth
+ vo_panscan_x
- 1,
954 vo_dheight
+ vo_panscan_y
- 1,
956 vo_xv_draw_colorkey(drwX
- (vo_panscan_x
>> 1),
957 drwY
- (vo_panscan_y
>> 1),
958 vo_dwidth
+ vo_panscan_x
- 1,
959 vo_dheight
+ vo_panscan_y
- 1);
964 case VOCTRL_SET_EQUALIZER
:
970 value
= va_arg(ap
, int);
974 return (vo_xv_set_eq(xv_port
, data
, value
));
976 case VOCTRL_GET_EQUALIZER
:
982 value
= va_arg(ap
, int *);
986 return (vo_xv_get_eq(xv_port
, data
, value
));
991 case VOCTRL_UPDATE_SCREENINFO
:
992 update_xinerama_info();