summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-09-17 11:41:01 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-09-17 11:41:01 +0200
commitb228086355b16dfa872a93f1d2366fb0b28740e1 (patch)
tree55789581f00cce54eeefc1a03241591017dd1be2 /dvbdevice.c
parentffaf10c3f35b8cb59be65345c20e01fb5a27105a (diff)
downloadvdr-b228086355b16dfa872a93f1d2366fb0b28740e1.tar.gz
vdr-b228086355b16dfa872a93f1d2366fb0b28740e1.tar.bz2
Disabled SCR code in cDvbTuner's dtor
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 1cd883eb..175d708d 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 2.45 2011/09/11 13:50:20 kls Exp $
+ * $Id: dvbdevice.c 2.46 2011/09/17 11:41:01 kls Exp $
*/
#include "dvbdevice.h"
@@ -316,10 +316,12 @@ cDvbTuner::~cDvbTuner()
newSet.Broadcast();
locked.Broadcast();
Cancel(3);
+ /* looks like this irritates the SCR switch, so let's leave it out for now
if (lastDiseqc && lastDiseqc->IsScr()) {
unsigned int Frequency = 0;
ExecuteDiseqc(lastDiseqc, &Frequency);
}
+ */
}
bool cDvbTuner::IsTunedTo(const cChannel *Channel) const