summaryrefslogtreecommitdiff
path: root/dxr3spudecoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'dxr3spudecoder.c')
-rw-r--r--dxr3spudecoder.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/dxr3spudecoder.c b/dxr3spudecoder.c
index fde5140..bb11d30 100644
--- a/dxr3spudecoder.c
+++ b/dxr3spudecoder.c
@@ -29,7 +29,11 @@ cDxr3SpuDecoder::cDxr3SpuDecoder() : m_Interface(cDxr3Interface::Instance()), m_
// ==================================
// ! send spu data to dxr3
-void cDxr3SpuDecoder::processSPU(uint32_t pts, uint8_t * buf)
+#if VDRVERSNUM >= 10318
+void cDxr3SpuDecoder::processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow)
+#else
+void cDxr3SpuDecoder::processSPU(uint32_t pts, uint8_t * buf)
+#endif
{
// size are the first two bits of buf
// size = (buf[0] << 8) + buf[1]