diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | ovgosd.c | 6 |
2 files changed, 6 insertions, 1 deletions
@@ -2,6 +2,7 @@ VDR Plugin 'rpihddevice' Revision History ----------------------------------------- - fixed: + - wait for the OVG thread to be ready when creating an accelerated OSD - set field sync when output interlaced material at interlaced display mode 2015-04-29: Version 0.1.0 @@ -2267,7 +2267,11 @@ public: m_ovg(ovg), m_surface(new cOvgRenderTarget()), m_savedRegion(new cOvgSavedRegion()) - { } + { + cTimeMs timer(10000); + while (!m_ovg->MaxImageSize().Height() && !timer.TimedOut()) + cCondWait::SleepMs(100); + } virtual ~cOvgOsd() { |