diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-10-16 13:22:46 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-10-16 13:22:46 +0200 |
commit | bd8e7f6bf4270dd531939677a814047bc90bbbf5 (patch) | |
tree | 80b9227255f5effc79d9ad468c0196fd8c336e2c /dxr3interface.c | |
parent | aabe7bd5eac3bd7d467a57b9a8ef3b66d2b07556 (diff) | |
download | vdr-plugin-dxr3-bd8e7f6bf4270dd531939677a814047bc90bbbf5.tar.gz vdr-plugin-dxr3-bd8e7f6bf4270dd531939677a814047bc90bbbf5.tar.bz2 |
remove methods for en/disable spu mode - its not used and not needed
Diffstat (limited to 'dxr3interface.c')
-rw-r--r-- | dxr3interface.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/dxr3interface.c b/dxr3interface.c index a0cd6e9..55ede44 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -121,32 +121,6 @@ int64_t cDxr3Interface::GetPts() // state changes // ================================== -//! enable subpicture processing of the dxr3 -void cDxr3Interface::EnableSPU() -{ - uint32_t ioval = EM8300_SPUMODE_ON; - - Lock(); - - CHECK(ioctl(m_fdControl, EM8300_IOCTL_SET_SPUMODE, &ioval)); - - Unlock(); -} - -// ================================== -//! disable subpicture proeccesing of the dxr3 -void cDxr3Interface::DisableSPU() -{ - uint32_t ioval = EM8300_SPUMODE_OFF; - - Lock(); - - CHECK(ioctl(m_fdControl, EM8300_IOCTL_SET_SPUMODE, &ioval)); - - Unlock(); -} - -// ================================== //! disable audio output of dxr3 void cDxr3Interface::DisableAudio() { |