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

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int>

Created:
4 years, 9 months ago by skvlad
Modified:
3 years, 9 months ago
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, stefan-webrtc, tterriberry_mozilla.com, qiang.lu, niklas.enbom, peah-webrtc, 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

Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> instead of special constants (0 or -1). BUG=

Patch Set 1 #

Total comments: 10

Patch Set 2 : Code review feedback #

Total comments: 13

Patch Set 3 : More code review feedback #

Total comments: 13

Patch Set 4 : Code review feedback #

Unified diffs Side-by-side diffs Delta from patch set Stats (+340 lines, -240 lines) Patch
M webrtc/api/java/jni/peerconnection_jni.cc View 1 2 3 2 chunks +4 lines, -6 lines 0 comments Download
M webrtc/api/mediacontroller.cc View 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/api/rtpparameters.h View 1 2 3 2 chunks +2 lines, -1 line 0 comments Download
M webrtc/api/webrtcsdp.cc View 1 2 3 2 chunks +12 lines, -6 lines 0 comments Download
M webrtc/api/webrtcsdp_unittest.cc View 1 2 3 4 chunks +6 lines, -6 lines 0 comments Download
M webrtc/api/webrtcsession_unittest.cc View 1 2 3 1 chunk +6 lines, -6 lines 0 comments Download
M webrtc/base/optional.h View 1 2 3 2 chunks +13 lines, -1 line 0 comments Download
M webrtc/base/optional_unittest.cc View 1 2 3 4 chunks +29 lines, -0 lines 0 comments Download
M webrtc/call.h View 1 2 3 2 chunks +2 lines, -1 line 0 comments Download
M webrtc/call/call.cc View 1 2 3 5 chunks +21 lines, -7 lines 0 comments Download
M webrtc/media/base/fakemediaengine.h View 1 2 3 11 chunks +15 lines, -15 lines 0 comments Download
M webrtc/media/base/mediachannel.h View 1 2 3 4 chunks +9 lines, -8 lines 0 comments Download
M webrtc/media/base/rtpdataengine.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/base/rtpdataengine.cc View 1 2 3 2 chunks +5 lines, -4 lines 0 comments Download
M webrtc/media/base/rtpdataengine_unittest.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/base/videoengine_unittest.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/media/engine/simulcast.h View 2 chunks +8 lines, -6 lines 0 comments Download
M webrtc/media/engine/simulcast.cc View 2 chunks +6 lines, -4 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.h View 1 2 3 4 chunks +8 lines, -6 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.cc View 1 2 3 11 chunks +27 lines, -23 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2_unittest.cc View 1 2 3 10 chunks +53 lines, -39 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.h View 1 2 3 3 chunks +3 lines, -4 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.cc View 1 2 3 5 chunks +9 lines, -11 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine_unittest.cc View 1 2 3 6 chunks +19 lines, -19 lines 0 comments Download
M webrtc/pc/channel.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M webrtc/pc/channel_unittest.cc View 1 2 3 5 chunks +20 lines, -16 lines 0 comments Download
M webrtc/pc/mediasession.h View 4 chunks +16 lines, -18 lines 0 comments Download
M webrtc/pc/mediasession_unittest.cc View 13 chunks +32 lines, -23 lines 0 comments Download
M webrtc/video/screenshare_loopback.cc View 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/video/video_loopback.cc View 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/video/video_send_stream_tests.cc View 1 2 3 2 chunks +4 lines, -2 lines 0 comments Download

Messages

Total messages: 24 (7 generated)
skvlad
This change updates most of the code related to bandwidth limits to use rtc::Optional<int> to ...
4 years, 9 months ago (2016-03-17 20:09:48 UTC) #2
pthatcher1
https://codereview.webrtc.org/1813763005/diff/1/webrtc/api/mediacontroller.cc File webrtc/api/mediacontroller.cc (right): https://codereview.webrtc.org/1813763005/diff/1/webrtc/api/mediacontroller.cc#newcode68 webrtc/api/mediacontroller.cc:68: } Can this be unset? If not, why have ...
4 years, 9 months ago (2016-03-17 21:51:29 UTC) #3
skvlad
Updated with code review feedback. https://codereview.webrtc.org/1813763005/diff/1/webrtc/api/mediacontroller.cc File webrtc/api/mediacontroller.cc (right): https://codereview.webrtc.org/1813763005/diff/1/webrtc/api/mediacontroller.cc#newcode68 webrtc/api/mediacontroller.cc:68: } On 2016/03/17 21:51:28, ...
4 years, 9 months ago (2016-03-18 00:49:17 UTC) #4
stefan-webrtc
Would it be an option to make this parameter required instead of Optional, with a ...
4 years, 9 months ago (2016-03-18 08:28:40 UTC) #5
pthatcher1
https://codereview.webrtc.org/1813763005/diff/20001/webrtc/call/call.cc File webrtc/call/call.cc (right): https://codereview.webrtc.org/1813763005/diff/20001/webrtc/call/call.cc#newcode560 webrtc/call/call.cc:560: bitrate_config.max_bitrate_bps.value_or(kBitrateUnlimited); On 2016/03/18 08:28:40, stefan-webrtc (holmer) wrote: > Can't ...
4 years, 9 months ago (2016-03-18 16:45:16 UTC) #6
pthatcher1
On 2016/03/18 08:28:40, stefan-webrtc (holmer) wrote: > Would it be an option to make this ...
4 years, 9 months ago (2016-03-18 16:49:16 UTC) #7
skvlad
On 2016/03/18 16:49:16, pthatcher1 wrote: > On 2016/03/18 08:28:40, stefan-webrtc (holmer) wrote: > > Would ...
4 years, 9 months ago (2016-03-18 18:01:43 UTC) #8
skvlad
https://codereview.webrtc.org/1813763005/diff/20001/webrtc/api/webrtcsdp.cc File webrtc/api/webrtcsdp.cc (right): https://codereview.webrtc.org/1813763005/diff/20001/webrtc/api/webrtcsdp.cc#newcode2552 webrtc/api/webrtcsdp.cc:2552: int b = 0; On 2016/03/18 08:28:40, stefan-webrtc (holmer) ...
4 years, 9 months ago (2016-03-18 18:01:52 UTC) #9
pthatcher1
lgtm https://codereview.webrtc.org/1813763005/diff/20001/webrtc/media/engine/webrtcvideoengine2.h File webrtc/media/engine/webrtcvideoengine2.h (right): https://codereview.webrtc.org/1813763005/diff/20001/webrtc/media/engine/webrtcvideoengine2.h#newcode194 webrtc/media/engine/webrtcvideoengine2.h:194: rtc::Optional<rtc::Optional<int>> max_bandwidth_bps; On 2016/03/18 18:01:52, skvlad wrote: > ...
4 years, 9 months ago (2016-03-21 17:41:13 UTC) #10
Taylor Brandstetter
A question for Peter: Has the W3C working group decided what calling setParameters with a ...
4 years, 8 months ago (2016-03-29 02:26:58 UTC) #11
the sun
https://codereview.webrtc.org/1813763005/diff/40001/webrtc/media/engine/webrtcvoiceengine.cc File webrtc/media/engine/webrtcvoiceengine.cc (right): https://codereview.webrtc.org/1813763005/diff/40001/webrtc/media/engine/webrtcvoiceengine.cc#newcode2372 webrtc/media/engine/webrtcvoiceengine.cc:2372: LOG(LS_INFO) << "WebRtcVoiceMediaChannel::SetMaxSendBandwidth."; Please add: RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
4 years, 8 months ago (2016-03-29 11:20:34 UTC) #13
kwiberg-webrtc
https://codereview.webrtc.org/1813763005/diff/40001/webrtc/base/optional.h File webrtc/base/optional.h (right): https://codereview.webrtc.org/1813763005/diff/40001/webrtc/base/optional.h#newcode140 webrtc/base/optional.h:140: std::ostream& operator<<(std::ostream& stream, rtc::Optional<T> value) { Second argument should ...
4 years, 8 months ago (2016-03-29 11:30:46 UTC) #15
pthatcher1
I don't know what else a null/undefined max could be other than unconstrained. But we ...
4 years, 8 months ago (2016-03-29 22:06:01 UTC) #16
skvlad
Addressed some code review feedback. A question to all of the reviewers: what should be ...
4 years, 8 months ago (2016-03-30 19:40:44 UTC) #17
skvlad
Addressed some code review feedback. A question to all of the reviewers: what should be ...
4 years, 8 months ago (2016-03-30 19:40:45 UTC) #18
pthatcher1
Unless the spec says otherwise, I think we should treat "b=AS:0" would be the same ...
4 years, 8 months ago (2016-03-30 21:19:54 UTC) #21
Taylor Brandstetter
4 years, 6 months ago (2016-06-22 18:25:05 UTC) #22
lgtm

Powered by Google App Engine
This is Rietveld 408576698