mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
zapit/src/zapit.cpp: change volume debug level
Origin commit data
------------------
Commit: b194502795
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-09-17 (Mon, 17 Sep 2012)
This commit is contained in:
@@ -465,15 +465,13 @@ bool CZapit::ZapIt(const t_channel_id channel_id, bool forupdate, bool startplay
|
||||
bool failed = false;
|
||||
CZapitChannel* newchannel;
|
||||
|
||||
DBG("[zapit] zapto channel id %llx diseqcType %d\n", channel_id, diseqcType);
|
||||
|
||||
abort_zapit = 0;
|
||||
if((newchannel = CServiceManager::getInstance()->FindChannel(channel_id, ¤t_is_nvod)) == NULL) {
|
||||
DBG("channel_id " PRINTF_CHANNEL_ID_TYPE " not found", channel_id);
|
||||
INFO("channel_id " PRINTF_CHANNEL_ID_TYPE " not found", channel_id);
|
||||
return false;
|
||||
}
|
||||
|
||||
printf("[zapit] zap to %s (%llx tp %llx)\n", newchannel->getName().c_str(), newchannel->getChannelID(), newchannel->getTransponderId());
|
||||
INFO("[zapit] zap to %s (%llx tp %llx)", newchannel->getName().c_str(), newchannel->getChannelID(), newchannel->getTransponderId());
|
||||
|
||||
CFrontend * fe = CFEManager::getInstance()->allocateFE(newchannel);
|
||||
if(fe == NULL) {
|
||||
@@ -624,7 +622,7 @@ int CZapit::GetPidVolume(t_channel_id channel_id, int pid, bool ac3)
|
||||
}
|
||||
}
|
||||
}
|
||||
INFO("############################### channel %llx pid %x map size %d percent %d", channel_id, pid, vol_map.size(), percent);
|
||||
DBG("channel %llx pid %x map size %d percent %d", channel_id, pid, vol_map.size(), percent);
|
||||
return percent;
|
||||
}
|
||||
|
||||
@@ -637,7 +635,7 @@ void CZapit::SetVolume(int vol)
|
||||
current_volume = 100;
|
||||
|
||||
int value = (current_volume * volume_percent) / 100;
|
||||
INFO("############ volume %d percent %d -> %d ############", current_volume, volume_percent, value);
|
||||
DBG("volume %d percent %d -> %d", current_volume, volume_percent, value);
|
||||
audioDecoder->setVolume(value, value);
|
||||
//volume_left = volume_right = current_volume;
|
||||
}
|
||||
|
Reference in New Issue
Block a user