blob: 0d3b205b419a8ee9fb0d07830b868c88be126dd1 [file] [log] [blame]
mflodman4cd27902016-08-05 06:28:45 -07001/*
2 * Copyright (c) 2012 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// RtpStreamsSynchronizer is responsible for synchronization audio and video for
12// a given voice engine channel and video receive stream.
13
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#ifndef VIDEO_RTP_STREAMS_SYNCHRONIZER_H_
15#define VIDEO_RTP_STREAMS_SYNCHRONIZER_H_
mflodman4cd27902016-08-05 06:28:45 -070016
17#include <memory>
18
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "modules/include/module.h"
20#include "rtc_base/criticalsection.h"
21#include "rtc_base/thread_checker.h"
22#include "video/stream_synchronization.h"
mflodman4cd27902016-08-05 06:28:45 -070023
24namespace webrtc {
25
solenberg3ebbcb52017-01-31 03:58:40 -080026class Syncable;
mflodman4cd27902016-08-05 06:28:45 -070027
28namespace vcm {
29class VideoReceiver;
30} // namespace vcm
31
32class RtpStreamsSynchronizer : public Module {
33 public:
solenberg3ebbcb52017-01-31 03:58:40 -080034 explicit RtpStreamsSynchronizer(Syncable* syncable_video);
mflodman4cd27902016-08-05 06:28:45 -070035
solenberg3ebbcb52017-01-31 03:58:40 -080036 void ConfigureSync(Syncable* syncable_audio);
mflodman4cd27902016-08-05 06:28:45 -070037
38 // Implements Module.
39 int64_t TimeUntilNextProcess() override;
40 void Process() override;
41
42 // Gets the sync offset between the current played out audio frame and the
43 // video |frame|. Returns true on success, false otherwise.
asaperssonde9e5ff2016-11-02 07:14:03 -070044 // The estimated frequency is the frequency used in the RTP to NTP timestamp
45 // conversion.
solenberg3ebbcb52017-01-31 03:58:40 -080046 bool GetStreamSyncOffsetInMs(uint32_t timestamp,
47 int64_t render_time_ms,
asaperssonde9e5ff2016-11-02 07:14:03 -070048 int64_t* stream_offset_ms,
49 double* estimated_freq_khz) const;
mflodman4cd27902016-08-05 06:28:45 -070050
51 private:
solenberg3ebbcb52017-01-31 03:58:40 -080052 Syncable* syncable_video_;
mflodman4cd27902016-08-05 06:28:45 -070053
54 rtc::CriticalSection crit_;
danilchapa37de392017-09-09 04:17:22 -070055 Syncable* syncable_audio_ RTC_GUARDED_BY(crit_);
56 std::unique_ptr<StreamSynchronization> sync_ RTC_GUARDED_BY(crit_);
57 StreamSynchronization::Measurements audio_measurement_ RTC_GUARDED_BY(crit_);
58 StreamSynchronization::Measurements video_measurement_ RTC_GUARDED_BY(crit_);
mflodman4cd27902016-08-05 06:28:45 -070059
60 rtc::ThreadChecker process_thread_checker_;
danilchapa37de392017-09-09 04:17:22 -070061 int64_t last_sync_time_ RTC_ACCESS_ON(&process_thread_checker_);
mflodman4cd27902016-08-05 06:28:45 -070062};
63
64} // namespace webrtc
65
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020066#endif // VIDEO_RTP_STREAMS_SYNCHRONIZER_H_