Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2019 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 | #include "modules/rtp_rtcp/source/absolute_capture_time_sender.h" |
| 12 | |
| 13 | #include <limits> |
| 14 | |
Minyue Li | 6e65f6a | 2021-06-21 13:13:14 | [diff] [blame] | 15 | #include "modules/rtp_rtcp/source/absolute_capture_time_interpolator.h" |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 16 | #include "system_wrappers/include/ntp_time.h" |
| 17 | |
| 18 | namespace webrtc { |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 19 | |
| 20 | static_assert( |
Minyue Li | 6e65f6a | 2021-06-21 13:13:14 | [diff] [blame] | 21 | AbsoluteCaptureTimeInterpolator::kInterpolationMaxInterval >= |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 22 | AbsoluteCaptureTimeSender::kInterpolationMaxInterval, |
| 23 | "Receivers should be as willing to interpolate timestamps as senders."); |
| 24 | |
| 25 | AbsoluteCaptureTimeSender::AbsoluteCaptureTimeSender(Clock* clock) |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 26 | : clock_(clock) {} |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 27 | |
| 28 | uint32_t AbsoluteCaptureTimeSender::GetSource( |
| 29 | uint32_t ssrc, |
| 30 | rtc::ArrayView<const uint32_t> csrcs) { |
Minyue Li | 6e65f6a | 2021-06-21 13:13:14 | [diff] [blame] | 31 | return AbsoluteCaptureTimeInterpolator::GetSource(ssrc, csrcs); |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 32 | } |
| 33 | |
Florent Castelli | 8037fc6 | 2024-08-29 13:00:40 | [diff] [blame] | 34 | std::optional<AbsoluteCaptureTime> AbsoluteCaptureTimeSender::OnSendPacket( |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 35 | uint32_t source, |
| 36 | uint32_t rtp_timestamp, |
| 37 | uint32_t rtp_clock_frequency, |
| 38 | uint64_t absolute_capture_timestamp, |
Florent Castelli | 8037fc6 | 2024-08-29 13:00:40 | [diff] [blame] | 39 | std::optional<int64_t> estimated_capture_clock_offset) { |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 40 | return OnSendPacket(source, rtp_timestamp, rtp_clock_frequency, |
| 41 | NtpTime(absolute_capture_timestamp), |
| 42 | estimated_capture_clock_offset, /*force=*/false); |
| 43 | } |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 44 | |
Florent Castelli | 8037fc6 | 2024-08-29 13:00:40 | [diff] [blame] | 45 | std::optional<AbsoluteCaptureTime> AbsoluteCaptureTimeSender::OnSendPacket( |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 46 | uint32_t source, |
| 47 | uint32_t rtp_timestamp, |
| 48 | int rtp_clock_frequency_hz, |
| 49 | NtpTime absolute_capture_time, |
Florent Castelli | 8037fc6 | 2024-08-29 13:00:40 | [diff] [blame] | 50 | std::optional<int64_t> estimated_capture_clock_offset, |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 51 | bool force) { |
| 52 | Timestamp send_time = clock_->CurrentTime(); |
| 53 | if (!(force || ShouldSendExtension( |
| 54 | send_time, source, rtp_timestamp, rtp_clock_frequency_hz, |
| 55 | absolute_capture_time, estimated_capture_clock_offset))) { |
Florent Castelli | 8037fc6 | 2024-08-29 13:00:40 | [diff] [blame] | 56 | return std::nullopt; |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | last_source_ = source; |
| 60 | last_rtp_timestamp_ = rtp_timestamp; |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 61 | last_rtp_clock_frequency_hz_ = rtp_clock_frequency_hz; |
| 62 | last_absolute_capture_time_ = absolute_capture_time; |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 63 | last_estimated_capture_clock_offset_ = estimated_capture_clock_offset; |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 64 | last_send_time_ = send_time; |
| 65 | |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 66 | return AbsoluteCaptureTime{ |
| 67 | .absolute_capture_timestamp = uint64_t{absolute_capture_time}, |
| 68 | .estimated_capture_clock_offset = estimated_capture_clock_offset, |
| 69 | }; |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | bool AbsoluteCaptureTimeSender::ShouldSendExtension( |
| 73 | Timestamp send_time, |
| 74 | uint32_t source, |
| 75 | uint32_t rtp_timestamp, |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 76 | int rtp_clock_frequency_hz, |
| 77 | NtpTime absolute_capture_time, |
Florent Castelli | 8037fc6 | 2024-08-29 13:00:40 | [diff] [blame] | 78 | std::optional<int64_t> estimated_capture_clock_offset) const { |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 79 | // Should if the last sent extension is too old, in particular if we've never |
| 80 | // sent anything before. |
| 81 | if (send_time - last_send_time_ > kInterpolationMaxInterval) { |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 82 | return true; |
| 83 | } |
| 84 | |
| 85 | // Should if the source has changed. |
| 86 | if (last_source_ != source) { |
| 87 | return true; |
| 88 | } |
| 89 | |
| 90 | // Should if the RTP clock frequency has changed. |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 91 | if (last_rtp_clock_frequency_hz_ != rtp_clock_frequency_hz) { |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 92 | return true; |
| 93 | } |
| 94 | |
| 95 | // Should if the RTP clock frequency is invalid. |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 96 | if (rtp_clock_frequency_hz <= 0) { |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 97 | return true; |
| 98 | } |
| 99 | |
| 100 | // Should if the estimated capture clock offset has changed. |
| 101 | if (last_estimated_capture_clock_offset_ != estimated_capture_clock_offset) { |
| 102 | return true; |
| 103 | } |
| 104 | |
| 105 | // Should if interpolation would introduce too much error. |
| 106 | const uint64_t interpolated_absolute_capture_timestamp = |
Minyue Li | 6e65f6a | 2021-06-21 13:13:14 | [diff] [blame] | 107 | AbsoluteCaptureTimeInterpolator::InterpolateAbsoluteCaptureTimestamp( |
Danil Chapovalov | 6634c91 | 2023-10-26 09:46:02 | [diff] [blame] | 108 | rtp_timestamp, rtp_clock_frequency_hz, last_rtp_timestamp_, |
| 109 | uint64_t{last_absolute_capture_time_}); |
| 110 | const uint64_t absolute_capture_timestamp = uint64_t{absolute_capture_time}; |
Chen Xing | 05f8f1d | 2019-08-22 08:05:01 | [diff] [blame] | 111 | const int64_t interpolation_error_ms = UQ32x32ToInt64Ms(std::min( |
| 112 | interpolated_absolute_capture_timestamp - absolute_capture_timestamp, |
| 113 | absolute_capture_timestamp - interpolated_absolute_capture_timestamp)); |
| 114 | if (interpolation_error_ms > kInterpolationMaxError.ms()) { |
| 115 | return true; |
| 116 | } |
| 117 | |
| 118 | return false; |
| 119 | } |
| 120 | |
| 121 | } // namespace webrtc |