mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 08:21:12 +02:00
change 'long long' tom int64_t'; change variable buf to new delete;
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@291 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -117,7 +117,7 @@ int CRemoteControl::handleMsg(const neutrino_msg_t msg, neutrino_msg_data_t data
|
||||
g_Zapit->zapTo_serviceID_NOWAIT(current_channel_id );
|
||||
g_Sectionsd->setServiceChanged(current_channel_id &0xFFFFFFFFFFFFULL, false);
|
||||
|
||||
zap_completion_timeout = getcurrenttime() + 2 * (long long) 1000000;
|
||||
zap_completion_timeout = getcurrenttime() + 2 * (int64_t) 1000000;
|
||||
|
||||
return messages_return::handled;
|
||||
}
|
||||
@@ -384,7 +384,7 @@ void CRemoteControl::getNVODs()
|
||||
NVODs[i].original_network_id,
|
||||
NVODs[i].service_id,
|
||||
NVODs[i].transport_stream_id,
|
||||
NVODs[i].zeit.startzeit,
|
||||
NVODs[i].zeit.startzeit,
|
||||
NVODs[i].zeit.dauer);
|
||||
|
||||
CSubServiceListSorted::iterator e= subChannels.begin();
|
||||
@@ -629,7 +629,7 @@ void CRemoteControl::zapTo_ChannelID(const t_channel_id channel_id, const std::s
|
||||
needs_nvods = false;
|
||||
director_mode = 0;
|
||||
|
||||
unsigned long long now = getcurrenttime();
|
||||
uint64_t now = getcurrenttime();
|
||||
if ( zap_completion_timeout < now )
|
||||
{
|
||||
g_InfoViewer->chanready = 0;
|
||||
@@ -647,7 +647,7 @@ void CRemoteControl::zapTo_ChannelID(const t_channel_id channel_id, const std::s
|
||||
g_Sectionsd->setServiceChanged( current_channel_id&0xFFFFFFFFFFFFULL, false );
|
||||
abort_zapit = 0;
|
||||
|
||||
zap_completion_timeout = now + 2 * (long long) 1000000;
|
||||
zap_completion_timeout = now + 2 * (int64_t) 1000000;
|
||||
if ( current_programm_timer != 0 )
|
||||
{
|
||||
g_RCInput->killTimer( current_programm_timer );
|
||||
|
Reference in New Issue
Block a user