OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 StreamSynchronization::~StreamSynchronization() { | 54 StreamSynchronization::~StreamSynchronization() { |
55 delete channel_delay_; | 55 delete channel_delay_; |
56 } | 56 } |
57 | 57 |
58 bool StreamSynchronization::ComputeRelativeDelay( | 58 bool StreamSynchronization::ComputeRelativeDelay( |
59 const Measurements& audio_measurement, | 59 const Measurements& audio_measurement, |
60 const Measurements& video_measurement, | 60 const Measurements& video_measurement, |
61 int* relative_delay_ms) { | 61 int* relative_delay_ms) { |
62 assert(relative_delay_ms); | 62 assert(relative_delay_ms); |
63 if (audio_measurement.rtcp.size() < 2 || video_measurement.rtcp.size() < 2) { | |
64 // We need two RTCP SR reports per stream to do synchronization. | |
65 return false; | |
66 } | |
67 int64_t audio_last_capture_time_ms; | 63 int64_t audio_last_capture_time_ms; |
68 if (!RtpToNtpMs(audio_measurement.latest_timestamp, | 64 if (!RtpToNtpMs(audio_measurement.latest_timestamp, |
69 audio_measurement.rtcp, | 65 audio_measurement.rtcp, |
70 &audio_last_capture_time_ms)) { | 66 &audio_last_capture_time_ms)) { |
71 return false; | 67 return false; |
72 } | 68 } |
73 int64_t video_last_capture_time_ms; | 69 int64_t video_last_capture_time_ms; |
74 if (!RtpToNtpMs(video_measurement.latest_timestamp, | 70 if (!RtpToNtpMs(video_measurement.latest_timestamp, |
75 video_measurement.rtcp, | 71 video_measurement.rtcp, |
76 &video_last_capture_time_ms)) { | 72 &video_last_capture_time_ms)) { |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 target_delay_ms - base_target_delay_ms_; | 213 target_delay_ms - base_target_delay_ms_; |
218 | 214 |
219 channel_delay_->extra_video_delay_ms += | 215 channel_delay_->extra_video_delay_ms += |
220 target_delay_ms - base_target_delay_ms_; | 216 target_delay_ms - base_target_delay_ms_; |
221 | 217 |
222 // Video is already delayed by the desired amount. | 218 // Video is already delayed by the desired amount. |
223 base_target_delay_ms_ = target_delay_ms; | 219 base_target_delay_ms_ = target_delay_ms; |
224 } | 220 } |
225 | 221 |
226 } // namespace webrtc | 222 } // namespace webrtc |
OLD | NEW |