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

Unified Diff: webrtc/api/java/src/org/webrtc/RtpParameters.java

Issue 1834223004: Adding JNI binding for 'active' field in RTP encodings. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 | « webrtc/api/java/jni/peerconnection_jni.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/java/src/org/webrtc/RtpParameters.java
diff --git a/webrtc/api/java/src/org/webrtc/RtpParameters.java b/webrtc/api/java/src/org/webrtc/RtpParameters.java
index 4dcdcc403b33be66ed18cc792b07a61b5e85248a..bd448994e22c1ec7ddd36137bd4afa92c95f50cd 100644
--- a/webrtc/api/java/src/org/webrtc/RtpParameters.java
+++ b/webrtc/api/java/src/org/webrtc/RtpParameters.java
@@ -18,7 +18,10 @@ import java.util.LinkedList;
* http://w3c.github.io/webrtc-pc/#rtcrtpsender-interface.
*/
public class RtpParameters {
- public static class Encoding { public Integer maxBitrateBps; }
+ public static class Encoding {
+ public boolean active = true;
+ public Integer maxBitrateBps;
+ }
public final LinkedList<Encoding> encodings;
« no previous file with comments | « webrtc/api/java/jni/peerconnection_jni.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698