blob: 720ea14d17b55a74a01c8d1ecf36f9e2c3db6c8b [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
mflodman4cd27902016-08-05 06:28:45 -070028class RtpStreamsSynchronizer : public Module {
29 public:
solenberg3ebbcb52017-01-31 03:58:40 -080030 explicit RtpStreamsSynchronizer(Syncable* syncable_video);
Mirko Bonadei8fdcac32018-08-28 16:30:18 +020031 ~RtpStreamsSynchronizer() override;
mflodman4cd27902016-08-05 06:28:45 -070032
solenberg3ebbcb52017-01-31 03:58:40 -080033 void ConfigureSync(Syncable* syncable_audio);
mflodman4cd27902016-08-05 06:28:45 -070034
35 // Implements Module.
36 int64_t TimeUntilNextProcess() override;
37 void Process() override;
38
39 // Gets the sync offset between the current played out audio frame and the
40 // video |frame|. Returns true on success, false otherwise.
asaperssonde9e5ff2016-11-02 07:14:03 -070041 // The estimated frequency is the frequency used in the RTP to NTP timestamp
42 // conversion.
solenberg3ebbcb52017-01-31 03:58:40 -080043 bool GetStreamSyncOffsetInMs(uint32_t timestamp,
44 int64_t render_time_ms,
asaperssonde9e5ff2016-11-02 07:14:03 -070045 int64_t* stream_offset_ms,
46 double* estimated_freq_khz) const;
mflodman4cd27902016-08-05 06:28:45 -070047
48 private:
solenberg3ebbcb52017-01-31 03:58:40 -080049 Syncable* syncable_video_;
mflodman4cd27902016-08-05 06:28:45 -070050
51 rtc::CriticalSection crit_;
danilchapa37de392017-09-09 04:17:22 -070052 Syncable* syncable_audio_ RTC_GUARDED_BY(crit_);
53 std::unique_ptr<StreamSynchronization> sync_ RTC_GUARDED_BY(crit_);
54 StreamSynchronization::Measurements audio_measurement_ RTC_GUARDED_BY(crit_);
55 StreamSynchronization::Measurements video_measurement_ RTC_GUARDED_BY(crit_);
mflodman4cd27902016-08-05 06:28:45 -070056
57 rtc::ThreadChecker process_thread_checker_;
Niels Möller1e062892018-02-07 10:18:32 +010058 int64_t last_sync_time_ RTC_GUARDED_BY(&process_thread_checker_);
mflodman4cd27902016-08-05 06:28:45 -070059};
60
61} // namespace webrtc
62
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020063#endif // VIDEO_RTP_STREAMS_SYNCHRONIZER_H_