webrtc/rtc_base/timestamp_aligner.h
Evan Shrubsole 0bdeb7818c Remove re-exported symbols from rtc and cricket namespaces
Change generated by running

git grep -E -l 'namespace (rtc|cricket)\b \{' > /tmp/export_files.txt
xargs -a /tmp/export_files.txt -L 1 \
  ex -s -c "/#ifdef WEBRTC_ALLOW_DEPRECATED_NAMESPACES/norm d]#" -c "x"
xargs -a /tmp/export_files.txt sed -i \
  -e '/\/\/ Re-export symbols from/d' \
  -e '/\/\/ TODO(bugs.webrtc.org\/4222596): Remove once/d' \
  -e '/\/\/ Backwards compatibe aliases/d' \
  -e '/\/\/ TODO: https:\/\/issues.webrtc.org\/42225969/d'



Bug: webrtc:4222596
Change-Id: Ie62e14b53466da41a2c6421305973e0974fe7e0c
No-IWYU: LSC
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/396080
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Evan Shrubsole <eshr@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#45057}
2025-07-01 03:58:20 -07:00

95 lines
3.8 KiB
C++

/*
* Copyright (c) 2016 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef RTC_BASE_TIMESTAMP_ALIGNER_H_
#define RTC_BASE_TIMESTAMP_ALIGNER_H_
#include <stdint.h>
#include "rtc_base/system/rtc_export.h"
#include "rtc_base/time_utils.h"
namespace webrtc {
// The TimestampAligner class helps translating timestamps of a capture system
// into the same timescale as is used by TimeMicros(). Some capture
// systems provide timestamps, which comes from the capturing hardware (camera
// or sound card) or stamped close to the capturing hardware. Such timestamps
// are more accurate (less jittery) than reading the system clock, but may have
// a different epoch and unknown clock drift. Frame timestamps in webrtc should
// use TimeMicros (system monotonic time), and this class provides a
// filter which lets us use the TimeMicros timescale, and at the same
// time take advantage of higher accuracy of the capturer's clock.
// This class is not thread safe, so all calls to it must be synchronized
// externally.
class RTC_EXPORT TimestampAligner {
public:
TimestampAligner();
~TimestampAligner();
TimestampAligner(const TimestampAligner&) = delete;
TimestampAligner& operator=(const TimestampAligner&) = delete;
public:
// Minimum difference of two timestamps generated by
// "TranslateTimestamp(int64_t capturer_time_us, int64_t system_time_us)"
// This avoids the caller from getting two timestamps with the same
// millisecond.
static constexpr int64_t kMinFrameIntervalUs = kNumMicrosecsPerMillisec;
// Translates timestamps of a capture system to the same timescale as is used
// by TimeMicros(). `capturer_time_us` is assumed to be accurate, but
// with an unknown epoch and clock drift. `system_time_us` is
// time according to TimeMicros(), preferably read as soon as
// possible when the frame is captured. It may have poor accuracy
// due to poor resolution or scheduling delays. Returns the
// translated timestamp.
int64_t TranslateTimestamp(int64_t capturer_time_us, int64_t system_time_us);
// Returns the translated timestamp without updating the states. This is to
// allow TimestampAligner to translate capturer time into system clock based
// on earlier observations. It won't guarantee monotonicity.
int64_t TranslateTimestamp(int64_t capturer_time_us) const;
protected:
// Update the estimated offset between capturer's time and system monotonic
// time.
int64_t UpdateOffset(int64_t capturer_time_us, int64_t system_time_us);
// Clip timestamp, return value is always
// <= `system_time_us`, and
// >= min(`prev_translated_time_us_` + `kMinFrameIntervalUs`,
// `system_time_us`).
int64_t ClipTimestamp(int64_t filtered_time_us, int64_t system_time_us);
private:
// State for the timestamp translation.
int frames_seen_;
// Estimated offset between capturer's time and system monotonic time.
int64_t offset_us_;
// State for the ClipTimestamp method, applied after the filter.
// A large negative clock drift of the capturer tends to push translated
// timestamps into the future. `clip_bias_us_` is subtracted from the
// translated timestamps, to get them back from the future.
int64_t clip_bias_us_;
// Used to ensure that translated timestamps are monotonous.
int64_t prev_translated_time_us_;
// Offset between `prev_translated_time_us_` and the corresponding capturer
// time.
int64_t prev_time_offset_us_;
};
} // namespace webrtc
#endif // RTC_BASE_TIMESTAMP_ALIGNER_H_