diff options
author | scop <scop> | 2005-08-27 10:50:55 +0000 |
---|---|---|
committer | scop <scop> | 2005-08-27 10:50:55 +0000 |
commit | ab87f9e8a27fbe30ab97e07d4dc4fd3ad2bad23f (patch) | |
tree | 35b8371a1252a16c5d19868bf283466cc7572035 | |
parent | 8b95921adb5c3cc9bb18c77a889bef62593d1121 (diff) | |
download | vdr-plugin-dxr3-ab87f9e8a27fbe30ab97e07d4dc4fd3ad2bad23f.tar.gz vdr-plugin-dxr3-ab87f9e8a27fbe30ab97e07d4dc4fd3ad2bad23f.tar.bz2 |
Make the device class call cDevice's Mute() and Clear().
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3device.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -297,3 +297,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - don't abort with lpcm frames containing an odd number of bytes, drop the frame instead (Ville Skyttä) - fix crash on audio sync buffer push timeouts (Jon Burgess) +- make the device class call cDevice's Mute() and Clear() (Ville Skyttä) diff --git a/dxr3device.c b/dxr3device.c index 39467ed..eda81fc 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -184,6 +184,7 @@ void cDxr3Device::Clear() m_DemuxDevice.Clear(); m_Offset = 0; m_strBuf.erase(m_strBuf.begin(), m_strBuf.end()); + cDevice::Clear(); } // ================================== @@ -207,6 +208,7 @@ void cDxr3Device::Freeze() void cDxr3Device::Mute() { m_DemuxDevice.SetTrickMode(DXR3_FAST); + cDevice::Mute(); } // ================================== |