summaryrefslogtreecommitdiff
path: root/receiver.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 /receiver.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 'receiver.c')
-rw-r--r--receiver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/receiver.c b/receiver.c
index f922e980..58dda78f 100644
--- a/receiver.c
+++ b/receiver.c
@@ -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;