blob: 1a24391d2a823da8e2eca0da468e781fc451d9bd [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);
mflodman4cd27902016-08-05 06:28:45 -070031
solenberg3ebbcb52017-01-31 03:58:40 -080032 void ConfigureSync(Syncable* syncable_audio);
mflodman4cd27902016-08-05 06:28:45 -070033
34 // Implements Module.
35 int64_t TimeUntilNextProcess() override;
36 void Process() override;
37
38 // Gets the sync offset between the current played out audio frame and the
39 // video |frame|. Returns true on success, false otherwise.
asaperssonde9e5ff2016-11-02 07:14:03 -070040 // The estimated frequency is the frequency used in the RTP to NTP timestamp
41 // conversion.
solenberg3ebbcb52017-01-31 03:58:40 -080042 bool GetStreamSyncOffsetInMs(uint32_t timestamp,
43 int64_t render_time_ms,
asaperssonde9e5ff2016-11-02 07:14:03 -070044 int64_t* stream_offset_ms,
45 double* estimated_freq_khz) const;
mflodman4cd27902016-08-05 06:28:45 -070046
47 private:
solenberg3ebbcb52017-01-31 03:58:40 -080048 Syncable* syncable_video_;
mflodman4cd27902016-08-05 06:28:45 -070049
50 rtc::CriticalSection crit_;
danilchapa37de392017-09-09 04:17:22 -070051 Syncable* syncable_audio_ RTC_GUARDED_BY(crit_);
52 std::unique_ptr<StreamSynchronization> sync_ RTC_GUARDED_BY(crit_);
53 StreamSynchronization::Measurements audio_measurement_ RTC_GUARDED_BY(crit_);
54 StreamSynchronization::Measurements video_measurement_ RTC_GUARDED_BY(crit_);
mflodman4cd27902016-08-05 06:28:45 -070055
56 rtc::ThreadChecker process_thread_checker_;
Niels Möller1e062892018-02-07 10:18:32 +010057 int64_t last_sync_time_ RTC_GUARDED_BY(&process_thread_checker_);
mflodman4cd27902016-08-05 06:28:45 -070058};
59
60} // namespace webrtc
61
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020062#endif // VIDEO_RTP_STREAMS_SYNCHRONIZER_H_