summaryrefslogtreecommitdiffstats
path: root/video/vdpau_functions.inc
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-17 19:57:18 +0200
committerwm4 <wm4@nowhere>2013-08-17 20:06:20 +0200
commit75298d9f0afa4adda99cf32459bb68f7967960f7 (patch)
tree517abb5dd0eefcc2c7d2d591de765f23e9db5627 /video/vdpau_functions.inc
parent76963781df0518ea902a4d2bb618378aff3e4c6e (diff)
downloadmpv-75298d9f0afa4adda99cf32459bb68f7967960f7.tar.bz2
mpv-75298d9f0afa4adda99cf32459bb68f7967960f7.tar.xz
vo_vdpau: allow setting colorkey
Formally, this sets the "background color" of the presentation queue. But in practice, this color is also used as colorkey. This commit doesn't change the VDPAU default yet.
Diffstat (limited to 'video/vdpau_functions.inc')
-rw-r--r--video/vdpau_functions.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/vdpau_functions.inc b/video/vdpau_functions.inc
index 528fe999e2..bbac30dedf 100644
--- a/video/vdpau_functions.inc
+++ b/video/vdpau_functions.inc
@@ -28,6 +28,8 @@ VDP_FUNCTION(VdpPresentationQueueDestroy, VDP_FUNC_ID_PRESENTATION_QUEUE_DESTROY
VDP_FUNCTION(VdpPresentationQueueDisplay, VDP_FUNC_ID_PRESENTATION_QUEUE_DISPLAY, presentation_queue_display)
VDP_FUNCTION(VdpPresentationQueueGetTime, VDP_FUNC_ID_PRESENTATION_QUEUE_GET_TIME, presentation_queue_get_time)
VDP_FUNCTION(VdpPresentationQueueQuerySurfaceStatus, VDP_FUNC_ID_PRESENTATION_QUEUE_QUERY_SURFACE_STATUS, presentation_queue_query_surface_status)
+VDP_FUNCTION(VdpPresentationQueueSetBackgroundColor, VDP_FUNC_ID_PRESENTATION_QUEUE_SET_BACKGROUND_COLOR, presentation_queue_set_background_color)
+VDP_FUNCTION(VdpPresentationQueueGetBackgroundColor, VDP_FUNC_ID_PRESENTATION_QUEUE_GET_BACKGROUND_COLOR, presentation_queue_get_background_color)
VDP_FUNCTION(VdpPresentationQueueTargetCreateX11, VDP_FUNC_ID_PRESENTATION_QUEUE_TARGET_CREATE_X11, presentation_queue_target_create_x11)
VDP_FUNCTION(VdpPresentationQueueTargetDestroy, VDP_FUNC_ID_PRESENTATION_QUEUE_TARGET_DESTROY, presentation_queue_target_destroy)
VDP_FUNCTION(VdpVideoMixerCreate, VDP_FUNC_ID_VIDEO_MIXER_CREATE, video_mixer_create)