daemonc/remotecontrol.cpp: comment debug

Origin commit data
------------------
Branch: ni/coolstream
Commit: ac97bd8e87
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-06 (Tue, 06 Mar 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-03-06 18:27:20 +04:00
parent 4f47e8cc0d
commit 46d873a484

View File

@@ -200,10 +200,11 @@ int CRemoteControl::handleMsg(const neutrino_msg_t msg, neutrino_msg_data_t data
if ( msg == NeutrinoMessages::EVT_CURRENTEPG ) {
CSectionsdClient::CurrentNextInfo* info_CN = (CSectionsdClient::CurrentNextInfo*) data;
//printf("[neutrino] got EVT_CURRENTEPG, uniqueKey %llx chid %llx flags %x\n", info_CN->current_uniqueKey, current_channel_id, info_CN->flags);
printf("[neutrino] EVT_CURRENTEPG comparing: uniqueKey %llx chid %llx subid %llx flags %x\n",
#if 0
printf("[neutrino] EVT_CURRENTEPG: uniqueKey %llx chid %llx subid %llx flags %x\n",
info_CN->current_uniqueKey >> 16, current_channel_id & 0xFFFFFFFFFFFFULL,
current_sub_channel_id&0xFFFFFFFFFFFFULL, info_CN->flags);
#endif
t_channel_id chid = (info_CN->current_uniqueKey >> 16);
if(chid != (current_channel_id&0xFFFFFFFFFFFFULL) && chid != (current_sub_channel_id&0xFFFFFFFFFFFFULL))
return messages_return::handled;