summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Nißl <rnissl@gmx.de>2011-01-25 20:30:34 +0100
committerReinhard Nißl <rnissl@gmx.de>2011-01-25 20:30:34 +0100
commitc34ad15c065fec9d539cd0ca75593903865666a9 (patch)
tree776c29ba60e872c18b43db510ae717c5ee743d2f
parent288db091c2737e68e89dad391b9880e55df7f7d3 (diff)
downloadxine-lib-c34ad15c065fec9d539cd0ca75593903865666a9.tar.gz
xine-lib-c34ad15c065fec9d539cd0ca75593903865666a9.tar.bz2
Correct type of two VDPAU function pointers.
As both types have the same signature, there was error during build nor at runtime. --HG-- extra : rebase_source : 125cbc9417554303cc6a3c04dfedfedcdcc4710b
-rw-r--r--src/video_out/video_out_vdpau.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_vdpau.c b/src/video_out/video_out_vdpau.c
index 4348aaa0a..31cb03a72 100644
--- a/src/video_out/video_out_vdpau.c
+++ b/src/video_out/video_out_vdpau.c
@@ -168,8 +168,8 @@ static void vdpau_reinit( vo_driver_t *this_gen );
static VdpVideoSurfaceCreate *orig_vdp_video_surface_create;
static VdpVideoSurfaceDestroy *orig_vdp_video_surface_destroy;
-static VdpVideoSurfaceCreate *orig_vdp_output_surface_create;
-static VdpVideoSurfaceDestroy *orig_vdp_output_surface_destroy;
+static VdpOutputSurfaceCreate *orig_vdp_output_surface_create;
+static VdpOutputSurfaceDestroy *orig_vdp_output_surface_destroy;
static VdpVideoSurfacePutBitsYCbCr *orig_vdp_video_surface_putbits_ycbcr;