diff options
Diffstat (limited to 'dxr3spudecoder.h')
-rw-r--r-- | dxr3spudecoder.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dxr3spudecoder.h b/dxr3spudecoder.h index b05540d..a5fea45 100644 --- a/dxr3spudecoder.h +++ b/dxr3spudecoder.h @@ -49,7 +49,11 @@ public: void Hide(); void Draw(); bool IsVisible() { return m_visible; } - void processSPU(uint32_t pts, uint8_t * buf); +#if VDRVERSNUM >= 10318 + void processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow); +#else + void processSPU(uint32_t pts, uint8_t * buf); +#endif private: cDxr3Interface& m_Interface; ///< interface to dxr3 driver |