mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling transfer mode on full featured DVB cards for encrypted channels that have no audio pid
This commit is contained in:
parent
7271a160e4
commit
c94b4a803c
@ -3208,3 +3208,7 @@ Christian Paulick <cpaulick@xeatre.tv>
|
||||
Mariusz Bialonczyk <manio@skyboo.net>
|
||||
for reporting that acquiring the CA descriptors takes way too long on transponders
|
||||
with many PAT entries, and his help in debugging this
|
||||
|
||||
Christian Winkler <winkler_chr@yahoo.de>
|
||||
for reporting a problem with transfer mode on full featured DVB cards for encrypted
|
||||
channels that have no audio pid
|
||||
|
4
HISTORY
4
HISTORY
@ -7870,7 +7870,7 @@ Video Disk Recorder Revision History
|
||||
and also to use the correct directory with --edit (the latter reported by Marko
|
||||
Mäkelä).
|
||||
|
||||
2014-02-26: Version 2.0.6
|
||||
2014-02-27: Version 2.0.6
|
||||
|
||||
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
||||
- cFont::CreateFont() now returns a dummy font in case there are no fonts installed.
|
||||
@ -7898,3 +7898,5 @@ Video Disk Recorder Revision History
|
||||
- Fixed handling frame detection buffer length (reported by Eike Sauer).
|
||||
- Fixed keeping the current position in the Recordings menu if a recording was
|
||||
deleted in a sub folder.
|
||||
- Fixed handling transfer mode on full featured DVB cards for encrypted channels
|
||||
that have no audio pid (reported by Christian Winkler).
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* See the README file for copyright information and how to reach the author.
|
||||
*
|
||||
* $Id: dvbsdffdevice.c 2.35 2013/02/17 13:16:18 kls Exp $
|
||||
* $Id: dvbsdffdevice.c 2.35.1.1 2014/02/27 17:10:51 kls Exp $
|
||||
*/
|
||||
|
||||
#include "dvbsdffdevice.h"
|
||||
@ -400,8 +400,8 @@ bool cDvbSdFfDevice::SetChannelDevice(const cChannel *Channel, bool LiveView)
|
||||
|
||||
bool DoTune = !IsTunedToTransponder(Channel);
|
||||
|
||||
bool pidHandlesVideo = pidHandles[ptVideo].pid == vpid;
|
||||
bool pidHandlesAudio = pidHandles[ptAudio].pid == apid;
|
||||
bool pidHandlesVideo = vpid && pidHandles[ptVideo].pid == vpid;
|
||||
bool pidHandlesAudio = apid && pidHandles[ptAudio].pid == apid;
|
||||
|
||||
bool TurnOffLivePIDs = DoTune
|
||||
|| !IsPrimaryDevice()
|
||||
|
Loading…
Reference in New Issue
Block a user