summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-05-16 10:23:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2010-05-16 10:23:55 +0200
commit225f7ab6411e58340c828b111ec11742cc737fda (patch)
tree2cf52411d67e1491c72700da13514935e6843664
parent08e6d87a866c0ed737e9ce82cb5c562d4617e163 (diff)
downloadvdr-225f7ab6411e58340c828b111ec11742cc737fda.tar.gz
vdr-225f7ab6411e58340c828b111ec11742cc737fda.tar.bz2
The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio)
-rw-r--r--HISTORY3
-rw-r--r--eit.c4
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 <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)];