summaryrefslogtreecommitdiff
path: root/epg.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-02-28 14:42:07 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-02-28 14:42:07 +0100
commit9424ab26a67d40a5fe183535f9a881216ad721f9 (patch)
tree4bb985171cf32489c3d32effdf9968f26359fe92 /epg.c
parent7506867fbe30b772c025ef8dc29cba3d4ec65b7f (diff)
downloadvdr-9424ab26a67d40a5fe183535f9a881216ad721f9.tar.gz
vdr-9424ab26a67d40a5fe183535f9a881216ad721f9.tar.bz2
The option "Setup/DVB/Use Dolby Digital" now only controls whether Dolby Digital tracks appear in the "Audio" menu1.7.13
Diffstat (limited to 'epg.c')
-rw-r--r--epg.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/epg.c b/epg.c
index 006a5de0..18d91fc7 100644
--- a/epg.c
+++ b/epg.c
@@ -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.c 2.5 2010/01/08 15:20:28 kls Exp $
+ * $Id: epg.c 2.6 2010/02/28 14:24:55 kls Exp $
*/
#include "epg.h"
@@ -443,8 +443,6 @@ void cEvent::Dump(FILE *f, const char *Prefix, bool InfoOnly) const
if (components) {
for (int i = 0; i < components->NumComponents(); i++) {
tComponent *p = components->Component(i);
- if (!Setup.UseDolbyDigital && p->stream == 0x02 && p->type == 0x05)
- continue;
fprintf(f, "%sX %s\n", Prefix, *p->ToString());
}
}