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

Issue 1756193005: Add histogram stats for AV sync stream offset: (Closed)

Created:
4 years, 9 months ago by åsapersson
Modified:
4 years, 9 months ago
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, stefan-webrtc, tterriberry_mozilla.com, the sun, pbos-webrtc, perkj_webrtc, mflodman
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add histogram stats for AV sync stream offset: "WebRTC.Video.AVSyncOffsetInMs" The absolute value of the sync offset between a rendered video frame and the latest played audio frame is measured per video frame. The average offset per received video stream is recorded when a stream is removed. Updated sync tests in call_perf_tests.cc to use this implementation. BUG=webrtc:5493 Committed: https://crrev.com/f8cdd184d5299773dfb16063e8690aa2b5bad3ae Cr-Commit-Position: refs/heads/master@{#11993}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Total comments: 17

Patch Set 5 : #

Patch Set 6 : rebase #

Patch Set 7 : #

Total comments: 8

Patch Set 8 : address comments #

Patch Set 9 : rebase #

Patch Set 10 : mark constructor explicit #

Unified diffs Side-by-side diffs Delta from patch set Stats (+111 lines, -121 lines) Patch
M webrtc/call/call_perf_tests.cc View 1 2 3 4 5 6 7 8 9 11 chunks +38 lines, -97 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc View 1 2 3 4 1 chunk +0 lines, -4 lines 0 comments Download
M webrtc/system_wrappers/source/rtp_to_ntp.cc View 1 2 3 4 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/system_wrappers/source/rtp_to_ntp_unittest.cc View 1 2 3 4 7 chunks +4 lines, -12 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.h View 1 2 3 4 5 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.cc View 1 2 3 4 5 2 chunks +10 lines, -0 lines 0 comments Download
M webrtc/video/stream_synchronization.cc View 1 2 3 4 1 chunk +0 lines, -4 lines 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/video/vie_sync_module.h View 1 2 3 4 5 6 2 chunks +8 lines, -0 lines 0 comments Download
M webrtc/video/vie_sync_module.cc View 1 2 3 4 5 6 3 chunks +39 lines, -3 lines 0 comments Download
M webrtc/video_receive_stream.h View 1 2 3 4 5 6 7 2 chunks +3 lines, -0 lines 0 comments Download

Messages

Total messages: 43 (22 generated)
åsapersson
4 years, 9 months ago (2016-03-04 13:17:26 UTC) #3
stefan-webrtc
https://codereview.webrtc.org/1756193005/diff/60001/webrtc/call/call_perf_tests.cc File webrtc/call/call_perf_tests.cc (right): https://codereview.webrtc.org/1756193005/diff/60001/webrtc/call/call_perf_tests.cc#newcode166 webrtc/call/call_perf_tests.cc:166: int64_t stream_offset = latest_audio_ntp - latest_video_ntp; If you also ...
4 years, 9 months ago (2016-03-04 14:32:17 UTC) #4
pbos-webrtc
https://codereview.webrtc.org/1756193005/diff/60001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc (right): https://codereview.webrtc.org/1756193005/diff/60001/webrtc/video/receive_statistics_proxy.cc#newcode243 webrtc/video/receive_statistics_proxy.cc:243: render_sync_offset_counter_.Add(stream_sync_offset_ms); Should we expose this in getStats as well? ...
4 years, 9 months ago (2016-03-04 14:34:28 UTC) #5
stefan-webrtc
https://codereview.webrtc.org/1756193005/diff/60001/webrtc/video/vie_sync_module.cc File webrtc/video/vie_sync_module.cc (right): https://codereview.webrtc.org/1756193005/diff/60001/webrtc/video/vie_sync_module.cc#newcode156 webrtc/video/vie_sync_module.cc:156: TRACE_COUNTER1("webrtc", "SyncCurrentVideoDelay", current_video_delay_ms); On 2016/03/04 14:34:27, pbos-webrtc wrote: > ...
4 years, 9 months ago (2016-03-04 14:38:55 UTC) #6
åsapersson
PTAL https://codereview.webrtc.org/1756193005/diff/60001/webrtc/call/call_perf_tests.cc File webrtc/call/call_perf_tests.cc (right): https://codereview.webrtc.org/1756193005/diff/60001/webrtc/call/call_perf_tests.cc#newcode166 webrtc/call/call_perf_tests.cc:166: int64_t stream_offset = latest_audio_ntp - latest_video_ntp; On 2016/03/04 ...
4 years, 9 months ago (2016-03-09 15:44:35 UTC) #13
stefan-webrtc
https://codereview.webrtc.org/1756193005/diff/60001/webrtc/call/call_perf_tests.cc File webrtc/call/call_perf_tests.cc (right): https://codereview.webrtc.org/1756193005/diff/60001/webrtc/call/call_perf_tests.cc#newcode387 webrtc/call/call_perf_tests.cc:387: EXPECT_EQ(1, test::NumHistogramSamples("WebRTC.Video.AVSyncOffsetInMs")); On 2016/03/09 15:44:35, åsapersson wrote: > On ...
4 years, 9 months ago (2016-03-09 15:59:30 UTC) #14
åsapersson
https://codereview.webrtc.org/1756193005/diff/220001/webrtc/call/call_perf_tests.cc File webrtc/call/call_perf_tests.cc (right): https://codereview.webrtc.org/1756193005/diff/220001/webrtc/call/call_perf_tests.cc#newcode11 webrtc/call/call_perf_tests.cc:11: #include <limits.h> On 2016/03/09 15:59:30, stefan-webrtc (holmer) wrote: > ...
4 years, 9 months ago (2016-03-10 09:08:35 UTC) #15
stefan-webrtc
lgtm https://codereview.webrtc.org/1756193005/diff/220001/webrtc/video/video_receive_stream.cc File webrtc/video/video_receive_stream.cc (right): https://codereview.webrtc.org/1756193005/diff/220001/webrtc/video/video_receive_stream.cc#newcode385 webrtc/video/video_receive_stream.cc:385: stats_proxy_.OnSyncOffsetUpdated(sync_offset_ms); On 2016/03/10 09:08:35, åsapersson wrote: > On ...
4 years, 9 months ago (2016-03-10 14:25:09 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1756193005/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1756193005/240001
4 years, 9 months ago (2016-03-10 14:40:09 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/4047)
4 years, 9 months ago (2016-03-10 14:42:20 UTC) #20
åsapersson
On 2016/03/10 14:42:20, commit-bot: I haz the power wrote: > Try jobs failed on following ...
4 years, 9 months ago (2016-03-10 14:50:57 UTC) #22
mflodman
system_wrappers lgtm
4 years, 9 months ago (2016-03-14 08:32:11 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1756193005/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1756193005/240001
4 years, 9 months ago (2016-03-14 08:44:30 UTC) #25
commit-bot: I haz the power
Try jobs failed on following builders: android_clang_dbg on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_clang_dbg/builds/11472) android_compile_x64_dbg on tryserver.webrtc (JOB_FAILED, ...
4 years, 9 months ago (2016-03-14 08:45:41 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1756193005/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1756193005/260001
4 years, 9 months ago (2016-03-14 09:15:33 UTC) #30
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/4114)
4 years, 9 months ago (2016-03-14 09:32:05 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1756193005/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1756193005/280001
4 years, 9 months ago (2016-03-14 09:51:31 UTC) #35
commit-bot: I haz the power
Try jobs failed on following builders: win_baremetal on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/win_baremetal/builds/9728)
4 years, 9 months ago (2016-03-14 11:55:45 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1756193005/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1756193005/280001
4 years, 9 months ago (2016-03-15 07:27:49 UTC) #39
commit-bot: I haz the power
Committed patchset #10 (id:280001)
4 years, 9 months ago (2016-03-15 08:00:53 UTC) #41
commit-bot: I haz the power
4 years, 9 months ago (2016-03-15 08:01:02 UTC) #43
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/f8cdd184d5299773dfb16063e8690aa2b5bad3ae
Cr-Commit-Position: refs/heads/master@{#11993}

Powered by Google App Engine
This is Rietveld 408576698