diff options
-rw-r--r-- | dxr3interface.c | 26 | ||||
-rw-r--r-- | dxr3interface.h | 2 |
2 files changed, 0 insertions, 28 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() { diff --git a/dxr3interface.h b/dxr3interface.h index d19f02a..1533711 100644 --- a/dxr3interface.h +++ b/dxr3interface.h @@ -81,8 +81,6 @@ public: int64_t GetPts(); // state changes - void EnableSPU(); - void DisableSPU(); void EnableVideo() { m_VideoActive = true; |