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

Unified Diff: webrtc/sdk/android/api/org/webrtc/VideoEncoderFactory.java

Issue 3003873002: Bindings for injectable Java video encoders. (Closed)
Patch Set: Fix tests Created 3 years, 4 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
Index: webrtc/sdk/android/api/org/webrtc/VideoEncoderFactory.java
diff --git a/webrtc/sdk/android/api/org/webrtc/VideoEncoderFactory.java b/webrtc/sdk/android/api/org/webrtc/VideoEncoderFactory.java
index 0ea7df6719540a1da175666dec7cedeef758abcd..4445524a99ca60698ea72f9d2baac3628aff88b4 100644
--- a/webrtc/sdk/android/api/org/webrtc/VideoEncoderFactory.java
+++ b/webrtc/sdk/android/api/org/webrtc/VideoEncoderFactory.java
@@ -15,6 +15,9 @@ public interface VideoEncoderFactory {
/** Creates an encoder for the given video codec. */
public VideoEncoder createEncoder(VideoCodecInfo info);
- /** Enumerates the list of supported video codecs. */
+ /**
+ * Enumerates the list of supported video codecs. This method will only be called once and the
+ * result will be cached.
+ */
public VideoCodecInfo[] getSupportedCodecs();
}

Powered by Google App Engine
This is Rietveld 408576698