diff options
-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(); } // ================================== |