summaryrefslogtreecommitdiff
path: root/transfer.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-01-20 13:40:30 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-01-20 13:40:30 +0100
commit1ba20fa20f632ffb548f57ca9b3b5b9bab5296d0 (patch)
tree152fc0790eabd7a056aa10138426da942cc3fbe4 /transfer.h
parentabde1d04aeb7beb29c2638389c29ff92ff87a75a (diff)
downloadvdr-1ba20fa20f632ffb548f57ca9b3b5b9bab5296d0.tar.gz
vdr-1ba20fa20f632ffb548f57ca9b3b5b9bab5296d0.tar.bz2
Reduced the number of retries in cTransfer::Receive() to avoid blocking recordings in case the primary device can't handle the current live signal1.7.36
Diffstat (limited to 'transfer.h')
-rw-r--r--transfer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/transfer.h b/transfer.h
index 004d5b06..0c668370 100644
--- a/transfer.h
+++ b/transfer.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: transfer.h 2.2 2010/01/29 16:38:09 kls Exp $
+ * $Id: transfer.h 2.3 2013/01/20 13:12:38 kls Exp $
*/
#ifndef __TRANSFER_H
@@ -13,10 +13,13 @@
#include "player.h"
#include "receiver.h"
#include "remux.h"
+#include "tools.h"
class cTransfer : public cReceiver, public cPlayer {
private:
cPatPmtGenerator patPmtGenerator;
+ bool retriesExceeded;
+ cTimeMs timer;
protected:
virtual void Activate(bool On);
virtual void Receive(uchar *Data, int Length);