diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-04-18 13:11:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-04-18 13:11:51 +0200 |
commit | f90edc1e8b377242366e5d25e5443fcd3f41fe90 (patch) | |
tree | 3835cd398e32bca4db83316ae86672544b5fc038 /dvbdevice.c | |
parent | d1ff365767997cc7b83c75cdfd467b9dc200d7d5 (diff) | |
download | vdr-f90edc1e8b377242366e5d25e5443fcd3f41fe90.tar.gz vdr-f90edc1e8b377242366e5d25e5443fcd3f41fe90.tar.bz2 |
Removed logging DVB API 5 signal statistics, because it happened too often if EPG scan is active
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 46a219b4..1c259059 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 4.7 2017/04/17 15:02:44 kls Exp $ + * $Id: dvbdevice.c 4.8 2017/04/18 13:11:07 kls Exp $ */ #include "dvbdevice.h" @@ -1155,18 +1155,6 @@ void cDvbTuner::Action(void) isyslog("frontend %d/%d regained lock on channel %d (%s), tp %d", adapter, frontend, channel.Number(), channel.Name(), channel.Transponder()); LostLock = false; } - if (tunerStatus == tsTuned) { - if (SysLogLevel >= 3) { - int Valid; - double Strength, Cnr; - if (GetSignalStats(Valid, &Strength, &Cnr)) { - cString s = cString::sprintf("frontend %d/%d locked with signal", adapter, frontend); - if ((Valid & DTV_STAT_VALID_STRENGTH) != 0) s = cString::sprintf("%s STR=%1.1fdBm", *s, Strength); - if ((Valid & DTV_STAT_VALID_CNR) != 0) s = cString::sprintf("%s CNR=%1.1fdB", *s, Cnr); - dsyslog("%s", *s); - } - } - } tunerStatus = tsLocked; locked.Broadcast(); lastTimeoutReport = 0; |