summaryrefslogtreecommitdiff
path: root/epg.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-10-07 13:59:21 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-10-07 13:59:21 +0200
commit29c0f9e1e07e0ca00870e7b8e2f2c9457af80ec5 (patch)
tree9f0b029847796f7a603182226361a4bd234345e8 /epg.h
parent09c6bced8db2567c60896457e4b7e761f37d87c3 (diff)
downloadvdr-29c0f9e1e07e0ca00870e7b8e2f2c9457af80ec5.tar.gz
vdr-29c0f9e1e07e0ca00870e7b8e2f2c9457af80ec5.tar.bz2
Fixed handling language codes and descriptions of recorded audio tracks
Diffstat (limited to 'epg.h')
-rw-r--r--epg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epg.h b/epg.h
index a937ff7d..792bb136 100644
--- a/epg.h
+++ b/epg.h
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.h 1.34 2006/03/25 12:39:39 kls Exp $
+ * $Id: epg.h 1.35 2006/10/07 13:47:19 kls Exp $
*/
#ifndef __EPG_H
@@ -43,6 +43,7 @@ public:
void SetComponent(int Index, uchar Stream, uchar Type, const char *Language, const char *Description);
tComponent *Component(int Index) const { return (Index < numComponents) ? &components[Index] : NULL; }
tComponent *GetComponent(int Index, uchar Stream, uchar Type); // Gets the Index'th component of Stream and Type, skipping other components
+ // In case of an audio stream the 'type' check actually just distinguishes between "normal" and "Dolby Digital"
};
class cSchedule;