From e93ff79da850d1fab15b1cb5c115bf3f5230a770 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 28 Jan 2006 15:39:23 +0100 Subject: [PATCH] Changed DVBS_TUNE_TIMEOUT and DVBC_TUNE_TIMEOUT to 9000ms to avoid problems with channels that have low symbol rates --- CONTRIBUTORS | 4 ++++ HISTORY | 2 ++ dvbdevice.c | 6 +++--- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index d248062b..c7bd15c6 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1702,3 +1702,7 @@ Alexander Hans Daniel Karsubka for suggesting to write the epg.data file when VDR exits + +Suur Karu + for reporting a problem with the tuning timeout for channels that have low symbol + rates diff --git a/HISTORY b/HISTORY index 17f9b2cd..9c1d9ed7 100644 --- a/HISTORY +++ b/HISTORY @@ -4257,3 +4257,5 @@ Video Disk Recorder Revision History - There is now a log message when VDR writes the epg.data file. - Fixed cTimers::GetNextActiveTimer() so that it won't return an expired timer (reported by Rolf Ahrenberg). +- Changed DVBS_TUNE_TIMEOUT and DVBC_TUNE_TIMEOUT to 9000ms to avoid problems with + channels that have low symbol rates (reported by Suur Karu). diff --git a/dvbdevice.c b/dvbdevice.c index fe32298a..ee8c6235 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 1.150 2006/01/14 15:57:36 kls Exp $ + * $Id: dvbdevice.c 1.151 2006/01/28 15:37:01 kls Exp $ */ #include "dvbdevice.h" @@ -40,9 +40,9 @@ #define DEV_DVB_AUDIO "audio" #define DEV_DVB_CA "ca" -#define DVBS_TUNE_TIMEOUT 2000 //ms +#define DVBS_TUNE_TIMEOUT 9000 //ms #define DVBS_LOCK_TIMEOUT 2000 //ms -#define DVBC_TUNE_TIMEOUT 5000 //ms +#define DVBC_TUNE_TIMEOUT 9000 //ms #define DVBC_LOCK_TIMEOUT 2000 //ms #define DVBT_TUNE_TIMEOUT 9000 //ms #define DVBT_LOCK_TIMEOUT 2000 //ms