Use int64_t for milliseconds more often, primarily for TimeUntilNextProcess.
This fixes a variety of MSVC warnings about value truncations when implicitly storing the 64-bit values we get back from e.g. TimeTicks in 32-bit objects, and removes the need for a number of explicit casts. This also moves a number of constants so they're declared right where they're used, which is easier to read and maintain, and makes some of them of integral type rather than using the "enum hack". BUG=chromium:81439 TEST=none R=tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/33649004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7905 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -480,7 +480,7 @@ int32_t AudioDeviceModuleImpl::ChangeUniqueId(const int32_t id)
|
||||
// to call Process().
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
int32_t AudioDeviceModuleImpl::TimeUntilNextProcess()
|
||||
int64_t AudioDeviceModuleImpl::TimeUntilNextProcess()
|
||||
{
|
||||
uint32_t now = AudioDeviceUtility::GetTimeInMS();
|
||||
int32_t deltaProcess = kAdmMaxIdleTimeProcess - (now - _lastProcessTime);
|
||||
|
||||
Reference in New Issue
Block a user