blob: 9c2cc7af59fbadb1aedbf9e21c2fdc66e4b37042 [file] [log] [blame]
nisse191b3592016-06-22 08:36:53 -07001/*
2 * Copyright (c) 2016 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_BASE_TIMESTAMPALIGNER_H_
12#define WEBRTC_BASE_TIMESTAMPALIGNER_H_
13
pbosc7c26a02017-01-02 08:42:32 -080014#include <stdint.h>
15
nisse191b3592016-06-22 08:36:53 -070016#include "webrtc/base/constructormagic.h"
nisse191b3592016-06-22 08:36:53 -070017
18namespace rtc {
19
nissea0758482016-09-14 00:37:00 -070020// The TimestampAligner class helps translating camera timestamps into
21// the same timescale as is used by rtc::TimeMicros(). Some cameras
22// have built in timestamping which is more accurate than reading the
23// system clock, but using a different epoch and unknown clock drift.
24// Frame timestamps in webrtc should use rtc::TimeMicros (system monotonic
25// time), and this class provides a filter which lets us use the
26// rtc::TimeMicros timescale, and at the same time take advantage of
27// higher accuracy of the camera clock.
28
Magnus Jedvert0bade0d2016-09-01 15:15:00 +020029// This class is not thread safe, so all calls to it must be synchronized
30// externally.
nisse191b3592016-06-22 08:36:53 -070031class TimestampAligner {
32 public:
33 TimestampAligner();
34 ~TimestampAligner();
35
36 public:
nissea0758482016-09-14 00:37:00 -070037 // Translates camera timestamps to the same timescale as is used by
38 // rtc::TimeMicros(). |camera_time_us| is assumed to be accurate, but
39 // with an unknown epoch and clock drift. |system_time_us| is
40 // time according to rtc::TimeMicros(), preferably read as soon as
41 // possible when the frame is captured. It may have poor accuracy
42 // due to poor resolution or scheduling delays. Returns the
43 // translated timestamp.
44 int64_t TranslateTimestamp(int64_t camera_time_us, int64_t system_time_us);
45
46 protected:
nisse191b3592016-06-22 08:36:53 -070047 // Update the estimated offset between camera time and system monotonic time.
48 int64_t UpdateOffset(int64_t camera_time_us, int64_t system_time_us);
49
nissea0758482016-09-14 00:37:00 -070050 // Clip timestamp, return value is always
51 // <= |system_time_us|, and
52 // >= min(|prev_translated_time_us_| + |kMinFrameIntervalUs|,
53 // |system_time_us|).
nisse191b3592016-06-22 08:36:53 -070054 int64_t ClipTimestamp(int64_t filtered_time_us, int64_t system_time_us);
55
56 private:
nisse191b3592016-06-22 08:36:53 -070057 // State for the timestamp translation.
58 int frames_seen_;
59 // Estimated offset between camera time and system monotonic time.
60 int64_t offset_us_;
61
nissea0758482016-09-14 00:37:00 -070062 // State for the ClipTimestamp method, applied after the filter.
63 // A large negative camera clock drift tends to push translated
64 // timestamps into the future. |clip_bias_us_| is subtracted from the
65 // translated timestamps, to get them back from the future.
nisse191b3592016-06-22 08:36:53 -070066 int64_t clip_bias_us_;
nissea0758482016-09-14 00:37:00 -070067 // Used to ensure that translated timestamps are monotonous.
68 int64_t prev_translated_time_us_;
nisse191b3592016-06-22 08:36:53 -070069 RTC_DISALLOW_COPY_AND_ASSIGN(TimestampAligner);
70};
71
72} // namespace rtc
73
74#endif // WEBRTC_BASE_TIMESTAMPALIGNER_H_