diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-12-07 15:05:48 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-12-07 15:05:48 +0100 |
commit | e757f10e440a160c9657b89b51388311d95ff123 (patch) | |
tree | 989d801547aa65b60d1c8cbf38388259d69ca96f /transfer.h | |
parent | c8682653974caa80c027b097d37f74a1a84022fe (diff) | |
download | vdr-e757f10e440a160c9657b89b51388311d95ff123.tar.gz vdr-e757f10e440a160c9657b89b51388311d95ff123.tar.bz2 |
If TS packets are not accepted by the output device in Transfer Mode, this is now reported only once per minute in the log file
Diffstat (limited to 'transfer.h')
-rw-r--r-- | transfer.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: transfer.h 4.1 2015/09/05 11:43:08 kls Exp $ + * $Id: transfer.h 4.2 2017/12/07 14:56:22 kls Exp $ */ #ifndef __TRANSFER_H @@ -16,6 +16,8 @@ class cTransfer : public cReceiver, public cPlayer { private: + time_t lastErrorReport; + int numLostPackets; cPatPmtGenerator patPmtGenerator; protected: virtual void Activate(bool On); |