diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-05-16 10:23:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-05-16 10:23:55 +0200 |
commit | 225f7ab6411e58340c828b111ec11742cc737fda (patch) | |
tree | 2cf52411d67e1491c72700da13514935e6843664 /eit.c | |
parent | 08e6d87a866c0ed737e9ce82cb5c562d4617e163 (diff) | |
download | vdr-225f7ab6411e58340c828b111ec11742cc737fda.tar.gz vdr-225f7ab6411e58340c828b111ec11742cc737fda.tar.bz2 |
The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio)
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>. * - * $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)]; |