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

Issue 1778503002: Experiment for the nack module. (Closed)

Created:
4 years, 9 months ago by philipel
Modified:
4 years, 9 months ago
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, danilchap, yujie_mao (webrtc), zhuangzesen_agora.io, 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

Experiment for the nack module. Testing the nack module by implementing it into the current jitter buffer under the experiment WebRTC-NewVideoJitterBuffer. BUG=webrtc:5514 Committed: https://crrev.com/83f831a919ff4c2d736ec3c5a33c6afb4d5eea47 Cr-Commit-Position: refs/heads/master@{#11969}

Patch Set 1 #

Patch Set 2 : #

Total comments: 27

Patch Set 3 : Feedback fixes #

Total comments: 12

Patch Set 4 : Feedback fixes #

Patch Set 5 : Feedback fixes #

Patch Set 6 : Added nack module to BUILD.gn #

Patch Set 7 : Added histogram to BUILD.gn. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+420 lines, -82 lines) Patch
M webrtc/modules/rtp_rtcp/include/rtp_rtcp.h View 1 2 2 chunks +9 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h View 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 chunk +8 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/BUILD.gn View 1 2 3 4 5 6 2 chunks +4 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/include/video_coding.h View 1 2 1 chunk +13 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/jitter_buffer.h View 1 2 4 chunks +12 lines, -1 line 0 comments Download
M webrtc/modules/video_coding/jitter_buffer.cc View 1 2 3 4 11 chunks +53 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/jitter_buffer_unittest.cc View 1 2 50 chunks +164 lines, -64 lines 0 comments Download
M webrtc/modules/video_coding/nack_module.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/video_coding/nack_module.cc View 1 2 3 1 chunk +6 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/receiver.h View 1 2 2 chunks +23 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/receiver.cc View 1 2 2 chunks +41 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/video_coding_impl.h View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M webrtc/modules/video_coding/video_coding_impl.cc View 1 2 2 chunks +40 lines, -4 lines 0 comments Download
M webrtc/modules/video_coding/video_receiver.cc View 1 2 3 chunks +15 lines, -2 lines 0 comments Download
M webrtc/video/video_receive_stream.h View 2 chunks +9 lines, -1 line 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 2 chunks +14 lines, -1 line 0 comments Download

Messages

Total messages: 31 (13 generated)
philipel
4 years, 9 months ago (2016-03-08 12:41:47 UTC) #2
stefan-webrtc
https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/include/video_coding.h File webrtc/modules/video_coding/include/video_coding.h (right): https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/include/video_coding.h#newcode78 webrtc/modules/video_coding/include/video_coding.h:78: // Create method for the new jitter buffer. I ...
4 years, 9 months ago (2016-03-10 14:20:40 UTC) #3
philipel
https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/include/video_coding.h File webrtc/modules/video_coding/include/video_coding.h (right): https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/include/video_coding.h#newcode78 webrtc/modules/video_coding/include/video_coding.h:78: // Create method for the new jitter buffer. On ...
4 years, 9 months ago (2016-03-10 16:39:28 UTC) #4
stefan-webrtc
https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc File webrtc/modules/video_coding/jitter_buffer.cc (right): https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc#newcode263 webrtc/modules/video_coding/jitter_buffer.cc:263: new NackModule(clock, nack_sender, keyframe_request_sender)); On 2016/03/10 16:39:27, philipel wrote: ...
4 years, 9 months ago (2016-03-10 17:06:30 UTC) #5
philipel
https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc File webrtc/modules/video_coding/jitter_buffer.cc (right): https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc#newcode263 webrtc/modules/video_coding/jitter_buffer.cc:263: new NackModule(clock, nack_sender, keyframe_request_sender)); On 2016/03/10 17:06:29, stefan-webrtc (holmer) ...
4 years, 9 months ago (2016-03-11 09:24:15 UTC) #6
stefan-webrtc
LG https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc File webrtc/modules/video_coding/jitter_buffer.cc (right): https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc#newcode263 webrtc/modules/video_coding/jitter_buffer.cc:263: new NackModule(clock, nack_sender, keyframe_request_sender)); On 2016/03/11 09:24:14, philipel ...
4 years, 9 months ago (2016-03-11 09:57:11 UTC) #7
philipel
https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc File webrtc/modules/video_coding/jitter_buffer.cc (right): https://codereview.webrtc.org/1778503002/diff/20001/webrtc/modules/video_coding/jitter_buffer.cc#newcode263 webrtc/modules/video_coding/jitter_buffer.cc:263: new NackModule(clock, nack_sender, keyframe_request_sender)); On 2016/03/11 09:57:11, stefan-webrtc (holmer) ...
4 years, 9 months ago (2016-03-11 10:13:00 UTC) #8
stefan-webrtc
lgtm
4 years, 9 months ago (2016-03-11 10:13:35 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1778503002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1778503002/80001
4 years, 9 months ago (2016-03-11 12:19:30 UTC) #11
commit-bot: I haz the power
Try jobs failed on following builders: mac_gn_dbg on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/mac_gn_dbg/builds/1525)
4 years, 9 months ago (2016-03-11 12:28:38 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1778503002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1778503002/100001
4 years, 9 months ago (2016-03-11 13:07:55 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: mac_gn_dbg on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/mac_gn_dbg/builds/1527)
4 years, 9 months ago (2016-03-11 13:12:06 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1778503002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1778503002/120001
4 years, 9 months ago (2016-03-11 13:26:36 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1778503002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1778503002/120001
4 years, 9 months ago (2016-03-11 13:32:57 UTC) #24
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on tryserver.webrtc (JOB_TIMED_OUT, no build URL)
4 years, 9 months ago (2016-03-11 15:33:21 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1778503002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1778503002/120001
4 years, 9 months ago (2016-03-12 11:28:46 UTC) #28
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 9 months ago (2016-03-12 11:30:29 UTC) #29
commit-bot: I haz the power
4 years, 9 months ago (2016-03-12 11:30:36 UTC) #31
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/83f831a919ff4c2d736ec3c5a33c6afb4d5eea47
Cr-Commit-Position: refs/heads/master@{#11969}

Powered by Google App Engine
This is Rietveld 408576698