summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-28 15:39:23 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-28 15:39:23 +0100
commite93ff79da850d1fab15b1cb5c115bf3f5230a770 (patch)
tree18ce2252c95c2ec517eeca778a050a8ad8f232c7
parenta0f12dbc79d53d6390464e3bb903d5f1d3baa579 (diff)
downloadvdr-e93ff79da850d1fab15b1cb5c115bf3f5230a770.tar.gz
vdr-e93ff79da850d1fab15b1cb5c115bf3f5230a770.tar.bz2
Changed DVBS_TUNE_TIMEOUT and DVBC_TUNE_TIMEOUT to 9000ms to avoid problems with channels that have low symbol rates
-rw-r--r--CONTRIBUTORS4
-rw-r--r--HISTORY2
-rw-r--r--dvbdevice.c6
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 <cleditor@arcor.de>
Daniel Karsubka <dkar@gmx.de>
for suggesting to write the epg.data file when VDR exits
+
+Suur Karu <suurkaru@fastmail.fm>
+ 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