blob: 88a7ea5143e6294d76a4d3193877fef230b69cae [file] [log] [blame]
#include "libplatform/impl.h"
#include <sys/timeb.h>
namespace mp4v2 { namespace platform { namespace time {
///////////////////////////////////////////////////////////////////////////////
milliseconds_t
getLocalTimeMilliseconds()
{
__timeb64 buf;
_ftime64( &buf );
return milliseconds_t( buf.time ) * 1000 + buf.millitm;
}
///////////////////////////////////////////////////////////////////////////////
}}} // namespace mp4v2::platform::time