summaryrefslogtreecommitdiff
path: root/dxr3osd.c
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-09-06 16:13:04 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-09-06 16:13:04 +0200
commit8386564b1ad53a07b7490420950f4d8a9f5628b8 (patch)
tree126669323ae4459328c1ae818e9be528abae50c4 /dxr3osd.c
parent3a4961f8a77f781f0101019c4eca8424d23953f7 (diff)
downloadvdr-plugin-dxr3-8386564b1ad53a07b7490420950f4d8a9f5628b8.tar.gz
vdr-plugin-dxr3-8386564b1ad53a07b7490420950f4d8a9f5628b8.tar.bz2
osd: use clearOsd() from cSpuEncoder instead of StopSpu from cSPUEncoder
this is the first step to marriage the osd part with the new spu encoder
Diffstat (limited to 'dxr3osd.c')
-rw-r--r--dxr3osd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dxr3osd.c b/dxr3osd.c
index a9d7622..5175b15 100644
--- a/dxr3osd.c
+++ b/dxr3osd.c
@@ -21,6 +21,7 @@
*/
#include "dxr3interface.h"
+#include "spuencoder.h"
#include "dxr3osd.h"
#include "dxr3interface_spu_encoder.h"
@@ -97,7 +98,7 @@ void cDxr3Osd::SetActive(bool On)
}
else
{
- Spu->StopSpu();
+ cSpuEncoder::instance()->clearOsd();
}
}
}