summaryrefslogtreecommitdiff
path: root/video.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-01-21 21:56:19 +0100
committerJohns <johns98@gmx.net>2012-01-21 21:56:19 +0100
commitbc8a13e1efcfe0bea083c911c35b528dfb899106 (patch)
treebc2e055d56037698713e6fa429c858c9dcd1834c /video.c
parentbd7e6143c734a40eadd5937a7f4a8d03070e8b11 (diff)
downloadvdr-plugin-softhddevice-bc8a13e1efcfe0bea083c911c35b528dfb899106.tar.gz
vdr-plugin-softhddevice-bc8a13e1efcfe0bea083c911c35b528dfb899106.tar.bz2
Call VdpauMixerSetup only, if mixer setup.
Diffstat (limited to 'video.c')
-rw-r--r--video.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/video.c b/video.c
index bb93a83..3d01cd3 100644
--- a/video.c
+++ b/video.c
@@ -6003,6 +6003,8 @@ static void VdpauMixVideo(VdpauDecoder * decoder)
///
/// @param decoder VDPAU hw decoder
///
+/// @FIXME: render only video area, not fullscreen!
+///
static void VdpauBlackSurface(VdpauDecoder * decoder)
{
VdpStatus status;
@@ -6090,7 +6092,9 @@ static void VdpauDisplayFrame(void)
if (VideoSurfaceModesChanged) { // handle changed modes
for (i = 0; i < VdpauDecoderN; ++i) {
- VdpauMixerSetup(VdpauDecoders[i]);
+ if (VdpauDecoders[i]->VideoMixer != VDP_INVALID_HANDLE) {
+ VdpauMixerSetup(VdpauDecoders[i]);
+ }
}
VideoSurfaceModesChanged = 0;
}