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

Message ID 47F287F6.7010606@gmx.de
State New
Headers

Commit Message

Reinhard Nissl April 1, 2008, 7:07 p.m. UTC
  Hi,

Reinhard Nissl schrieb:

> attached you'll find updated patches for VDR-1.5.18.
> 
> The patch named *-dvbs2-* additionally adds DVB-S2 support to VDR
> (based on VDR-1.5.14) 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.
> 
> VDR-1.5.14 reported changes to transponder data incorrectly. The
> attached dvbs2 patch contains a fix for this issue by introducing
> TransponderDataToString().
> 
> The patch includes now the formerly addon patch which fixed building 
> after recent multiproto changes.

The attached addon patch fixes a logic error in 
cIteratorImplSourceNidTid. The error caused VDR to skip updating 
transponder information for almost all channels.

The error is not related to DVB-S2 nor H.264 but slipped into 
these patches at the time when I extended the patches to contain 
formerly released speedup patches.

> Have a look at this page for more instructions on this concern:
> 
> http://www.vdr-wiki.de/wiki/index.php/OpenSUSE_VDR_DVB-S2_-_xine

Bye.
  

Patch

--- ../vdr-1.5.18-dvbs2-other/channels.c	2008-03-19 22:34:14.000000000 +0100
+++ channels.c	2008-04-01 19:28:45.000000000 +0200
@@ -1075,8 +1075,8 @@  cIterator<cChannel> cChannels::GetChanne
        }
     virtual void *First(void) { return FindMatchingChannel(false, true); }
     virtual void *Last(void)  { return FindMatchingChannel(true,  true); }
-    virtual void *Prev(void)  { return FindMatchingChannel(false); }
-    virtual void *Next(void)  { return FindMatchingChannel(true);  }
+    virtual void *Prev(void)  { return FindMatchingChannel(true);  }
+    virtual void *Next(void)  { return FindMatchingChannel(false); }
     virtual void *Current(void) const  { return current ? (cChannel *)current->Object() : NULL; }
     };