diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-09-06 16:13:04 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-09-06 16:13:04 +0200 |
commit | 8386564b1ad53a07b7490420950f4d8a9f5628b8 (patch) | |
tree | 126669323ae4459328c1ae818e9be528abae50c4 /dxr3osd.c | |
parent | 3a4961f8a77f781f0101019c4eca8424d23953f7 (diff) | |
download | vdr-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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(); } } } |