summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--Todo1
-rw-r--r--softhddevice.cpp4
3 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 30060d1..5c71bf0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
User johns
Date:
+ Fix build with vdr without yaepg support.
Support yaepghd video picture output position change.
Date: Sat Jan 7 13:20:07 CET 2012
diff --git a/Todo b/Todo
index a69face..58f9033 100644
--- a/Todo
+++ b/Todo
@@ -41,6 +41,7 @@ vdpau:
libva:
hard channel switch
+ yaepghd (VaapiSetOutputPosition) support
libva-intel-driver:
intel still has hangups most with 1080i
diff --git a/softhddevice.cpp b/softhddevice.cpp
index 2ec1a6c..19f2c9f 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -135,9 +135,11 @@ cSoftOsd::~cSoftOsd(void)
//dsyslog("[softhddev]%s:\n", __FUNCTION__);
SetActive(false);
+#ifdef USE_YAEPG
if (vidWin.bpp) {
VideoSetOutputPosition(0, 0, 1920, 1080);
}
+#endif
OsdClose();
}
@@ -153,6 +155,7 @@ void cSoftOsd::Flush(void)
}
// support yaepghd, video window
+#ifdef USE_YAEPG
if (vidWin.bpp) {
dsyslog("[softhddev]%s: %dx%d+%d+%d\n", __FUNCTION__,
vidWin.Width(), vidWin.Height(), vidWin.x1, vidWin.y2 );
@@ -161,6 +164,7 @@ void cSoftOsd::Flush(void)
VideoSetOutputPosition(Left() + vidWin.x1, Top() + vidWin.y1,
vidWin.Width(), vidWin.Height());
}
+#endif
if (!IsTrueColor()) {
static char warned;