aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorKarl Wiberg <kwiberg@webrtc.org>2018-03-22 15:29:03 +0100
committerCommit Bot <commit-bot@chromium.org>2018-03-22 14:36:44 +0000
commit76b7f51842e3c1ea03605107a345ba8dc4b5cea6 (patch)
tree2a530045e88a06528dc5e542f90edbdf92168625 /modules
parent7682c6e2cb7778e157cb54a43baf2e785f02c275 (diff)
downloadwebrtc-76b7f51842e3c1ea03605107a345ba8dc4b5cea6.tar.gz
Move timestamp_extrapolator.h to rtc_base/time/
This moves it from an API directory (system_wrappers/include/) to a non-API directory, which is exactly what we want for utilities like this. BUG=webrtc:8445 Change-Id: I51dfe8879c28c91bd1c667fc47b4892373671e0f Reviewed-on: https://webrtc-review.googlesource.com/21540 Commit-Queue: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22569}
Diffstat (limited to 'modules')
-rw-r--r--modules/rtp_rtcp/BUILD.gn1
-rw-r--r--modules/rtp_rtcp/source/remote_ntp_time_estimator.cc1
-rw-r--r--modules/video_coding/BUILD.gn1
-rw-r--r--modules/video_coding/timing.cc2
4 files changed, 4 insertions, 1 deletions
diff --git a/modules/rtp_rtcp/BUILD.gn b/modules/rtp_rtcp/BUILD.gn
index 4d8ca72d91..e410fdad23 100644
--- a/modules/rtp_rtcp/BUILD.gn
+++ b/modules/rtp_rtcp/BUILD.gn
@@ -210,6 +210,7 @@ rtc_static_library("rtp_rtcp") {
"../../rtc_base:sequenced_task_checker",
"../../rtc_base:stringutils",
"../../rtc_base/system:fallthrough",
+ "../../rtc_base/time:timestamp_extrapolator",
"../../system_wrappers",
"../../system_wrappers:field_trial_api",
"../../system_wrappers:metrics_api",
diff --git a/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc b/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc
index e3a4ed91e5..fc867a491a 100644
--- a/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc
+++ b/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc
@@ -11,6 +11,7 @@
#include "modules/rtp_rtcp/include/remote_ntp_time_estimator.h"
#include "rtc_base/logging.h"
+#include "rtc_base/time/timestamp_extrapolator.h"
#include "system_wrappers/include/clock.h"
namespace webrtc {
diff --git a/modules/video_coding/BUILD.gn b/modules/video_coding/BUILD.gn
index 0a90141117..ad2d35987b 100644
--- a/modules/video_coding/BUILD.gn
+++ b/modules/video_coding/BUILD.gn
@@ -153,6 +153,7 @@ rtc_static_library("video_coding") {
"../../rtc_base:sequenced_task_checker",
"../../rtc_base/experiments:alr_experiment",
"../../rtc_base/system:fallthrough",
+ "../../rtc_base/time:timestamp_extrapolator",
"../../system_wrappers",
"../../system_wrappers:field_trial_api",
"../../system_wrappers:metrics_api",
diff --git a/modules/video_coding/timing.cc b/modules/video_coding/timing.cc
index 459345a2ce..2ad61524e3 100644
--- a/modules/video_coding/timing.cc
+++ b/modules/video_coding/timing.cc
@@ -12,9 +12,9 @@
#include <algorithm>
+#include "rtc_base/time/timestamp_extrapolator.h"
#include "system_wrappers/include/clock.h"
#include "system_wrappers/include/metrics.h"
-#include "system_wrappers/include/timestamp_extrapolator.h"
namespace webrtc {