diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-28 14:42:07 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-28 14:42:07 +0100 |
commit | 9424ab26a67d40a5fe183535f9a881216ad721f9 (patch) | |
tree | 4bb985171cf32489c3d32effdf9968f26359fe92 | |
parent | 7506867fbe30b772c025ef8dc29cba3d4ec65b7f (diff) | |
download | vdr-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
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | MANUAL | 8 | ||||
-rw-r--r-- | epg.c | 4 | ||||
-rw-r--r-- | receiver.c | 4 | ||||
-rw-r--r-- | remux.c | 4 |
5 files changed, 11 insertions, 12 deletions
@@ -6380,3 +6380,6 @@ Video Disk Recorder Revision History This obsoletes the PLUGINPARAM patch. - Updated the Lithuanian OSD texts (thanks to Valdemaras Pipiras). - cSafeFile::Close() now flushes the file (suggested by Stephan Austermühle). +- The option "Setup/DVB/Use Dolby Digital" now only controls whether Dolby Digital + tracks appear in the "Audio" menu. Dolby Digital is always recorded. + This obsoletes the DOLBYINREC patch. @@ -675,11 +675,9 @@ Version 1.6 4:3. Use Dolby Digital = yes - Turns recording of the Dolby Digital audio channels on - or off. This may be useful if you don't have the equipment - to replay Dolby Digital audio and want to save disk space. - If turned off, Dolby Digital tracks also don't appear in the - "Audio" menu. + Controls whether Dolby Digital tracks appear in the "Audio" + menu. This is useful if you don't have the equipment to + replay Dolby Digital audio. Update channels = 5 Controls the automatic channel update function. '0' means no update, '1' will only update channel names, '2' will @@ -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()); } } @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.c 2.2 2010/01/30 10:25:38 kls Exp $ + * $Id: receiver.c 2.3 2010/02/28 14:25:32 kls Exp $ */ #include "receiver.h" @@ -81,7 +81,7 @@ bool cReceiver::SetPids(const cChannel *Channel) return AddPid(Channel->Vpid()) && (Channel->Ppid() == Channel->Vpid() || AddPid(Channel->Ppid())) && AddPids(Channel->Apids()) && - (!Setup.UseDolbyDigital || AddPids(Channel->Dpids())) && + AddPids(Channel->Dpids()) && AddPids(Channel->Spids()); } return true; @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remux.c 2.41 2010/01/30 10:43:12 kls Exp $ + * $Id: remux.c 2.42 2010/02/28 14:42:07 kls Exp $ */ #include "remux.h" @@ -601,7 +601,7 @@ void cPatPmtParser::ParsePmt(const uchar *Data, int Length) dpids[NumDpids] = dpid; dtypes[NumDpids] = stream.getStreamType(); strn0cpy(dlangs[NumDpids], lang, sizeof(dlangs[NumDpids])); - if (updatePrimaryDevice) + if (updatePrimaryDevice && Setup.UseDolbyDigital) cDevice::PrimaryDevice()->SetAvailableTrack(ttDolby, NumDpids, dpid, lang); NumDpids++; dpids[NumDpids]= 0; |