mirror of
https://github.com/ossrs/srs.git
synced 2025-02-24 23:14:19 +00:00
10 lines
No EOL
249 B
C++
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
|