From ab87f9e8a27fbe30ab97e07d4dc4fd3ad2bad23f Mon Sep 17 00:00:00 2001 From: scop Date: Sat, 27 Aug 2005 10:50:55 +0000 Subject: Make the device class call cDevice's Mute() and Clear(). --- HISTORY | 1 + dxr3device.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/HISTORY b/HISTORY index aa15a8a..34c3fc9 100644 --- a/HISTORY +++ b/HISTORY @@ -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(); } // ================================== -- cgit v1.2.3