Ruslan Burakov | 428dcb2 | 2019-04-18 15:49:49 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 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 | #ifndef PC_JITTER_BUFFER_DELAY_H_ |
| 12 | #define PC_JITTER_BUFFER_DELAY_H_ |
| 13 | |
| 14 | #include <stdint.h> |
| 15 | |
| 16 | #include "absl/types/optional.h" |
Tommi | 4ccdf932 | 2021-05-17 12:50:10 | [diff] [blame] | 17 | #include "api/sequence_checker.h" |
| 18 | #include "rtc_base/system/no_unique_address.h" |
Harald Alvestrand | c24a218 | 2022-02-23 13:44:59 | [diff] [blame] | 19 | #include "rtc_base/thread_annotations.h" |
Ruslan Burakov | 428dcb2 | 2019-04-18 15:49:49 | [diff] [blame] | 20 | |
| 21 | namespace webrtc { |
| 22 | |
| 23 | // JitterBufferDelay converts delay from seconds to milliseconds for the |
| 24 | // underlying media channel. It also handles cases when user sets delay before |
Tommi | 4ccdf932 | 2021-05-17 12:50:10 | [diff] [blame] | 25 | // the start of media_channel by caching its request. |
| 26 | class JitterBufferDelay { |
Ruslan Burakov | 428dcb2 | 2019-04-18 15:49:49 | [diff] [blame] | 27 | public: |
Tommi | c848268 | 2023-03-23 21:20:39 | [diff] [blame] | 28 | JitterBufferDelay() = default; |
Ruslan Burakov | 428dcb2 | 2019-04-18 15:49:49 | [diff] [blame] | 29 | |
Tommi | 4ccdf932 | 2021-05-17 12:50:10 | [diff] [blame] | 30 | void Set(absl::optional<double> delay_seconds); |
| 31 | int GetMs() const; |
Ruslan Burakov | 428dcb2 | 2019-04-18 15:49:49 | [diff] [blame] | 32 | |
| 33 | private: |
Tommi | c848268 | 2023-03-23 21:20:39 | [diff] [blame] | 34 | RTC_NO_UNIQUE_ADDRESS SequenceChecker worker_thread_checker_{ |
| 35 | SequenceChecker::kDetached}; |
Tommi | 4ccdf932 | 2021-05-17 12:50:10 | [diff] [blame] | 36 | absl::optional<double> cached_delay_seconds_ |
| 37 | RTC_GUARDED_BY(&worker_thread_checker_); |
Ruslan Burakov | 428dcb2 | 2019-04-18 15:49:49 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | } // namespace webrtc |
| 41 | |
| 42 | #endif // PC_JITTER_BUFFER_DELAY_H_ |