summaryrefslogtreecommitdiff
path: root/video.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2013-02-15 15:58:49 +0100
committerJohns <johns98@gmx.net>2013-02-15 15:58:49 +0100
commitd6f557c6f72141d0936a5db588414f66ff6714ca (patch)
tree747fc5244d323e8bf8f4ae35bc5c6628ea0534b2 /video.c
parent2d2ea53d16cf093bc63df9d7eadc794ec979ca06 (diff)
downloadvdr-plugin-softhddevice-d6f557c6f72141d0936a5db588414f66ff6714ca.tar.gz
vdr-plugin-softhddevice-d6f557c6f72141d0936a5db588414f66ff6714ca.tar.bz2
Removes warnings, when compiles without VDPAU.
Diffstat (limited to 'video.c')
-rw-r--r--video.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/video.c b/video.c
index 94fcd0b..265adf6 100644
--- a/video.c
+++ b/video.c
@@ -10398,6 +10398,7 @@ void VideoSetBrightness(int brightness)
}
#endif
// FIXME: VA-API support
+ (void)brightness;
}
///
@@ -10414,6 +10415,7 @@ void VideoSetContrast(int contrast)
}
#endif
// FIXME: VA-API support
+ (void)contrast;
}
///
@@ -10430,6 +10432,7 @@ void VideoSetSaturation(int saturation)
}
#endif
// FIXME: VA-API support
+ (void)saturation;
}
///
@@ -10446,6 +10449,7 @@ void VideoSetHue(int hue)
}
#endif
// FIXME: VA-API support
+ (void)hue;
}
///
@@ -10497,6 +10501,7 @@ void VideoSetOutputPosition(VideoHwDecoder * hw_decoder, int x, int y,
// FIXME: not supported by vaapi without unscaled OSD,
// FIXME: if used to position video inside osd
#endif
+ (void)hw_decoder;
}
///