summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-06-11 14:34:24 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-06-11 14:34:24 +0200
commit098d21117e9fc8d8703c2f3c11e0cfb9d74d0389 (patch)
treeabb3725fcb2295f80ec1f197ce3d4fcc7a9ab830 /dvbdevice.c
parentc90e87d71f9fba5e6fb92700d70c0ca7664c4289 (diff)
downloadvdr-098d21117e9fc8d8703c2f3c11e0cfb9d74d0389.tar.gz
vdr-098d21117e9fc8d8703c2f3c11e0cfb9d74d0389.tar.bz2
Improved signal strength and quality handling (cont'd)
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index c874b2b1..b0750dd4 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.41 2011/06/05 16:22:51 kls Exp $
+ * $Id: dvbdevice.c 2.42 2011/06/11 14:34:24 kls Exp $
*/
#include "dvbdevice.h"
@@ -386,7 +386,7 @@ int cDvbTuner::GetSignalStrength(void) const
// Use the subsystemId to identify individual devices in case they need
// special treatment to map their Signal value into the range 0...0xFFFF.
switch (subsystemId) {
- case 0x13C21019: MaxSignal = 870; break; // TT-budget S2-3200 (DVB-S/DVB-S2)
+ case 0x13C21019: MaxSignal = 670; break; // TT-budget S2-3200 (DVB-S/DVB-S2)
}
int s = int(Signal) * 100 / MaxSignal;
if (s > 100)