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

Unified Diff: webrtc/api/java/jni/peerconnection_jni.cc

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review feedback 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/api/mediacontroller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/java/jni/peerconnection_jni.cc
diff --git a/webrtc/api/java/jni/peerconnection_jni.cc b/webrtc/api/java/jni/peerconnection_jni.cc
index cf3ddebde96c49b22b736a38b38e949a9175d6c2..9f64d01686b2795d2f0bafe51cc3eb55beb59b62 100644
--- a/webrtc/api/java/jni/peerconnection_jni.cc
+++ b/webrtc/api/java/jni/peerconnection_jni.cc
@@ -2046,9 +2046,7 @@ static bool JavaEncodingToJsepRtpEncodingParameters(
if (!IsNull(jni, j_bitrate)) {
int bitrate_value = jni->CallIntMethod(j_bitrate, int_value_id);
CHECK_EXCEPTION(jni) << "error during CallIntMethod";
- encoding.max_bitrate_bps = bitrate_value;
- } else {
- encoding.max_bitrate_bps = kBitrateUnlimited;
+ encoding.max_bitrate_bps = rtc::Optional<int>(bitrate_value);
}
encodings->push_back(encoding);
}
@@ -2106,9 +2104,9 @@ JOW(jobject, RtpSender_nativeGetParameters)
CHECK_EXCEPTION(jni) << "error during NewObject";
jni->SetBooleanField(j_encoding_parameters, active_id, encoding.active);
CHECK_EXCEPTION(jni) << "error during SetBooleanField";
- if (encoding.max_bitrate_bps > 0) {
- jobject j_bitrate_value =
- jni->NewObject(integer_class, integer_ctor, encoding.max_bitrate_bps);
+ if (encoding.max_bitrate_bps) {
+ jobject j_bitrate_value = jni->NewObject(integer_class, integer_ctor,
+ *encoding.max_bitrate_bps);
CHECK_EXCEPTION(jni) << "error during NewObject";
jni->SetObjectField(j_encoding_parameters, bitrate_id, j_bitrate_value);
CHECK_EXCEPTION(jni) << "error during SetObjectField";
« no previous file with comments | « no previous file | webrtc/api/mediacontroller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698