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

Unified Diff: talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java

Issue 1178703009: VideoCapturerAndroid: Add function to change capture format while camera is running (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 6 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: talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
diff --git a/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java b/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
index e4141f02adcc3aa48675264c21f2a8dde6022df7..3777230b3e867ae74633d4e6cd52098f93458b33 100644
--- a/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
+++ b/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java
@@ -82,8 +82,8 @@ public class VideoCapturerAndroidTest extends ActivityTestCase {
}
@Override
- public void OnFrameCaptured(byte[] frame, int length, int rotation,
- long timeStamp) {
+ public void OnFrameCaptured(byte[] frame, int length, int width, int height,
+ int rotation, long timeStamp) {
synchronized (frameLock) {
++framesCaptured;
frameSize = length;
« no previous file with comments | « no previous file | talk/app/webrtc/androidvideocapturer.h » ('j') | talk/app/webrtc/java/src/org/webrtc/VideoCapturerAndroid.java » ('J')

Powered by Google App Engine
This is Rietveld 408576698