summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscop <scop>2005-03-22 21:02:07 +0000
committerscop <scop>2005-03-22 21:02:07 +0000
commit1d62c1693c98945406c36702f17064ec767046a8 (patch)
tree2e44155abbedfbb76f4570cc331c3bdc31f3aa62
parent191ab2128b71ac4eb85ab4c1501718203ae78adf (diff)
downloadvdr-plugin-dxr3-1d62c1693c98945406c36702f17064ec767046a8.tar.gz
vdr-plugin-dxr3-1d62c1693c98945406c36702f17064ec767046a8.tar.bz2
Sync debug removals with HEAD.
-rw-r--r--dxr3device.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/dxr3device.c b/dxr3device.c
index b487e00..9b5d775 100644
--- a/dxr3device.c
+++ b/dxr3device.c
@@ -490,10 +490,6 @@ void cDxr3Device::SetVideoFormat(bool VideoFormat16_9)
//! sets volume for audio output
void cDxr3Device::SetVolumeDevice(int Volume)
{
- if (cDxr3ConfigData::Instance().GetDebug())
- {
- cLog::Instance() << "change volume to " << Volume << " \n";
- }
cDxr3Interface::Instance().SetVolume(Volume);
}
@@ -501,17 +497,8 @@ void cDxr3Device::SetVolumeDevice(int Volume)
// get spudecoder
cSpuDecoder *cDxr3Device::GetSpuDecoder(void)
{
- if (cDxr3ConfigData::Instance().GetDebug())
- {
- cLog::Instance() << "cDxr3Device::GetSpuDecoder";
- }
-
if (!m_spuDecoder && IsPrimaryDevice())
{
- if (cDxr3ConfigData::Instance().GetDebug())
- {
- cLog::Instance() << "cDxr3Device::GetSpuDecoder: ok";
- }
m_spuDecoder = new cDxr3SpuDecoder();
}
return m_spuDecoder;