mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-18 08:07:56 +01:00

In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
53 lines
1.8 KiB
C++
53 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2014 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 MODULES_RTP_RTCP_INCLUDE_REMOTE_NTP_TIME_ESTIMATOR_H_
|
|
#define MODULES_RTP_RTCP_INCLUDE_REMOTE_NTP_TIME_ESTIMATOR_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "rtc_base/constructormagic.h"
|
|
#include "system_wrappers/include/rtp_to_ntp_estimator.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class Clock;
|
|
class TimestampExtrapolator;
|
|
|
|
// RemoteNtpTimeEstimator can be used to estimate a given RTP timestamp's NTP
|
|
// time in local timebase.
|
|
// Note that it needs to be trained with at least 2 RTCP SR (by calling
|
|
// |UpdateRtcpTimestamp|) before it can be used.
|
|
class RemoteNtpTimeEstimator {
|
|
public:
|
|
explicit RemoteNtpTimeEstimator(Clock* clock);
|
|
|
|
~RemoteNtpTimeEstimator();
|
|
|
|
// Updates the estimator with round trip time |rtt|, NTP seconds |ntp_secs|,
|
|
// NTP fraction |ntp_frac| and RTP timestamp |rtcp_timestamp|.
|
|
bool UpdateRtcpTimestamp(int64_t rtt, uint32_t ntp_secs, uint32_t ntp_frac,
|
|
uint32_t rtp_timestamp);
|
|
|
|
// Estimates the NTP timestamp in local timebase from |rtp_timestamp|.
|
|
// Returns the NTP timestamp in ms when success. -1 if failed.
|
|
int64_t Estimate(uint32_t rtp_timestamp);
|
|
|
|
private:
|
|
Clock* clock_;
|
|
std::unique_ptr<TimestampExtrapolator> ts_extrapolator_;
|
|
RtpToNtpEstimator rtp_to_ntp_;
|
|
int64_t last_timing_log_ms_;
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(RemoteNtpTimeEstimator);
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_RTP_RTCP_INCLUDE_REMOTE_NTP_TIME_ESTIMATOR_H_
|