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

Unified Diff: webrtc/api/android/java/src/org/webrtc/ScreenCapturerAndroid.java

Issue 2373353002: Android: Remove onOutputFormatRequest from the VideoCapturer interface (Closed)
Patch Set: Created 4 years, 3 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/api/android/java/src/org/webrtc/ScreenCapturerAndroid.java
diff --git a/webrtc/api/android/java/src/org/webrtc/ScreenCapturerAndroid.java b/webrtc/api/android/java/src/org/webrtc/ScreenCapturerAndroid.java
index bd5f303aab42966c242027bc7e2836d87e1bcd08..9b86fe3f5691933fe03c31e6caacbcbe465aa1e1 100644
--- a/webrtc/api/android/java/src/org/webrtc/ScreenCapturerAndroid.java
+++ b/webrtc/api/android/java/src/org/webrtc/ScreenCapturerAndroid.java
@@ -149,18 +149,6 @@ public class ScreenCapturerAndroid implements
isDisposed = true;
}
- @Override
- public synchronized void onOutputFormatRequest(
- final int width, final int height, final int framerate) {
- checkNotDisposed();
- surfaceTextureHelper.getHandler().post(new Runnable() {
- @Override
- public void run() {
- capturerObserver.onOutputFormatRequest(width, height, framerate);
- }
- });
- }
-
/**
* Changes output video format. This method can be used to scale the output
* video, or to change orientation when the captured screen is rotated for example.
« no previous file with comments | « webrtc/api/android/java/src/org/webrtc/CameraCapturer.java ('k') | webrtc/api/android/java/src/org/webrtc/VideoCapturer.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698