diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-08-20 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-08-20 18:00:00 +0200 |
commit | 0e310c57a4af9e3b3bc87816a60b01790e2c6b89 (patch) | |
tree | b2a129d6049c49f836fb180f4fb6569f3ae5f421 | |
parent | f5ad8fc5d7679433faf6a7465b5cfd54a7c10f8b (diff) | |
download | vdr-patch-lnbsharing-0e310c57a4af9e3b3bc87816a60b01790e2c6b89.tar.gz vdr-patch-lnbsharing-0e310c57a4af9e3b3bc87816a60b01790e2c6b89.tar.bz2 |
Version 1.4.1-5vdr-1.4.1-5
- Replaced the "quick workaround for additional live audio PIDs" in
cDvbDevice::SetChannelDevice() with an actual solution in
cDvbDevice::SetAudioTrackDevice() in order to prevent sticky PIDs in CAMs,
which caused long switching times or completely blank screens when switching
between encrypted channels on the same transponder (reported by Tomas Berglund).
- Adapted cThread::ThreadId() to recent kernels (thanks to Ville Skyttä).
- Added --remove-destination to the 'cp' command for binaries in the Makefile to
avoid a crash in case a new version is installed on a running system (suggested
by Petri Hintukainen).
- Fixed handling "Ca Info" in case the CAM sends this again if the smart card is
replaced with a different one.
-rw-r--r-- | CONTRIBUTORS | 7 | ||||
-rw-r--r-- | HISTORY | 14 | ||||
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | ci.c | 12 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | dvbdevice.c | 13 | ||||
-rw-r--r-- | thread.c | 6 |
7 files changed, 42 insertions, 20 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index f19b461..ea619ca 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1626,6 +1626,7 @@ Ville Skyttä <ville.skytta@iki.fi> thread.c caused a compiler warning with g++ 4.1.1 for fixing converting the port number in the "connect from..." log message of SVDRP for reporting that there are places where ntohs() is assigned to different types + for adapting cThread::ThreadId() to recent kernels Steffen Beyer <cpunk@reactor.de> for fixing setting the colored button help after deleting a recording in case the next @@ -1808,6 +1809,8 @@ Gavin Hamill <gdh@acentral.co.uk> Petri Hintukainen <Petri.Hintukainen@hut.fi> for suggesting to disable the use of "fadvise" in cUnbufferedFile because there have been several reports that it causes more problems than it solves + for suggesting to add --remove-destination to the 'cp' command for binaries in + the Makefile to avoid a crash in case a new version is installed on a running system Marcel Schaeben <mts280@gmx.de> for his "Easy Input" patch @@ -1980,3 +1983,7 @@ Frank Schmirler <vdr@schmirler.de> Jörn Reder <joern@zyn.de> for reporting that a recording may unnecessarily block a device with a CAM, while it could record on the primary device as well + +Tomas Berglund <tomber@telia.com> + for reporting a problem with sticky PIDs in CAMs when switching between encrypted + channels on the same transponder @@ -4874,3 +4874,17 @@ Video Disk Recorder Revision History Oliver Endriss). - Added a log error message to cPlugin::ConfigDirectory() in case a plugin calls it from a separate thread (reported by Udo Richter). + +2006-08-20: Version 1.4.1-5 + +- Replaced the "quick workaround for additional live audio PIDs" in + cDvbDevice::SetChannelDevice() with an actual solution in + cDvbDevice::SetAudioTrackDevice() in order to prevent sticky PIDs in CAMs, + which caused long switching times or completely blank screens when switching + between encrypted channels on the same transponder (reported by Tomas Berglund). +- Adapted cThread::ThreadId() to recent kernels (thanks to Ville Skyttä). +- Added --remove-destination to the 'cp' command for binaries in the Makefile to + avoid a crash in case a new version is installed on a running system (suggested + by Petri Hintukainen). +- Fixed handling "Ca Info" in case the CAM sends this again if the smart card is + replaced with a different one. @@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 1.94 2006/06/02 14:45:33 kls Exp $ +# $Id: Makefile 1.95 2006/08/20 10:44:22 kls Exp $ .DELETE_ON_ERROR: @@ -201,7 +201,7 @@ install: install-bin install-conf install-doc install-plugins install-bin: vdr @mkdir -p $(BINDIR) - @cp vdr runvdr $(BINDIR) + @cp --remove-destination vdr runvdr $(BINDIR) # Configuration files: @@ -223,7 +223,7 @@ install-doc: install-plugins: plugins @mkdir -p $(PLUGINLIBDIR) - @cp $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(PLUGINLIBDIR) + @cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(PLUGINLIBDIR) # Source documentation: @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: ci.c 1.44 2006/08/12 10:14:27 kls Exp $ + * $Id: ci.c 1.45 2006/08/20 11:38:33 kls Exp $ */ #include "ci.h" @@ -985,6 +985,7 @@ bool cCiConditionalAccessSupport::Process(int Length, const uint8_t *Data) switch (Tag) { case AOT_CA_INFO: { dbgprotocol("%d: <== Ca Info", SessionId()); + numCaSystemIds = 0; int l = 0; const uint8_t *d = GetData(Data, l); while (l > 1) { @@ -992,13 +993,14 @@ bool cCiConditionalAccessSupport::Process(int Length, const uint8_t *Data) dbgprotocol(" %04X", id); d += 2; l -= 2; - if (numCaSystemIds < MAXCASYSTEMIDS) { + if (numCaSystemIds < MAXCASYSTEMIDS) caSystemIds[numCaSystemIds++] = id; - caSystemIds[numCaSystemIds] = 0; - } - else + else { esyslog("ERROR: too many CA system IDs!"); + break; + } } + caSystemIds[numCaSystemIds] = 0; dbgprotocol("\n"); } state = 2; // got ca info @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.265 2006/08/12 09:10:11 kls Exp $ + * $Id: config.h 1.266 2006/08/14 09:49:22 kls Exp $ */ #ifndef __CONFIG_H @@ -21,7 +21,7 @@ // VDR's own version number: -#define VDRVERSION "1.4.1-4" +#define VDRVERSION "1.4.1-5" #define VDRVERSNUM 10401 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: diff --git a/dvbdevice.c b/dvbdevice.c index 9ae8dfa..fb8ec93 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.159 2006/06/11 09:03:55 kls Exp $ + * $Id: dvbdevice.c 1.160 2006/08/14 09:38:32 kls Exp $ */ #include "dvbdevice.h" @@ -853,11 +853,6 @@ bool cDvbDevice::SetChannelDevice(const cChannel *Channel, bool LiveView) esyslog("ERROR: failed to set PIDs for channel %d on device %d", Channel->Number(), CardIndex() + 1); return false; } - //XXX quick workaround for additional live audio PIDs: - if (ciHandler) { - ciHandler->SetPid(Channel->Apid(1), true); - ciHandler->SetPid(Channel->Dpid(0), true); - } if (IsPrimaryDevice()) AddPid(Channel->Tpid(), ptTeletext); CHECK(ioctl(fd_audio, AUDIO_SET_MUTE, true)); // actually one would expect 'false' here, but according to Marco Schlüßler <marco@lordzodiac.de> this works @@ -927,8 +922,14 @@ void cDvbDevice::SetAudioTrackDevice(eTrackType Type) if (IS_AUDIO_TRACK(Type) || (IS_DOLBY_TRACK(Type) && SetAudioBypass(true))) { if (pidHandles[ptAudio].pid && pidHandles[ptAudio].pid != TrackId->id) { DetachAll(pidHandles[ptAudio].pid); + if (ciHandler) + ciHandler->SetPid(pidHandles[ptAudio].pid, false); pidHandles[ptAudio].pid = TrackId->id; SetPid(&pidHandles[ptAudio], ptAudio, true); + if (ciHandler) { + ciHandler->SetPid(pidHandles[ptAudio].pid, true); + ciHandler->StartDecrypting(); + } } } else if (IS_DOLBY_TRACK(Type)) { @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: thread.c 1.56 2006/06/24 10:10:58 kls Exp $ + * $Id: thread.c 1.57 2006/08/20 10:20:44 kls Exp $ */ #include "thread.h" @@ -316,11 +316,9 @@ bool cThread::EmergencyExit(bool Request) return emergencyExitRequested = true; // yes, it's an assignment, not a comparison! } -_syscall0(pid_t, gettid) - tThreadId cThread::ThreadId(void) { - return gettid(); + return syscall(__NR_gettid); } void cThread::SetMainThreadId(void) |