summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-01-06 14:56:08 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-01-06 14:56:08 +0100
commit05bd062f792b1c4d1b7b4222c84d239584a1dc60 (patch)
tree04805034fa8e45bd348cb4c928d5aaa736b08960 /dvbdevice.c
parent723537ccc8959a5576db9b7c7c6e510e08f699c4 (diff)
downloadvdr-05bd062f792b1c4d1b7b4222c84d239584a1dc60.tar.gz
vdr-05bd062f792b1c4d1b7b4222c84d239584a1dc60.tar.bz2
Fixed handling preferred audio language when switching via Channels menu to the same channel
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 53d1e8b0..e2532a03 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 1.110 2005/01/06 13:32:41 kls Exp $
+ * $Id: dvbdevice.c 1.111 2005/01/06 14:48:45 kls Exp $
*/
#include "dvbdevice.h"
@@ -801,7 +801,7 @@ bool cDvbDevice::SetChannelDevice(const cChannel *Channel, bool LiveView)
// PID settings:
if (TurnOnLivePIDs) {
- if (!(AddPid(Channel->Ppid(), ptPcr) && AddPid(Channel->Vpid(), ptVideo) && AddPid(Channel->Apid(0), ptAudio))) {//XXX+ dolby dpid1!!! (if audio plugins are attached)
+ if (!(AddPid(Channel->Ppid(), ptPcr) && AddPid(Channel->Vpid(), ptVideo) && AddPid(Channel->Apid(0), ptAudio))) {
esyslog("ERROR: failed to set PIDs for channel %d on device %d", Channel->Number(), CardIndex() + 1);
return false;
}