Index: webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc |
diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc |
index b34288632cd50e82b4b1a4e09dd46b247ec4785f..5486eba6a6f7f415f5cc42f4400236494ac4b81b 100644 |
--- a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc |
+++ b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc |
@@ -20,6 +20,7 @@ |
#include "libyuv/convert.h" // NOLINT |
#include "webrtc/base/checks.h" |
+#include "webrtc/base/timeutils.h" |
#include "webrtc/base/trace_event.h" |
#include "webrtc/common_types.h" |
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
@@ -29,7 +30,6 @@ |
#include "webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h" |
#include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" |
#include "webrtc/system_wrappers/include/clock.h" |
-#include "webrtc/system_wrappers/include/tick_util.h" |
namespace webrtc { |
namespace { |
@@ -166,7 +166,7 @@ VP8EncoderImpl::VP8EncoderImpl() |
tl1_frame_dropper_(kTl1MaxTimeToDropFrames), |
key_frame_request_(kMaxSimulcastStreams, false), |
quality_scaler_enabled_(false) { |
- uint32_t seed = static_cast<uint32_t>(TickTime::MillisecondTimestamp()); |
+ uint32_t seed = rtc::Time32(); |
stefan-webrtc
2016/04/19 09:19:12
Not a big fan of the function name Time32 as it do
nisse-webrtc
2016/04/19 12:19:25
Do you have any concrete suggestion on what to do
stefan-webrtc
2016/04/19 12:40:47
Maybe a templated method which returns time in mil
nisse-webrtc
2016/04/19 13:48:51
No templates just for this, please. Casting the re
|
srand(seed); |
picture_id_.reserve(kMaxSimulcastStreams); |