diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-26 11:11:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-26 11:11:42 +0200 |
commit | ffb615332619822f891c8c378e4ceeb6d58529bc (patch) | |
tree | 5d13f793a196a89d8ad1af57abdc6df95a4e646c | |
parent | 2f89413ca4e41b533151741efa9f4bcf1f8afd42 (diff) | |
download | vdr-ffb615332619822f891c8c378e4ceeb6d58529bc.tar.gz vdr-ffb615332619822f891c8c378e4ceeb6d58529bc.tar.bz2 |
Fixed switching audio tracks in 'Transfer Mode' on the primary DVB device (cont'd)
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 99123644..cbd20e5a 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.28 2002/10/26 10:53:20 kls Exp $ + * $Id: dvbdevice.c 1.29 2002/10/26 11:11:42 kls Exp $ */ #include "dvbdevice.h" @@ -772,7 +772,7 @@ int cDvbDevice::NumAudioTracksDevice(void) const int n = 0; if (aPid1) n++; - if (aPid2 && aPid1 != aPid2) + if (!Ca() && aPid2 && aPid1 != aPid2) // a Ca recording session blocks switching live audio tracks n++; return n; } |