mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Problem when switching between encrypted channels still exists if CA id
is set to FTA or streamdev device. Disabled transponder check.
This commit is contained in:
parent
ca043780a7
commit
30aa3b0610
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: device.c,v 1.20 2008/10/02 06:56:36 schmirl Exp $
|
* $Id: device.c,v 1.21 2009/01/14 07:35:51 schmirl Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "client/device.h"
|
#include "client/device.h"
|
||||||
@ -107,10 +107,12 @@ bool cStreamdevDevice::SetChannelDevice(const cChannel *Channel,
|
|||||||
if (LiveView)
|
if (LiveView)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
#if 0
|
||||||
if (ClientSocket.DataSocket(siLive) != NULL
|
if (ClientSocket.DataSocket(siLive) != NULL
|
||||||
&& TRANSPONDER(Channel, m_Channel)
|
&& TRANSPONDER(Channel, m_Channel)
|
||||||
&& Channel->Ca() < CA_ENCRYPTED_MIN)
|
&& Channel->Ca() < CA_ENCRYPTED_MIN)
|
||||||
return true;
|
return true;
|
||||||
|
#endif
|
||||||
|
|
||||||
DetachAllReceivers();
|
DetachAllReceivers();
|
||||||
m_Channel = Channel;
|
m_Channel = Channel;
|
||||||
|
Loading…
Reference in New Issue
Block a user