diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-04-21 10:09:56 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-04-21 10:09:56 +0200 |
commit | dfb1d78abf1a849302d2b93013ad2b8252c5035c (patch) | |
tree | 28d93c1cbd677e7fdd95f5d1c29ccc46e4ce0dba /dvbapi.h | |
parent | c47891d786f4d0f6ce2d97e39a7e92e8c9276d9d (diff) | |
download | vdr-dfb1d78abf1a849302d2b93013ad2b8252c5035c.tar.gz vdr-dfb1d78abf1a849302d2b93013ad2b8252c5035c.tar.bz2 |
Fixed a possible endless loop in shifting recordings between DVB cards
Diffstat (limited to 'dvbapi.h')
-rw-r--r-- | dvbapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.h 1.68 2002/03/10 10:50:00 kls Exp $ + * $Id: dvbapi.h 1.69 2002/04/21 09:49:22 kls Exp $ */ #ifndef __DVBAPI_H @@ -104,7 +104,7 @@ private: static int useDvbApi; int cardIndex; int caCaps[MAXCACAPS]; - int CanShift(int Ca, int Priority); + int CanShift(int Ca, int Priority, int UsedCards = 0); public: static cDvbApi *PrimaryDvbApi; static void SetUseDvbApi(int n); |