diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Todo | 1 | ||||
-rw-r--r-- | softhddevice.cpp | 4 |
3 files changed, 6 insertions, 0 deletions
@@ -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 @@ -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; |