blob: e3c82f75adf4afe1ba05b3856991c008f3adff73 [file] [log] [blame]
#include "libplatform/impl.h"
#include <sys/time.h>
namespace mp4v2 { namespace platform { namespace time {
///////////////////////////////////////////////////////////////////////////////
milliseconds_t
getLocalTimeMilliseconds()
{
timeval buf;
if( gettimeofday( &buf, 0 ))
memset( &buf, 0, sizeof( buf ));
return milliseconds_t( buf.tv_sec ) * 1000 + buf.tv_usec / 1000;
}
///////////////////////////////////////////////////////////////////////////////
}}} // namespace mp4v2::platform::time