diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-24 10:15:46 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-24 10:15:46 +0100 |
commit | e3171acd59efcd677635ba4c440aa2e710fbbac3 (patch) | |
tree | 1777190d1cb8fa9bad625c555ff45563e4b331bb /dvbdevice.c | |
parent | d9401eb27b273a655e55c21ac7df181b45c126a0 (diff) | |
download | vdr-e3171acd59efcd677635ba4c440aa2e710fbbac3.tar.gz vdr-e3171acd59efcd677635ba4c440aa2e710fbbac3.tar.bz2 |
Disabled 'preliminary fix for UPT error'
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index e1d5fc63..8ed62e1f 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.81 2004/02/08 14:07:07 kls Exp $ + * $Id: dvbdevice.c 1.82 2004/02/24 10:12:13 kls Exp $ */ #include "dvbdevice.h" @@ -35,6 +35,7 @@ extern "C" { #define DO_REC_AND_PLAY_ON_PRIMARY_DEVICE 1 #define DO_MULTIPLE_RECORDINGS 1 +//#define WAIT_FOR_LOCK_AFTER_TUNING 1 #define DEV_VIDEO "/dev/video" #define DEV_DVB_ADAPTER "/dev/dvb/adapter" @@ -751,11 +752,12 @@ bool cDvbDevice::SetChannelDevice(const cChannel *Channel, bool LiveView) dvbTuner->Set(Channel, DoTune, !EITScanner.UsesDevice(this)); //XXX 1.3: this is an ugly hack - find a cleaner solution//XXX +#ifdef WAIT_FOR_LOCK_AFTER_TUNING //XXX TODO preliminary fix for the "Unknown picture type" error time_t t0 = time(NULL); while (!dvbTuner->Locked() && time(NULL) - t0 < 5) usleep(100); - //XXX +#endif // PID settings: if (TurnOnLivePIDs) { |