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

Unified Diff: media/video/capture/android/video_capture_device_android.cc

Issue 83793004: Implement IPCs and VideoCapture::Client interfaces for texture capture (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 5744a8bbb Nits. Created 6 years, 11 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: media/video/capture/android/video_capture_device_android.cc
diff --git a/media/video/capture/android/video_capture_device_android.cc b/media/video/capture/android/video_capture_device_android.cc
index 014956267bbe8bd9a767c71a81cf05e8e55f1441..d08dfc84185a8eb06dc3a08d9d55ef584403b23d 100644
--- a/media/video/capture/android/video_capture_device_android.cc
+++ b/media/video/capture/android/video_capture_device_android.cc
@@ -222,9 +222,9 @@ void VideoCaptureDeviceAndroid::OnFrameAvailable(
client_->OnIncomingCapturedFrame(reinterpret_cast<uint8*>(buffer),
length,
- base::TimeTicks::Now(),
+ capture_format_,
rotation,
- capture_format_);
+ base::TimeTicks::Now());
}
env->ReleaseByteArrayElements(data, buffer, JNI_ABORT);

Powered by Google App Engine
This is Rietveld 408576698