From patchwork Sat Jan 26 23:38:59 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Reinhard Nissl X-Patchwork-Id: 12590 Received: from mail.gmx.net ([213.165.64.20]) by www.linuxtv.org with smtp (Exim 4.63) (envelope-from ) id 1JIucW-0006l2-73 for vdr@linuxtv.org; Sun, 27 Jan 2008 00:39:32 +0100 Received: (qmail invoked by alias); 26 Jan 2008 23:39:01 -0000 Received: from p5493169D.dip0.t-ipconnect.de (EHLO [192.168.101.15]) [84.147.22.157] by mail.gmx.net (mp047) with SMTP; 27 Jan 2008 00:39:01 +0100 X-Authenticated: #527675 X-Provags-ID: V01U2FsdGVkX19ELW03OJFEKRlrLmb3gjFIYX5gacymbO3RAxdDic bp8kX1ow7sEQIi Message-ID: <479BC493.5060109@gmx.de> Date: Sun, 27 Jan 2008 00:38:59 +0100 From: Reinhard Nissl User-Agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.8.1.9) Gecko/20070801 SUSE/2.0.0.9-0.1 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: VDR Mailing List References: <4792938C.3090802@gmx.de> In-Reply-To: <4792938C.3090802@gmx.de> X-Y-GMX-Trusted: 0 Subject: Re: [vdr] [ANNOUNCE] DVB-S2 + H.264 support for VDR-1.5.13 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: Sat, 26 Jan 2008 23:39:32 -0000 Status: O X-Status: X-Keywords: X-UID: 15282 Hi, Reinhard Nissl schrieb: > attached you'll find updated patches for VDR-1.5.13. > > The patch named *-dvbs2-* additionally adds DVB-S2 support to VDR > (thanks to Marco Schlüßler) and requires to use the DVB drivers > from the multi-proto tree (see URL below for further details). > > The other patch is without DVB-S2 support and therefore most > suitable for DVB-C users. > > The patches have been extended to also include the recently > released bugfixes, addons, forgotten speedup patches and LIRC > changes. Additionally, cDvbTuner::IsTunedTo() and the channel > editor have been fixed / enhanced to deal with modulation systems. Klaus has found an off by 1 error in nit.c. The attached addon should fix this issue. > Have a look at this page for more instructions on this concern: > > http://www.vdr-wiki.de/wiki/index.php/OpenSuSE_DVB-S2_-_Step_by_Step_Installationsanleitung_%28Achtung_Beta%29 Bye. --- ../vdr-1.5.13-dvbs2-other/nit.c 2008-01-19 23:22:17.000000000 +0100 +++ nit.c 2008-01-27 00:34:09.000000000 +0100 @@ -241,7 +241,7 @@ void cNitFilter::Process(u_short Pid, u_ int GuardInterval = GuardIntervals[sd->getGuardInterval()]; static int TransmissionModes[] = { DVBFE_TRANSMISSION_MODE_2K, DVBFE_TRANSMISSION_MODE_8K, DVBFE_TRANSMISSION_MODE_4K, DVBFE_TRANSMISSION_MODE_AUTO }; int TransmissionMode = TransmissionModes[sd->getTransmissionMode()]; - static int Alphas[] = { DVBFE_ALPHA_1, DVBFE_ALPHA_2, DVBFE_ALPHA_4 }; + static int Alphas[] = { 0, DVBFE_ALPHA_1, DVBFE_ALPHA_2, DVBFE_ALPHA_4 }; static int Priorities[] = { DVBFE_STREAM_PRIORITY_LP, DVBFE_STREAM_PRIORITY_HP }; int Priority = Priorities[sd->getPriority()]; int Alpha = 0;