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

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

Issue 1493913007: VideoCapturerAndroid, handle cvo correctly (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: fixed tests. Cleaned up Created 5 years 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 96def5eae34e3b72cff636cc912bccca9b0eab4f..1c80882ef5cb02c2f27df053c122956722cb6001 100644
--- a/talk/app/webrtc/java/jni/androidvideocapturer_jni.h
+++ b/talk/app/webrtc/java/jni/androidvideocapturer_jni.h
@@ -60,7 +60,7 @@ class AndroidVideoCapturerJni : public webrtc::AndroidVideoCapturerDelegate {
void OnCapturerStarted(bool success);
void OnMemoryBufferFrame(void* video_frame, int length, int width,
int height, int rotation, int64_t timestamp_ns);
- void OnTextureFrame(int width, int height, int64_t timestamp_ns,
+ void OnTextureFrame(int width, int height, int rotation, int64_t timestamp_ns,
nisse-chromium (ooo August 14) 2015/12/08 08:46:34 The rotation has to be one of the values in webrtc
perkj_chrome 2015/12/09 21:00:40 It is the same as OnMemoryBufferFrame and is chec
nisse-chromium (ooo August 14) 2015/12/10 09:04:57 I see.
const NativeHandleImpl& handle);
void OnOutputFormatRequest(int width, int height, int fps);

Powered by Google App Engine
This is Rietveld 408576698