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

Unified Diff: talk/app/webrtc/java/jni/androidvideocapturer_jni.h

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/java/jni/androidvideocapturer_jni.h
diff --git a/talk/app/webrtc/java/jni/androidvideocapturer_jni.h b/talk/app/webrtc/java/jni/androidvideocapturer_jni.h
index 1e3ace224afd8407fc59b3e9391eb8583a825fbc..ef3e41bfb71bd5137990c40a43e57b8c5eec41b1 100644
--- a/talk/app/webrtc/java/jni/androidvideocapturer_jni.h
+++ b/talk/app/webrtc/java/jni/androidvideocapturer_jni.h
@@ -64,6 +64,8 @@ class AndroidVideoCapturerJni : public webrtc::AndroidVideoCapturerDelegate {
void OnCapturerStarted(bool success);
void OnIncomingFrame(void* video_frame,
int length,
+ int width,
+ int height,
int rotation,
int64 time_stamp);
protected:
@@ -77,6 +79,8 @@ private:
void OnCapturerStopped_w();
void OnIncomingFrame_w(void* video_frame,
int length,
+ int width,
+ int height,
int rotation,
int64 time_stamp);
void ReturnBuffer_w(int64 time_stamp);

Powered by Google App Engine
This is Rietveld 408576698