aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/ssrc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/ssrc.cc')
-rw-r--r--cast/streaming/ssrc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cast/streaming/ssrc.cc b/cast/streaming/ssrc.cc
index d3f24469..cb18a800 100644
--- a/cast/streaming/ssrc.cc
+++ b/cast/streaming/ssrc.cc
@@ -28,7 +28,7 @@ Ssrc GenerateSsrc(bool higher_priority) {
// it is light-weight and does not need to produce unguessable (nor
// crypto-secure) values.
static std::minstd_rand generator(static_cast<std::minstd_rand::result_type>(
- openscreen::platform::Clock::now().time_since_epoch().count()));
+ openscreen::Clock::now().time_since_epoch().count()));
std::uniform_int_distribution<int> distribution(
higher_priority ? kHigherPriorityMin : kNormalPriorityMin,