1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Fixed avoiding the primary DVB interface in case Setup.PrimaryLimit is 0

This commit is contained in:
Klaus Schmidinger 2002-03-08 14:24:19 +01:00
parent 3b46788bcd
commit a5c7994c26
2 changed files with 7 additions and 3 deletions

View File

@ -1071,3 +1071,4 @@ Video Disk Recorder Revision History
- Added 'Ca' code 201 for 'Cryptoworks, GOD-DIGITAL' to 'ca.conf' (thanks to - Added 'Ca' code 201 for 'Cryptoworks, GOD-DIGITAL' to 'ca.conf' (thanks to
Bernd Schweikert). Bernd Schweikert).
- Fixed avoiding the primary DVB interface in case Setup.PrimaryLimit is 0.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: dvbapi.c 1.154 2002/03/03 15:43:24 kls Exp $ * $Id: dvbapi.c 1.155 2002/03/08 14:23:29 kls Exp $
*/ */
#include "dvbapi.h" #include "dvbapi.h"
@ -63,6 +63,9 @@ extern "C" {
// The maximum time to wait before giving up while catching up on an index file: // The maximum time to wait before giving up while catching up on an index file:
#define MAXINDEXCATCHUP 2 // seconds #define MAXINDEXCATCHUP 2 // seconds
// The default priority for non-primary DVB cards:
#define DEFAULTPRIORITY -2
#define CHECK(s) { if ((s) < 0) LOG_ERROR; } // used for 'ioctl()' calls #define CHECK(s) { if ((s) < 0) LOG_ERROR; } // used for 'ioctl()' calls
#define FATALERRNO (errno != EAGAIN && errno != EINTR) #define FATALERRNO (errno != EAGAIN && errno != EINTR)
@ -1685,7 +1688,7 @@ cDvbApi::cDvbApi(int n)
transferBuffer = NULL; transferBuffer = NULL;
transferringFromDvbApi = NULL; transferringFromDvbApi = NULL;
ca = -1; ca = -1;
priority = -1; priority = DEFAULTPRIORITY;
cardIndex = n; cardIndex = n;
SetCaCaps(); SetCaCaps();
@ -2567,7 +2570,7 @@ void cDvbApi::StopRecord(void)
delete recordBuffer; delete recordBuffer;
recordBuffer = NULL; recordBuffer = NULL;
ca = -1; ca = -1;
priority = -1; priority = DEFAULTPRIORITY;
} }
} }