Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: content/renderer/media/rtc_video_encoder.cc

Issue 1888003002: Drop dependency on webrtc's tick_utils.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/rtc_video_encoder.cc
diff --git a/content/renderer/media/rtc_video_encoder.cc b/content/renderer/media/rtc_video_encoder.cc
index e01a706c25102b9d4f934673a30666172103bb08..ae67c980bc3c3dc8227633703d32bfee5f9f7444 100644
--- a/content/renderer/media/rtc_video_encoder.cc
+++ b/content/renderer/media/rtc_video_encoder.cc
@@ -25,7 +25,7 @@
#include "media/renderers/gpu_video_accelerator_factories.h"
#include "media/video/video_encode_accelerator.h"
#include "third_party/libyuv/include/libyuv.h"
-#include "third_party/webrtc/system_wrappers/include/tick_util.h"
+#include "third_party/webrtc/base/timeutils.h"
namespace content {
@@ -422,7 +422,7 @@ void RTCVideoEncoder::Impl::BitstreamBufferReady(int32_t bitstream_buffer_id,
// Use webrtc timestamps to ensure correct RTP sender behavior.
// TODO(hshi): obtain timestamp from the capturer, see crbug.com/350106.
- const int64_t capture_time_us = webrtc::TickTime::MicrosecondTimestamp();
+ const int64_t capture_time_us = rtc::TimeMicros();
perkj_webrtc 2016/04/14 13:46:23 IS the todo above easy to fix? This should come fr
nisse-webrtc 2016/04/19 11:12:41 No idea really, but I don't think this cl should d
// Derive the capture time (in ms) and RTP timestamp (in 90KHz ticks).
const int64_t capture_time_ms = capture_time_us / 1000;

Powered by Google App Engine
This is Rietveld 408576698