diff options
author | Jochen Dolze <vdr@dolze.de> | 2009-02-13 22:42:44 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2009-02-13 22:42:44 +0100 |
commit | 8112230ac0a66766d233253b6260a1a06229aff6 (patch) | |
tree | 8532f93f97a7b726ebb38b2d02fc3e90b9a1b4e9 /process.cpp | |
parent | 0a828794745069f0b978ab001b92b9ef31f5195f (diff) | |
download | vdr-plugin-infosatepg-8112230ac0a66766d233253b6260a1a06229aff6.tar.gz vdr-plugin-infosatepg-8112230ac0a66766d233253b6260a1a06229aff6.tar.bz2 |
Added patch from Keine_Ahnung
Added translations for content descriptions (thanks to Keine_Ahnung)
Diffstat (limited to 'process.cpp')
-rw-r--r-- | process.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/process.cpp b/process.cpp index 96f0439..14bb96c 100644 --- a/process.cpp +++ b/process.cpp @@ -961,6 +961,19 @@ bool cProcessInfosatepg::CheckAnnouncement(char *s,cInfosatevent *iEvent) { // just ignore this } + + else if ((strlen(s)>=16) && (!strncmp(s,"kabel eins Trick",16))) + { + // just ignore this + } + else if ((strlen(s)>=5) && (!strncmp(s,"JETIX",5))) + { + // just ignore this + } + else if ((strlen(s)>=11) && (!strncmp(s,"DISNEY TIME",11))) + { + // just ignore this + } else ret=false; return ret; } |