mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P
This commit is contained in:
parent
8bc6bcf86e
commit
9bd415d58e
@ -3197,3 +3197,6 @@ Eike Edener <eike@edener.de>
|
||||
Harald Koenig <koenig@tat.physik.uni-tuebingen.de>
|
||||
for making the function cRecordings::MBperMinute() only take into account recordings
|
||||
with less than 5 seconds per megabyte, to filter out radio recordings
|
||||
|
||||
Guido Cordaro <guido.cordaro@tiscali.it>
|
||||
for adding maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P
|
||||
|
4
HISTORY
4
HISTORY
@ -7920,7 +7920,7 @@ Video Disk Recorder Revision History
|
||||
- Fixed cleaning up old EPG events in case no epg data file is given (reported by
|
||||
Dave Pickles).
|
||||
|
||||
2013-10-12: Version 2.1.2
|
||||
2013-10-13: Version 2.1.2
|
||||
|
||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||
- Fixed displaying DVB subtitles (thanks to Rolf Ahrenberg for helping to debug and
|
||||
@ -8001,3 +8001,5 @@ Video Disk Recorder Revision History
|
||||
less than 5 seconds per megabyte, in an attempt to filter out radio recordings
|
||||
(thanks to Harald Koenig). The result of this function was way off any realistic
|
||||
value in case there are many radio recordings in the video directory.
|
||||
- Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P (thanks
|
||||
to Guido Cordaro).
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: dvbdevice.c 3.3 2013/08/23 09:19:43 kls Exp $
|
||||
* $Id: dvbdevice.c 3.4 2013/10/13 14:41:57 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbdevice.h"
|
||||
@ -558,6 +558,8 @@ int cDvbTuner::GetSignalStrength(void) const
|
||||
case 0x13C21019: // TT-budget S2-3200 (DVB-S/DVB-S2)
|
||||
case 0x1AE40001: // TechniSat SkyStar HD2 (DVB-S/DVB-S2)
|
||||
MaxSignal = 670; break;
|
||||
case 0x13D02103: // TechniSat SkyStar 2 DVB-S rev 2.3P
|
||||
MaxSignal = 0x4925; break;
|
||||
}
|
||||
int s = int(Signal) * 100 / MaxSignal;
|
||||
if (s > 100)
|
||||
|
Loading…
Reference in New Issue
Block a user