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

Issue 1327933002: Full impl of NnChannel::SetSendParameters and NnChannel::SetRecvParameters (Closed)

Created:
5 years, 3 months ago by the sun
Modified:
5 years, 3 months ago
Reviewers:
pbos-webrtc, pthatcher1
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, qiang.lu, niklas.enbom, yujie_mao (webrtc), Andrew MacDonald, kwiberg-webrtc, tlegrand-webrtc
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Full use of NnChannel::SetSendParameters and NnChannel::SetRecvParameters. SetOptions(), SetMaxBandwidth(), Set[Send|Recv]RtpHeaderExtensions(), Set[Send|Recv]Codecs() are now private. BUG=webrtc:4690 R=pbos@webrtc.org, pthatcher@webrtc.org Committed: https://crrev.com/b071a19019a0a2173cc139c960d6ef6946a1c581 Cr-Commit-Position: refs/heads/master@{#9973}

Patch Set 1 #

Patch Set 2 : rebase #

Patch Set 3 : Got rid of SetChannelOptions #

Total comments: 9

Patch Set 4 : Merged with CLs to remove TypingMonitor #

Patch Set 5 : base on CL 1311533009 #

Patch Set 6 : rebase #

Patch Set 7 : fix tests #

Patch Set 8 : WVoE tests updated. #

Patch Set 9 : remove helper #

Patch Set 10 : Remove TODO markers #

Patch Set 11 : Video+Data tests updated. #

Patch Set 12 : rebase #

Total comments: 11

Patch Set 13 : more tests #

Patch Set 14 : remaining tests #

Patch Set 15 : rebase #

Total comments: 4

Patch Set 16 : rebase+fix #

Patch Set 17 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1197 lines, -1354 lines) Patch
M talk/app/webrtc/statscollector_unittest.cc View 1 2 3 4 5 6 1 chunk +4 lines, -5 lines 0 comments Download
M talk/media/base/fakemediaengine.h View 1 2 3 4 5 6 7 8 9 10 11 12 22 chunks +125 lines, -92 lines 0 comments Download
M talk/media/base/mediachannel.h View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +7 lines, -66 lines 0 comments Download
M talk/media/base/rtpdataengine.h View 2 chunks +5 lines, -7 lines 0 comments Download
M talk/media/base/rtpdataengine.cc View 1 chunk +9 lines, -0 lines 0 comments Download
M talk/media/base/rtpdataengine_unittest.cc View 1 2 3 4 5 6 7 8 9 10 6 chunks +38 lines, -30 lines 0 comments Download
M talk/media/base/videoengine_unittest.h View 1 2 3 4 5 6 7 8 9 10 11 12 10 chunks +36 lines, -105 lines 0 comments Download
M talk/media/sctp/sctpdataengine.h View 1 2 3 4 5 3 chunks +5 lines, -13 lines 0 comments Download
M talk/media/sctp/sctpdataengine.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +8 lines, -0 lines 0 comments Download
M talk/media/webrtc/webrtcvideoengine2.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +11 lines, -11 lines 0 comments Download
M talk/media/webrtc/webrtcvideoengine2.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +8 lines, -4 lines 0 comments Download
M talk/media/webrtc/webrtcvideoengine2_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 71 chunks +307 lines, -307 lines 0 comments Download
M talk/media/webrtc/webrtcvoiceengine.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +12 lines, -10 lines 0 comments Download
M talk/media/webrtc/webrtcvoiceengine.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +4 lines, -4 lines 0 comments Download
M talk/media/webrtc/webrtcvoiceengine_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 116 chunks +606 lines, -640 lines 0 comments Download
M talk/session/media/channel_unittest.cc View 1 2 3 4 5 6 6 chunks +12 lines, -60 lines 0 comments Download

Messages

Total messages: 22 (4 generated)
the sun
Peter: FYI: I'm giving it a shot to get rid of the individual setters on ...
5 years, 3 months ago (2015-09-03 09:48:02 UTC) #2
pthatcher1
This is looking great already. Thanks for doing this! https://codereview.webrtc.org/1327933002/diff/40001/talk/app/webrtc/webrtcsession.cc File talk/app/webrtc/webrtcsession.cc (right): https://codereview.webrtc.org/1327933002/diff/40001/talk/app/webrtc/webrtcsession.cc#newcode1175 talk/app/webrtc/webrtcsession.cc:1175: ...
5 years, 3 months ago (2015-09-04 23:21:16 UTC) #3
the sun
https://codereview.webrtc.org/1327933002/diff/40001/talk/app/webrtc/webrtcsession.cc File talk/app/webrtc/webrtcsession.cc (right): https://codereview.webrtc.org/1327933002/diff/40001/talk/app/webrtc/webrtcsession.cc#newcode1175 talk/app/webrtc/webrtcsession.cc:1175: if (!voice_channel_->MuteStream(ssrc, !enable, &options)) { On 2015/09/04 23:21:16, pthatcher1 ...
5 years, 3 months ago (2015-09-08 11:31:12 UTC) #4
the sun
https://codereview.webrtc.org/1327933002/diff/40001/talk/media/base/fakemediaengine.h File talk/media/base/fakemediaengine.h (right): https://codereview.webrtc.org/1327933002/diff/40001/talk/media/base/fakemediaengine.h#newcode821 talk/media/base/fakemediaengine.h:821: // ch->SetOptions(options); On 2015/09/04 23:21:16, pthatcher1 wrote: > The ...
5 years, 3 months ago (2015-09-11 15:03:03 UTC) #5
the sun
On 2015/09/11 15:03:03, the sun wrote: > https://codereview.webrtc.org/1327933002/diff/40001/talk/media/base/fakemediaengine.h > File talk/media/base/fakemediaengine.h (right): > > https://codereview.webrtc.org/1327933002/diff/40001/talk/media/base/fakemediaengine.h#newcode821 ...
5 years, 3 months ago (2015-09-14 15:24:57 UTC) #7
pthatcher1
https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/mediachannel.h File talk/media/base/mediachannel.h (right): https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/mediachannel.h#newcode1074 talk/media/base/mediachannel.h:1074: AudioRenderer* renderer) = 0; Instead of "bool mute", can ...
5 years, 3 months ago (2015-09-14 19:42:02 UTC) #8
the sun
https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/videoengine_unittest.h File talk/media/base/videoengine_unittest.h (left): https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/videoengine_unittest.h#oldcode1785 talk/media/base/videoengine_unittest.h:1785: // Tests that we cannot receive key frames with ...
5 years, 3 months ago (2015-09-14 19:58:00 UTC) #9
the sun
On 2015/09/14 19:58:00, the sun wrote: > https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/videoengine_unittest.h > File talk/media/base/videoengine_unittest.h (left): > > https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/videoengine_unittest.h#oldcode1785 ...
5 years, 3 months ago (2015-09-15 15:54:07 UTC) #10
pthatcher1
On 2015/09/15 15:54:07, the sun wrote: > On 2015/09/14 19:58:00, the sun wrote: > > ...
5 years, 3 months ago (2015-09-16 03:45:23 UTC) #11
pthatcher1
https://codereview.webrtc.org/1327933002/diff/220001/talk/media/webrtc/webrtcvideoengine2.cc File talk/media/webrtc/webrtcvideoengine2.cc (right): https://codereview.webrtc.org/1327933002/diff/220001/talk/media/webrtc/webrtcvideoengine2.cc#newcode940 talk/media/webrtc/webrtcvideoengine2.cc:940: } On 2015/09/14 19:58:00, the sun wrote: > On ...
5 years, 3 months ago (2015-09-16 03:45:30 UTC) #12
the sun
On 2015/09/16 03:45:30, pthatcher1 wrote: > https://codereview.webrtc.org/1327933002/diff/220001/talk/media/webrtc/webrtcvideoengine2.cc > File talk/media/webrtc/webrtcvideoengine2.cc (right): > > https://codereview.webrtc.org/1327933002/diff/220001/talk/media/webrtc/webrtcvideoengine2.cc#newcode940 > ...
5 years, 3 months ago (2015-09-16 13:01:17 UTC) #13
the sun
https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/mediachannel.h File talk/media/base/mediachannel.h (right): https://codereview.webrtc.org/1327933002/diff/220001/talk/media/base/mediachannel.h#newcode1074 talk/media/base/mediachannel.h:1074: AudioRenderer* renderer) = 0; On 2015/09/14 19:42:02, pthatcher1 wrote: ...
5 years, 3 months ago (2015-09-16 13:01:50 UTC) #14
pthatcher1
lgtm
5 years, 3 months ago (2015-09-17 06:02:26 UTC) #15
pbos-webrtc
lgtm, consider mah nits (I found this confusing while reading) https://codereview.webrtc.org/1327933002/diff/280001/talk/media/webrtc/webrtcvideoengine2.h File talk/media/webrtc/webrtcvideoengine2.h (right): https://codereview.webrtc.org/1327933002/diff/280001/talk/media/webrtc/webrtcvideoengine2.h#newcode164 ...
5 years, 3 months ago (2015-09-17 12:13:53 UTC) #16
the sun
https://codereview.webrtc.org/1327933002/diff/280001/talk/media/webrtc/webrtcvideoengine2.h File talk/media/webrtc/webrtcvideoengine2.h (right): https://codereview.webrtc.org/1327933002/diff/280001/talk/media/webrtc/webrtcvideoengine2.h#newcode164 talk/media/webrtc/webrtcvideoengine2.h:164: const std::vector<VideoCodec>& recv_codecs, On 2015/09/17 12:13:53, pbos-webrtc wrote: > ...
5 years, 3 months ago (2015-09-17 13:37:48 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1327933002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1327933002/300001
5 years, 3 months ago (2015-09-17 13:39:07 UTC) #20
the sun
Committed patchset #17 (id:320001) manually as b071a19019a0a2173cc139c960d6ef6946a1c581 (presubmit successful).
5 years, 3 months ago (2015-09-17 14:43:12 UTC) #21
commit-bot: I haz the power
5 years, 3 months ago (2015-09-17 14:43:14 UTC) #22
Message was sent while issue was closed.
Patchset 17 (id:??) landed as
https://crrev.com/b071a19019a0a2173cc139c960d6ef6946a1c581
Cr-Commit-Position: refs/heads/master@{#9973}

Powered by Google App Engine
This is Rietveld 408576698