From 225f7ab6411e58340c828b111ec11742cc737fda Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 16 May 2010 10:23:55 +0200 Subject: [PATCH] The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio) --- HISTORY | 3 ++- eit.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/HISTORY b/HISTORY index 2fe578a3..edb3d6b9 100644 --- a/HISTORY +++ b/HISTORY @@ -6411,7 +6411,7 @@ Video Disk Recorder Revision History - The new setup option "Folders in timer menu" controls whether the file names in the timer menu are shown with their full folder path. -2010-05-13: Version 1.7.15 +2010-05-16: Version 1.7.15 - Added Macedonian language texts (thanks to Dimitar Petrovski). - Updated the Estonian OSD texts (thanks to Arthur Konovalov). @@ -6455,3 +6455,4 @@ Video Disk Recorder Revision History by Rolf Ahrenberg). - Implemented handling of HD resolution subtitles according to v1.3.1 of ETSI EN 300 743, chapter 7.2.1 (thanks to Rolf Ahrenberg). +- The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio). diff --git a/eit.c b/eit.c index 37a4a4be..ed16163f 100644 --- a/eit.c +++ b/eit.c @@ -8,7 +8,7 @@ * Robert Schneider and Rolf Hakenes . * Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg . * - * $Id: eit.c 2.11 2010/01/08 15:17:09 kls Exp $ + * $Id: eit.c 2.12 2010/05/14 14:08:35 kls Exp $ */ #include "eit.h" @@ -257,7 +257,7 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo SI::ComponentDescriptor *cd = (SI::ComponentDescriptor *)d; uchar Stream = cd->getStreamContent(); uchar Type = cd->getComponentType(); - if (1 <= Stream && Stream <= 4 && Type != 0) { // 1=video, 2=audio, 3=subtitles, 4=AC3 + if (1 <= Stream && Stream <= 6 && Type != 0) { // 1=MPEG2-video, 2=MPEG1-audio, 3=subtitles, 4=AC3-audio, 5=H.264-video, 6=HEAAC-audio if (!Components) Components = new cComponents; char buffer[Utf8BufSize(256)];