mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
daemonc/remotecontrol.cpp: comment debug
This commit is contained in:
@@ -200,10 +200,11 @@ int CRemoteControl::handleMsg(const neutrino_msg_t msg, neutrino_msg_data_t data
|
|||||||
if ( msg == NeutrinoMessages::EVT_CURRENTEPG ) {
|
if ( msg == NeutrinoMessages::EVT_CURRENTEPG ) {
|
||||||
CSectionsdClient::CurrentNextInfo* info_CN = (CSectionsdClient::CurrentNextInfo*) data;
|
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);
|
#if 0
|
||||||
printf("[neutrino] EVT_CURRENTEPG comparing: uniqueKey %llx chid %llx subid %llx flags %x\n",
|
printf("[neutrino] EVT_CURRENTEPG: uniqueKey %llx chid %llx subid %llx flags %x\n",
|
||||||
info_CN->current_uniqueKey >> 16, current_channel_id & 0xFFFFFFFFFFFFULL,
|
info_CN->current_uniqueKey >> 16, current_channel_id & 0xFFFFFFFFFFFFULL,
|
||||||
current_sub_channel_id&0xFFFFFFFFFFFFULL, info_CN->flags);
|
current_sub_channel_id&0xFFFFFFFFFFFFULL, info_CN->flags);
|
||||||
|
#endif
|
||||||
t_channel_id chid = (info_CN->current_uniqueKey >> 16);
|
t_channel_id chid = (info_CN->current_uniqueKey >> 16);
|
||||||
if(chid != (current_channel_id&0xFFFFFFFFFFFFULL) && chid != (current_sub_channel_id&0xFFFFFFFFFFFFULL))
|
if(chid != (current_channel_id&0xFFFFFFFFFFFFULL) && chid != (current_sub_channel_id&0xFFFFFFFFFFFFULL))
|
||||||
return messages_return::handled;
|
return messages_return::handled;
|
||||||
|
Reference in New Issue
Block a user