[ANNOUNCE] DVB-S2 + H.264 support for VDR-1.5.13

Message ID 479BC493.5060109@gmx.de
State New
Headers

Commit Message

Reinhard Nissl Jan. 26, 2008, 11:38 p.m. UTC
  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.
  

Patch

--- ../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;