From 4289180a03b933efe7e922e71c1b9c7da7f481ad Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 25 May 2003 11:02:58 +0200 Subject: [PATCH] Changed the DEFAULTPRIORITY in device.c to -1 --- CONTRIBUTORS | 2 ++ HISTORY | 5 ++++- device.c | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 515ffe36..70e1a4f0 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -481,6 +481,8 @@ Reinhard Walter Buchner for adding some satellites to 'sources.conf' for his help in testing tuning with "Motor-DiSEqC" for his help in debugging CAM support + for reporting a problem with recording FTA channels on the CAM device in case + the CAM is not connected to the primary device Lauri Tischler for helping to test and debug the new channel source and DiSEqC handling diff --git a/HISTORY b/HISTORY index 6fcaa0c3..0b24e89d 100644 --- a/HISTORY +++ b/HISTORY @@ -2173,7 +2173,7 @@ Video Disk Recorder Revision History - No longer waiting inside cIndexFile::CatchUp() to avoid shortly blocking replay at the end of a recording. -2003-05-24: Version 1.1.33 +2003-05-25: Version 1.1.33 - Modified handling of audio packets in cDvbPlayer for better sync with external AC3 replay (thanks to Werner Fink). @@ -2198,3 +2198,6 @@ Video Disk Recorder Revision History - Fixed cReplayControl::Show() to avoid a compiler warning in g++ 3.2.3 (thanks to Jan Ekholm for reporting this one). - Completed the Slovenian OSD texts (thanks to Matjaz Thaler). +- Changed the DEFAULTPRIORITY in device.c to -1, so that the primary device + will be used for FTA recordings in case the CAM is connected to a non-primary + device (thanks to Reinhard Walter Buchner for reporting this one). diff --git a/device.c b/device.c index 7562a328..58f9bf0a 100644 --- a/device.c +++ b/device.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 1.43 2003/05/16 13:26:43 kls Exp $ + * $Id: device.c 1.44 2003/05/25 10:57:59 kls Exp $ */ #include "device.h" @@ -23,7 +23,7 @@ // --- cDevice --------------------------------------------------------------- // The default priority for non-primary devices: -#define DEFAULTPRIORITY -2 +#define DEFAULTPRIORITY -1 int cDevice::numDevices = 0; int cDevice::useDevice = 0;