1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-24 23:14:19 +00:00
srs/trunk/src/srt/time_help.h
2020-01-14 21:10:33 +08:00

10 lines
No EOL
249 B
C++

#ifndef TIME_HELP_H
#define TIME_HELP_H
#include <chrono>
inline long long now_ms() {
return std::chrono::duration_cast<std::chrono::milliseconds>(
std::chrono::system_clock::now().time_since_epoch()).count();
}
#endif //TIME_HELP_H