mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added HasSnr to the DEBUG_SIGNALQUALITY output in cDvbTuner::GetSignalQuality()
This commit is contained in:
parent
b25efc415e
commit
8a49851b05
@ -1932,6 +1932,7 @@ Ville Skytt
|
||||
for pointing out that the argument sequence in the memset() call in the ctor of
|
||||
cSatCableNumbers was wrong
|
||||
for removing a redundant NULL check in cDvbSpuDecoder::setTime()
|
||||
for pointing out that the variable HasSnr was unused in cDvbTuner::GetSignalQuality()
|
||||
|
||||
Steffen Beyer <cpunk@reactor.de>
|
||||
for fixing setting the colored button help after deleting a recording in case the next
|
||||
|
2
HISTORY
2
HISTORY
@ -6792,3 +6792,5 @@ Video Disk Recorder Revision History
|
||||
- Removed redundant memset() in the ctor of cSatCableNumbers (triggered by
|
||||
Ville Skyttä pointing out that the argument sequence in the call was wrong).
|
||||
- Removed a redundant NULL check in cDvbSpuDecoder::setTime() (thanks to Ville Skyttä).
|
||||
- Added HasSnr to the DEBUG_SIGNALQUALITY output in cDvbTuner::GetSignalQuality()
|
||||
(triggered by Ville Skyttä pointing out that the variable HasSnr was unused).
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: dvbdevice.c 2.49 2011/12/06 17:38:18 kls Exp $
|
||||
* $Id: dvbdevice.c 2.50 2011/12/10 14:59:34 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbdevice.h"
|
||||
@ -618,7 +618,7 @@ int cDvbTuner::GetSignalQuality(void) const
|
||||
if (q > 100)
|
||||
q = 100;
|
||||
#ifdef DEBUG_SIGNALQUALITY
|
||||
fprintf(stderr, "FE %d/%d: %08X Q = %04X %04X %5d %5d %3d%%\n", adapter, frontend, subsystemId, MaxSnr, Snr, HasBer ? int(Ber) : -1, HasUnc ? int(Unc) : -1, q);
|
||||
fprintf(stderr, "FE %d/%d: %08X Q = %04X %04X %d %5d %5d %3d%%\n", adapter, frontend, subsystemId, MaxSnr, Snr, HasSnr, HasBer ? int(Ber) : -1, HasUnc ? int(Unc) : -1, q);
|
||||
#endif
|
||||
return q;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user