From patchwork Tue Jan 6 16:32:37 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rolf Ahrenberg X-Patchwork-Id: 12691 Received: from smtp-4.hut.fi ([130.233.228.94]) by www.linuxtv.org with esmtp (Exim 4.63) (envelope-from ) id 1LKEsC-0005Ys-B9 for vdr@linuxtv.org; Tue, 06 Jan 2009 17:33:45 +0100 Received: from localhost (katosiko.hut.fi [130.233.228.115]) by smtp-4.hut.fi (8.13.6/8.12.10) with ESMTP id n06GXAlW023645 for ; Tue, 6 Jan 2009 18:33:10 +0200 Received: from smtp-4.hut.fi ([130.233.228.94]) by localhost (katosiko.hut.fi [130.233.228.115]) (amavisd-new, port 10024) with LMTP id 15015-23 for ; Tue, 6 Jan 2009 18:33:10 +0200 (EET) Received: from kosh.hut.fi (kosh.hut.fi [130.233.228.10]) by smtp-4.hut.fi (8.13.6/8.12.10) with ESMTP id n06GWb3j023471 for ; Tue, 6 Jan 2009 18:32:37 +0200 Date: Tue, 6 Jan 2009 18:32:37 +0200 (EET) From: Rolf Ahrenberg To: VDR Mailing List In-Reply-To: <4963735A.2090706@cadsoft.de> Message-ID: References: <4963735A.2090706@cadsoft.de> MIME-Version: 1.0 X-TKK-Virus-Scanned: by amavisd-new-2.1.2-hutcc at katosiko.hut.fi X-LSpam-Score: -6.4 (------) X-LSpam-Report: No, score=-6.4 required=5.0 tests=AWL=0.244, BAYES_00=-2.599, RCVD_IN_DNSWL_MED=-4 autolearn=ham Subject: Re: [vdr] [ANNOUNCE] VDR developer version 1.7.3 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.9 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2009 16:33:45 -0000 Status: O X-Status: X-Keywords: X-UID: 19058 On Tue, 6 Jan 2009, Klaus Schmidinger wrote: > - cDvbDevice now uses the FE_CAN_2G_MODULATION flag to determine whether a device > can handle DVB-S2. The #define is still there to allow people with older drivers > who don't need DVB-S2 to use this version without pathcing. Sorry for hijacking the thread, but you forgot to rename the old #define. Check the attached patch. BR, --- rofa diff -Nru vdr-1.7.3-vanilla/dvbdevice.c vdr-1.7.3-dvbdevice/dvbdevice.c --- vdr-1.7.3-vanilla/dvbdevice.c 2009-01-06 18:12:44.000000000 +0200 +++ vdr-1.7.3-dvbdevice/dvbdevice.c 2009-01-06 18:28:21.000000000 +0200 @@ -32,7 +32,7 @@ // unpatched driver. However, with an unpatched driver it will not support // DVB-S2 hardware. If you have DVB-S2 hardware you need to either patch // the driver or modify the line that uses this macro in cDvbDevice::cDvbDevice(). -#define FE_CAN_2ND_GEN_MODULATION 0x10000000 +#define FE_CAN_2G_MODULATION 0x10000000 #define DO_REC_AND_PLAY_ON_PRIMARY_DEVICE 1 #define DO_MULTIPLE_RECORDINGS 1