Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: webrtc/video/stream_synchronization.cc

Issue 1756193005: Add histogram stats for AV sync stream offset: (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: mark constructor explicit Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/video/receive_statistics_proxy.cc ('k') | webrtc/video/video_receive_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/video/receive_statistics_proxy.cc ('k') | webrtc/video/video_receive_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698