OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "media/capture/content/android/screen_capture_machine_android.h" | |
6 | |
7 #include "base/android/context_utils.h" | |
8 #include "base/android/jni_android.h" | |
9 #include "base/android/scoped_java_ref.h" | |
10 #include "jni/ScreenCapture_jni.h" | |
11 #include "media/base/video_capture_types.h" | |
12 #include "media/base/yuv_convert.h" | |
13 #include "media/capture/content/video_capture_oracle.h" | |
14 #include "third_party/libyuv/include/libyuv.h" | |
15 | |
16 using base::android::AttachCurrentThread; | |
17 | |
18 namespace media { | |
19 | |
20 // static | |
21 bool ScreenCaptureMachineAndroid::RegisterScreenCaptureMachine(JNIEnv* env) { | |
22 return RegisterNativesImpl(env); | |
23 } | |
24 | |
25 ScreenCaptureMachineAndroid::ScreenCaptureMachineAndroid() {} | |
26 | |
27 ScreenCaptureMachineAndroid::~ScreenCaptureMachineAndroid() {} | |
28 | |
29 // static | |
30 ScopedJavaLocalRef<jobject> | |
31 ScreenCaptureMachineAndroid::createScreenCaptureMachineAndroid( | |
32 jlong nativeScreenCaptureMachineAndroid) { | |
33 return (Java_ScreenCapture_createScreenCaptureMachine( | |
34 AttachCurrentThread(), base::android::GetApplicationContext(), | |
35 nativeScreenCaptureMachineAndroid)); | |
36 } | |
37 | |
38 void ScreenCaptureMachineAndroid::OnRGBAFrameAvailable(JNIEnv* env, | |
39 jobject obj, | |
40 jobject buf, | |
41 jint width, | |
42 jint height, | |
43 jint rowStride, | |
44 jlong timestamp) { | |
45 scoped_refptr<VideoFrame> i420_frame = VideoFrame::CreateFrame( | |
46 PIXEL_FORMAT_I420, gfx::Size(width, height), gfx::Rect(width, height), | |
47 gfx::Size(width, height), base::TimeDelta()); | |
48 | |
49 // ABGR little endian (rgba in memory) to I420. | |
50 libyuv::ABGRToI420( | |
51 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(buf)), rowStride, | |
52 i420_frame->visible_data(VideoFrame::kYPlane), | |
53 i420_frame->stride(VideoFrame::kYPlane), | |
54 i420_frame->visible_data(VideoFrame::kUPlane), | |
55 i420_frame->stride(VideoFrame::kUPlane), | |
56 i420_frame->visible_data(VideoFrame::kVPlane), | |
57 i420_frame->stride(VideoFrame::kVPlane), | |
58 i420_frame->visible_rect().width(), i420_frame->visible_rect().height()); | |
59 | |
60 OnIncomingFrameAvailable(i420_frame->visible_data(VideoFrame::kYPlane), | |
61 i420_frame->stride(VideoFrame::kYPlane), | |
62 i420_frame->visible_data(VideoFrame::kUPlane), | |
63 i420_frame->stride(VideoFrame::kUPlane), | |
64 i420_frame->visible_data(VideoFrame::kVPlane), | |
65 i420_frame->stride(VideoFrame::kVPlane), | |
66 i420_frame->visible_rect().width(), | |
67 i420_frame->visible_rect().height(), | |
68 static_cast<int64_t>(timestamp)); | |
69 } | |
70 | |
71 void ScreenCaptureMachineAndroid::OnI420FrameAvailable(JNIEnv* env, | |
72 jobject obj, | |
73 jobject y_buffer, | |
74 jint y_stride, | |
75 jobject u_buffer, | |
76 jint u_stride, | |
77 jobject v_buffer, | |
78 jint v_stride, | |
79 jint width, | |
80 jint height, | |
81 jlong timestamp) { | |
82 uint8* y_src = | |
83 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(y_buffer)); | |
84 CHECK(y_src); | |
85 uint8* u_src = | |
86 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(u_buffer)); | |
87 CHECK(u_src); | |
88 uint8* v_src = | |
mcasas
2016/05/25 17:42:58
|y_src|, |u_src| and |v_src| should be const, and
braveyao
2016/05/25 19:00:15
Will do.
braveyao
2016/05/26 23:37:28
Done.
| |
89 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(v_buffer)); | |
90 CHECK(v_src); | |
91 | |
92 // U and V planes have |pixelStride| = 2, unpack them here. | |
93 int uv_plane_len = (int)env->GetDirectBufferCapacity(u_buffer); | |
94 for (int index = 0; index * 2 <= uv_plane_len; index++) { | |
95 u_src[index] = u_src[index * 2]; | |
96 v_src[index] = v_src[index * 2]; | |
97 } | |
98 OnIncomingFrameAvailable(y_src, y_stride, u_src, u_stride, v_src, v_stride, | |
99 width, height, static_cast<int64_t>(timestamp)); | |
100 } | |
101 | |
102 void ScreenCaptureMachineAndroid::OnActivityResult(JNIEnv* env, | |
103 jobject obj, | |
104 jboolean result) { | |
105 if (!result) { | |
106 oracle_proxy_->ReportError(FROM_HERE, "The user denied screen capture"); | |
107 return; | |
108 } | |
109 | |
110 Java_ScreenCapture_startCapture(env, obj); | |
111 } | |
112 | |
113 void ScreenCaptureMachineAndroid::Start( | |
114 const scoped_refptr<ThreadSafeCaptureOracle>& oracle_proxy, | |
115 const VideoCaptureParams& params, | |
116 const base::Callback<void(bool)> callback) { | |
117 DCHECK(oracle_proxy.get()); | |
118 oracle_proxy_ = oracle_proxy; | |
119 | |
120 j_capture_.Reset( | |
121 createScreenCaptureMachineAndroid(reinterpret_cast<intptr_t>(this))); | |
122 | |
123 if (j_capture_.obj() == nullptr) { | |
124 LOG(ERROR) << "Failed to createScreenCaptureAndroid," | |
125 " Maybe android version is too low"; | |
126 callback.Run(false); | |
127 return; | |
128 } | |
129 | |
130 DCHECK(params.requested_format.frame_size.GetArea()); | |
131 DCHECK(!(params.requested_format.frame_size.width() % 2)); | |
132 DCHECK(!(params.requested_format.frame_size.height() % 2)); | |
133 | |
134 const jboolean ret = Java_ScreenCapture_startPrompt( | |
135 AttachCurrentThread(), j_capture_.obj(), | |
136 params.requested_format.frame_size.width(), | |
137 params.requested_format.frame_size.height()); | |
138 | |
139 callback.Run(ret); | |
140 } | |
141 | |
142 void ScreenCaptureMachineAndroid::Stop(const base::Closure& callback) { | |
143 Java_ScreenCapture_stopCapture(AttachCurrentThread(), j_capture_.obj()); | |
144 | |
145 callback.Run(); | |
146 } | |
147 | |
148 // ScreenCapture on Android works in passive way and there will be no captured | |
149 // frame when there is no update to the screen. When oracle asks capturing for | |
150 // refresh, the cached last frame will be delivered. | |
151 void ScreenCaptureMachineAndroid::MaybeCaptureForRefresh() { | |
152 if (lastFrame_.get() == nullptr) | |
153 return; | |
154 | |
155 OnIncomingFrameAvailable(lastFrame_->visible_data(VideoFrame::kYPlane), | |
156 lastFrame_->stride(VideoFrame::kYPlane), | |
157 lastFrame_->visible_data(VideoFrame::kUPlane), | |
158 lastFrame_->stride(VideoFrame::kUPlane), | |
159 lastFrame_->visible_data(VideoFrame::kVPlane), | |
160 lastFrame_->stride(VideoFrame::kVPlane), | |
161 lastFrame_->visible_rect().width(), | |
162 lastFrame_->visible_rect().height(), | |
163 base::TimeTicks::Now().ToInternalValue()); | |
164 } | |
165 | |
166 void ScreenCaptureMachineAndroid::OnIncomingFrameAvailable(const uint8_t* y_src, | |
167 int y_stride, | |
168 const uint8_t* u_src, | |
169 int u_stride, | |
170 const uint8_t* v_src, | |
171 int v_stride, | |
172 int width, | |
173 int height, | |
174 int64_t timestamp) { | |
175 const VideoCaptureOracle::Event event = VideoCaptureOracle::kCompositorUpdate; | |
176 const uint64_t absolute_micro = | |
177 timestamp / base::Time::kNanosecondsPerMicrosecond; | |
178 const base::TimeTicks start_time = | |
179 base::TimeTicks::FromInternalValue(absolute_micro); | |
180 scoped_refptr<VideoFrame> frame; | |
181 ThreadSafeCaptureOracle::CaptureFrameCallback capture_frame_cb; | |
182 | |
183 if (!oracle_proxy_->ObserveEventAndDecideCapture( | |
184 event, gfx::Rect(), start_time, &frame, &capture_frame_cb)) { | |
185 return; | |
186 } | |
187 | |
188 DCHECK(frame->format() == PIXEL_FORMAT_I420 || | |
189 frame->format() == PIXEL_FORMAT_YV12); | |
190 | |
191 libyuv::I420Scale(y_src, y_stride, u_src, u_stride, v_src, v_stride, width, | |
192 height, frame->visible_data(VideoFrame::kYPlane), | |
193 frame->stride(VideoFrame::kYPlane), | |
194 frame->visible_data(VideoFrame::kUPlane), | |
195 frame->stride(VideoFrame::kUPlane), | |
196 frame->visible_data(VideoFrame::kVPlane), | |
197 frame->stride(VideoFrame::kVPlane), | |
198 frame->visible_rect().width(), | |
199 frame->visible_rect().height(), libyuv::kFilterBilinear); | |
200 | |
201 // Deliver the populated VideoFrame. | |
202 capture_frame_cb.Run(frame, start_time, true); | |
203 | |
204 lastFrame_ = frame; | |
205 } | |
206 | |
207 } // namespace media | |
OLD | NEW |