[ANNOUNCE] VDR developer version 2.3.1

Message ID 5618EE10.2060104@nic.fi
State New
Headers

Commit Message

Matti Horila Oct. 10, 2015, 10:53 a.m. UTC
  Finnish DVB-T channels not updating.

I was building new vdr system and copied only one channel to channels.conf from my current production system and noticed that channels were not updating.

Probably something to do with this:

> - Fixed setting the source value of newly created channels, in case the NIT is
>    received from a different, but very close satellite position (reported by Daniel
>    Ribeiro). The code for handling different NITs has been removed from nit.c, because
>    according to the DVB standard table id 0x40 carries only the NIT of the actual
>    network.

After enabling DebugNit and added some more debug messages, i found out that sdtFilter->Trigger(Source) @nit.c:270 was never triggered.

With quick'n dirty hack others than currently tuned transponder started to update:


-Matti
  

Patch

--- a/nit.c     2015-10-10 13:42:19.690169490 +0300
+++ b/nit.c     2015-10-10 13:43:04.114821083 +0300
@@ -266,7 +266,7 @@ 
                             }
                         }
                      }
-                 if (ISTRANSPONDER(Frequency / 1000000, Transponder()))
+                 //if (ISTRANSPONDER(Frequency / 1000000, Transponder()))
                      sdtFilter->Trigger(Source);
                   }
                   break;