本文整理汇总了C++中CPVRChannelPtr::EncryptionName方法的典型用法代码示例。如果您正苦于以下问题:C++ CPVRChannelPtr::EncryptionName方法的具体用法?C++ CPVRChannelPtr::EncryptionName怎么用?C++ CPVRChannelPtr::EncryptionName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CPVRChannelPtr
的用法示例。
在下文中一共展示了CPVRChannelPtr::EncryptionName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CharInfoEncryption
void CPVRGUIInfo::CharInfoEncryption(std::string &strValue) const
{
CPVRChannelPtr channel;
if (g_PVRClients->GetPlayingChannel(channel))
strValue = channel->EncryptionName();
else
strValue.clear();
}
示例2: CharInfoEncryption
void CPVRGUIInfo::CharInfoEncryption(CStdString &strValue) const
{
CPVRChannelPtr channel;
if (g_PVRClients->GetPlayingChannel(channel))
strValue.Format("%s", channel->EncryptionName().c_str());
else
strValue = StringUtils::EmptyString;
}
示例3: CharInfoEncryption
void CPVRGUIInfo::CharInfoEncryption(std::string &strValue) const
{
if (m_descrambleInfo.iCaid != PVR_DESCRAMBLE_INFO_NOT_AVAILABLE)
{
// prefer dynamically updated info, if available
strValue = CPVRChannel::GetEncryptionName(m_descrambleInfo.iCaid);
return;
}
else
{
const CPVRChannelPtr channel(CServiceBroker::GetPVRManager().GetPlayingChannel());
if (channel)
{
strValue = channel->EncryptionName();
return;
}
}
strValue.clear();
}