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

Unified Diff: media/capture/content/android/screen_capture_machine_android.cc

Issue 1917023003: ScreenCapture for Android phase1, part I (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments Created 4 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
« no previous file with comments | « media/capture/content/android/screen_capture_machine_android.h ('k') | media/media.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/content/android/screen_capture_machine_android.cc
diff --git a/media/capture/content/android/screen_capture_machine_android.cc b/media/capture/content/android/screen_capture_machine_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2f76802a37e139105253dd41956f95644c195a08
--- /dev/null
+++ b/media/capture/content/android/screen_capture_machine_android.cc
@@ -0,0 +1,226 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/capture/content/android/screen_capture_machine_android.h"
+
+#include "base/android/context_utils.h"
+#include "base/android/jni_android.h"
+#include "base/android/scoped_java_ref.h"
+#include "jni/ScreenCapture_jni.h"
+#include "media/base/video_capture_types.h"
+#include "media/base/yuv_convert.h"
+#include "media/capture/content/video_capture_oracle.h"
+#include "third_party/libyuv/include/libyuv.h"
+
+using base::android::AttachCurrentThread;
+
+namespace media {
+
+// static
+bool ScreenCaptureMachineAndroid::RegisterScreenCaptureMachine(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
+
+ScreenCaptureMachineAndroid::ScreenCaptureMachineAndroid() {}
+
+ScreenCaptureMachineAndroid::~ScreenCaptureMachineAndroid() {}
+
+// static
+ScopedJavaLocalRef<jobject>
+ScreenCaptureMachineAndroid::createScreenCaptureMachineAndroid(
+ jlong nativeScreenCaptureMachineAndroid) {
+ return (Java_ScreenCapture_createScreenCaptureMachine(
+ AttachCurrentThread(), base::android::GetApplicationContext(),
+ nativeScreenCaptureMachineAndroid));
+}
+
+void ScreenCaptureMachineAndroid::OnRGBAFrameAvailable(JNIEnv* env,
+ jobject obj,
+ jobject buf,
+ jint row_stride,
+ jint left,
+ jint top,
+ jint width,
+ jint height,
+ jlong timestamp) {
+ scoped_refptr<VideoFrame> i420_frame = VideoFrame::CreateFrame(
+ PIXEL_FORMAT_I420, gfx::Size(width, height), gfx::Rect(width, height),
+ gfx::Size(width, height), base::TimeDelta());
+
+ int offset = top * row_stride + left * 4;
mcasas 2016/06/12 10:11:51 const
braveyao 2016/06/13 22:30:32 Done.
+ // ABGR little endian (rgba in memory) to I420.
+ libyuv::ABGRToI420(
+ reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(buf)) + offset,
+ row_stride, i420_frame->visible_data(VideoFrame::kYPlane),
+ i420_frame->stride(VideoFrame::kYPlane),
+ i420_frame->visible_data(VideoFrame::kUPlane),
+ i420_frame->stride(VideoFrame::kUPlane),
+ i420_frame->visible_data(VideoFrame::kVPlane),
+ i420_frame->stride(VideoFrame::kVPlane),
+ i420_frame->visible_rect().width(), i420_frame->visible_rect().height());
+
+ OnIncomingFrameAvailable(i420_frame->visible_data(VideoFrame::kYPlane),
+ i420_frame->stride(VideoFrame::kYPlane),
+ i420_frame->visible_data(VideoFrame::kUPlane),
+ i420_frame->stride(VideoFrame::kUPlane),
+ i420_frame->visible_data(VideoFrame::kVPlane),
+ i420_frame->stride(VideoFrame::kVPlane),
+ i420_frame->visible_rect().width(),
+ i420_frame->visible_rect().height(),
+ static_cast<int64_t>(timestamp));
+}
+
+void ScreenCaptureMachineAndroid::OnI420FrameAvailable(JNIEnv* env,
+ jobject obj,
+ jobject y_buffer,
+ jint y_stride,
+ jobject u_buffer,
+ jobject v_buffer,
+ jint uv_row_stride,
+ jint uv_pixel_stride,
+ jint left,
+ jint top,
+ jint width,
+ jint height,
+ jlong timestamp) {
+ uint8_t* y_src =
mcasas 2016/06/12 10:11:51 uint8_t* const
braveyao 2016/06/13 22:30:32 Done.
mcasas 2016/06/15 15:19:13 I don't see the "Done"s being done. Did you forget
+ reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(y_buffer));
+ CHECK(y_src);
mcasas 2016/06/12 10:11:50 Why CHECK here and take it face-value in l.54?
braveyao 2016/06/13 22:30:32 Done.
+ uint8_t* u_src =
+ reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(u_buffer));
mcasas 2016/06/12 10:11:51 uint8_t* const
braveyao 2016/06/13 22:30:32 can't be const. It will be changed below.
+ CHECK(u_src);
+ uint8_t* v_src =
+ reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(v_buffer));
mcasas 2016/06/12 10:11:51 uint8_t* const
braveyao 2016/06/13 22:30:32 ditto
+ CHECK(v_src);
+
+ // De-interleave the U and V planes into temporary buffers, if needed.
+ int uv_stride = uv_row_stride;
+ std::unique_ptr<uint8_t[]> u_tmp, v_tmp;
+ if (uv_pixel_stride != 1) {
+ // U and V planes are actually interleaved, unpack them here.
+ int uv_plane_len = (int)env->GetDirectBufferCapacity(u_buffer);
+ u_tmp.reset(new uint8_t[(uv_plane_len + 1) / uv_pixel_stride]);
+ v_tmp.reset(new uint8_t[(uv_plane_len + 1) / uv_pixel_stride]);
+ for (int index = 0; index * uv_pixel_stride <= uv_plane_len; index++) {
+ u_tmp[index] = u_src[index * uv_pixel_stride];
+ v_tmp[index] = v_src[index * uv_pixel_stride];
+ }
+ u_src = u_tmp.get();
+ v_src = v_tmp.get();
+ uv_stride /= uv_pixel_stride;
+ }
+
+ int y_offset = top * y_stride + left;
+ int uv_offset = (top / 2) * uv_stride + left / 2;
mcasas 2016/06/15 15:19:13 l.114 and this line should be const.
braveyao 2016/06/15 21:56:36 Done.
+ OnIncomingFrameAvailable(y_src + y_offset, y_stride, u_src + uv_offset,
+ uv_stride, v_src + uv_offset, uv_stride, width,
+ height, static_cast<int64_t>(timestamp));
+}
+
+void ScreenCaptureMachineAndroid::OnActivityResult(JNIEnv* env,
+ jobject obj,
+ jboolean result) {
+ if (!result) {
+ oracle_proxy_->ReportError(FROM_HERE, "The user denied screen capture");
+ return;
+ }
+
+ Java_ScreenCapture_startCapture(env, obj);
+}
+
+void ScreenCaptureMachineAndroid::Start(
+ const scoped_refptr<ThreadSafeCaptureOracle>& oracle_proxy,
+ const VideoCaptureParams& params,
+ const base::Callback<void(bool)> callback) {
+ DCHECK(oracle_proxy.get());
+ oracle_proxy_ = oracle_proxy;
+
+ j_capture_.Reset(
+ createScreenCaptureMachineAndroid(reinterpret_cast<intptr_t>(this)));
+
+ if (j_capture_.obj() == nullptr) {
+ LOG(ERROR) << "Failed to createScreenCaptureAndroid,"
+ " Maybe android version is too low";
mcasas 2016/06/12 10:11:50 DLOG() and, I think this error message is not rea
braveyao 2016/06/13 22:30:32 Done.
+ callback.Run(false);
+ return;
+ }
+
+ DCHECK(params.requested_format.frame_size.GetArea());
+ DCHECK(!(params.requested_format.frame_size.width() % 2));
+ DCHECK(!(params.requested_format.frame_size.height() % 2));
+
+ const jboolean ret = Java_ScreenCapture_startPrompt(
+ AttachCurrentThread(), j_capture_.obj(),
+ params.requested_format.frame_size.width(),
+ params.requested_format.frame_size.height());
+
+ callback.Run(ret);
+}
+
+void ScreenCaptureMachineAndroid::Stop(const base::Closure& callback) {
+ Java_ScreenCapture_stopCapture(AttachCurrentThread(), j_capture_.obj());
+
+ callback.Run();
+}
+
+// ScreenCapture on Android works in passive way and there will be no captured
+// frame when there is no update to the screen. When oracle asks capturing for
+// refresh, the cached last frame will be delivered.
mcasas 2016/06/12 10:11:50 Strange reading. Suggestions: ... in _a_ passive
braveyao 2016/06/13 22:30:32 Done.
+void ScreenCaptureMachineAndroid::MaybeCaptureForRefresh() {
+ if (lastFrame_.get() == nullptr)
+ return;
+
+ OnIncomingFrameAvailable(lastFrame_->visible_data(VideoFrame::kYPlane),
+ lastFrame_->stride(VideoFrame::kYPlane),
+ lastFrame_->visible_data(VideoFrame::kUPlane),
+ lastFrame_->stride(VideoFrame::kUPlane),
+ lastFrame_->visible_data(VideoFrame::kVPlane),
+ lastFrame_->stride(VideoFrame::kVPlane),
+ lastFrame_->visible_rect().width(),
+ lastFrame_->visible_rect().height(),
+ base::TimeTicks::Now().ToInternalValue());
+}
+
+void ScreenCaptureMachineAndroid::OnIncomingFrameAvailable(const uint8_t* y_src,
+ int y_stride,
+ const uint8_t* u_src,
+ int u_stride,
+ const uint8_t* v_src,
+ int v_stride,
+ int width,
+ int height,
+ int64_t timestamp) {
+ const VideoCaptureOracle::Event event = VideoCaptureOracle::kCompositorUpdate;
+ const uint64_t absolute_micro =
+ timestamp / base::Time::kNanosecondsPerMicrosecond;
+ const base::TimeTicks start_time =
+ base::TimeTicks() + base::TimeDelta::FromMicroseconds(absolute_micro);
+ scoped_refptr<VideoFrame> frame;
+ ThreadSafeCaptureOracle::CaptureFrameCallback capture_frame_cb;
+
+ if (!oracle_proxy_->ObserveEventAndDecideCapture(
+ event, gfx::Rect(), start_time, &frame, &capture_frame_cb)) {
+ return;
+ }
+
+ DCHECK(frame->format() == PIXEL_FORMAT_I420 ||
+ frame->format() == PIXEL_FORMAT_YV12);
+
+ libyuv::I420Scale(y_src, y_stride, u_src, u_stride, v_src, v_stride, width,
mcasas 2016/06/12 10:11:51 I don't like that we have a step of libyuv::ABGRTo
braveyao 2016/06/13 22:30:32 Not that wasteful. As to OnRGBAFrameAvailable, I
mcasas 2016/06/15 15:19:13 What do you mean "for most of time" ? Regardless..
braveyao 2016/06/15 21:56:37 Done.
+ height, frame->visible_data(VideoFrame::kYPlane),
+ frame->stride(VideoFrame::kYPlane),
+ frame->visible_data(VideoFrame::kUPlane),
+ frame->stride(VideoFrame::kUPlane),
+ frame->visible_data(VideoFrame::kVPlane),
+ frame->stride(VideoFrame::kVPlane),
+ frame->visible_rect().width(),
+ frame->visible_rect().height(), libyuv::kFilterBilinear);
+
+ // Deliver the populated VideoFrame.
mcasas 2016/06/12 10:11:50 nit: superfluous comment?
braveyao 2016/06/13 22:30:32 Done.
+ capture_frame_cb.Run(frame, start_time, true);
+
+ lastFrame_ = frame;
+}
+
+} // namespace media
« no previous file with comments | « media/capture/content/android/screen_capture_machine_android.h ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698