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 row_stride, | |
42 jint left, | |
43 jint top, | |
44 jint cropWidth, | |
45 jint cropHeight, | |
46 jlong timestamp) { | |
47 scoped_refptr<VideoFrame> i420_frame = VideoFrame::CreateFrame( | |
48 PIXEL_FORMAT_I420, gfx::Size(cropWidth, cropHeight), | |
49 gfx::Rect(cropWidth, cropHeight), gfx::Size(cropWidth, cropHeight), | |
50 base::TimeDelta()); | |
51 | |
52 int offset = top * row_stride + left; | |
miu
2016/06/08 21:06:50
offset is in number of bytes, so this should be:
braveyao
2016/06/08 22:49:50
Done.
Wrongly chose a left 20 in the test... :(
Sh
| |
53 // ABGR little endian (rgba in memory) to I420. | |
54 libyuv::ABGRToI420( | |
55 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(buf)) + offset, | |
56 row_stride, i420_frame->visible_data(VideoFrame::kYPlane), | |
57 i420_frame->stride(VideoFrame::kYPlane), | |
58 i420_frame->visible_data(VideoFrame::kUPlane), | |
59 i420_frame->stride(VideoFrame::kUPlane), | |
60 i420_frame->visible_data(VideoFrame::kVPlane), | |
61 i420_frame->stride(VideoFrame::kVPlane), | |
62 i420_frame->visible_rect().width(), i420_frame->visible_rect().height()); | |
63 | |
64 OnIncomingFrameAvailable(i420_frame->visible_data(VideoFrame::kYPlane), | |
65 i420_frame->stride(VideoFrame::kYPlane), | |
66 i420_frame->visible_data(VideoFrame::kUPlane), | |
67 i420_frame->stride(VideoFrame::kUPlane), | |
68 i420_frame->visible_data(VideoFrame::kVPlane), | |
69 i420_frame->stride(VideoFrame::kVPlane), | |
70 i420_frame->visible_rect().width(), | |
71 i420_frame->visible_rect().height(), | |
72 static_cast<int64_t>(timestamp)); | |
73 } | |
74 | |
75 void ScreenCaptureMachineAndroid::OnI420FrameAvailable(JNIEnv* env, | |
76 jobject obj, | |
77 jobject y_buffer, | |
78 jint y_stride, | |
79 jobject u_buffer, | |
80 jobject v_buffer, | |
81 jint uv_row_stride, | |
82 jint uv_pixel_stride, | |
83 jint left, | |
84 jint top, | |
85 jint cropWidth, | |
86 jint cropHeight, | |
87 jlong timestamp) { | |
88 uint8_t* y_src = | |
89 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(y_buffer)); | |
90 CHECK(y_src); | |
91 uint8_t* u_src = | |
92 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(u_buffer)); | |
93 CHECK(u_src); | |
94 uint8_t* v_src = | |
95 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(v_buffer)); | |
96 CHECK(v_src); | |
97 | |
98 // De-interleave the U and V planes into temporary buffers, if needed. | |
99 int uv_stride = uv_row_stride; | |
100 std::unique_ptr<uint8_t[]> u_tmp, v_tmp; | |
101 if (uv_pixel_stride != 1) { | |
102 // U and V planes are actually interleaved, unpack them here. | |
103 CHECK_EQ(uv_pixel_stride, 2); | |
miu
2016/06/08 21:06:50
Now that I look at this code more closely, it turn
braveyao
2016/06/08 22:49:50
Done.
| |
104 int uv_plane_len = (int)env->GetDirectBufferCapacity(u_buffer); | |
105 u_tmp.reset(new uint8_t[(uv_plane_len + 1) / 2]); | |
miu
2016/06/08 21:06:50
nit: For both of these, instead of dividing by 2,
braveyao
2016/06/08 22:49:50
Done.
| |
106 v_tmp.reset(new uint8_t[(uv_plane_len + 1) / 2]); | |
107 for (int index = 0; index * uv_pixel_stride <= uv_plane_len; index++) { | |
108 u_tmp[index] = u_src[index * uv_pixel_stride]; | |
109 v_tmp[index] = v_src[index * uv_pixel_stride]; | |
110 } | |
111 u_src = u_tmp.get(); | |
112 v_src = v_tmp.get(); | |
113 uv_stride /= uv_pixel_stride; | |
114 } | |
115 | |
116 int y_offset = top * y_stride + left; | |
117 int uv_offset = (top / 2) * uv_stride + left / 2; | |
118 OnIncomingFrameAvailable(y_src + y_offset, y_stride, u_src + uv_offset, | |
119 uv_stride, v_src + uv_offset, uv_stride, cropWidth, | |
120 cropHeight, static_cast<int64_t>(timestamp)); | |
121 } | |
122 | |
123 void ScreenCaptureMachineAndroid::OnActivityResult(JNIEnv* env, | |
124 jobject obj, | |
125 jboolean result) { | |
126 if (!result) { | |
127 oracle_proxy_->ReportError(FROM_HERE, "The user denied screen capture"); | |
128 return; | |
129 } | |
130 | |
131 Java_ScreenCapture_startCapture(env, obj); | |
132 } | |
133 | |
134 void ScreenCaptureMachineAndroid::Start( | |
135 const scoped_refptr<ThreadSafeCaptureOracle>& oracle_proxy, | |
136 const VideoCaptureParams& params, | |
137 const base::Callback<void(bool)> callback) { | |
138 DCHECK(oracle_proxy.get()); | |
139 oracle_proxy_ = oracle_proxy; | |
140 | |
141 j_capture_.Reset( | |
142 createScreenCaptureMachineAndroid(reinterpret_cast<intptr_t>(this))); | |
143 | |
144 if (j_capture_.obj() == nullptr) { | |
145 LOG(ERROR) << "Failed to createScreenCaptureAndroid," | |
146 " Maybe android version is too low"; | |
147 callback.Run(false); | |
148 return; | |
149 } | |
150 | |
151 DCHECK(params.requested_format.frame_size.GetArea()); | |
152 DCHECK(!(params.requested_format.frame_size.width() % 2)); | |
153 DCHECK(!(params.requested_format.frame_size.height() % 2)); | |
154 | |
155 const jboolean ret = Java_ScreenCapture_startPrompt( | |
156 AttachCurrentThread(), j_capture_.obj(), | |
157 params.requested_format.frame_size.width(), | |
158 params.requested_format.frame_size.height()); | |
159 | |
160 callback.Run(ret); | |
161 } | |
162 | |
163 void ScreenCaptureMachineAndroid::Stop(const base::Closure& callback) { | |
164 Java_ScreenCapture_stopCapture(AttachCurrentThread(), j_capture_.obj()); | |
165 | |
166 callback.Run(); | |
167 } | |
168 | |
169 // ScreenCapture on Android works in passive way and there will be no captured | |
170 // frame when there is no update to the screen. When oracle asks capturing for | |
171 // refresh, the cached last frame will be delivered. | |
172 void ScreenCaptureMachineAndroid::MaybeCaptureForRefresh() { | |
173 if (lastFrame_.get() == nullptr) | |
174 return; | |
175 | |
176 OnIncomingFrameAvailable(lastFrame_->visible_data(VideoFrame::kYPlane), | |
177 lastFrame_->stride(VideoFrame::kYPlane), | |
178 lastFrame_->visible_data(VideoFrame::kUPlane), | |
179 lastFrame_->stride(VideoFrame::kUPlane), | |
180 lastFrame_->visible_data(VideoFrame::kVPlane), | |
181 lastFrame_->stride(VideoFrame::kVPlane), | |
182 lastFrame_->visible_rect().width(), | |
183 lastFrame_->visible_rect().height(), | |
184 base::TimeTicks::Now().ToInternalValue()); | |
185 } | |
186 | |
187 void ScreenCaptureMachineAndroid::OnIncomingFrameAvailable(const uint8_t* y_src, | |
188 int y_stride, | |
189 const uint8_t* u_src, | |
190 int u_stride, | |
191 const uint8_t* v_src, | |
192 int v_stride, | |
193 int width, | |
194 int height, | |
195 int64_t timestamp) { | |
196 const VideoCaptureOracle::Event event = VideoCaptureOracle::kCompositorUpdate; | |
197 const uint64_t absolute_micro = | |
198 timestamp / base::Time::kNanosecondsPerMicrosecond; | |
199 const base::TimeTicks start_time = | |
200 base::TimeTicks() + base::TimeDelta::FromMicroseconds(absolute_micro); | |
201 scoped_refptr<VideoFrame> frame; | |
202 ThreadSafeCaptureOracle::CaptureFrameCallback capture_frame_cb; | |
203 | |
204 if (!oracle_proxy_->ObserveEventAndDecideCapture( | |
205 event, gfx::Rect(), start_time, &frame, &capture_frame_cb)) { | |
206 return; | |
207 } | |
208 | |
209 DCHECK(frame->format() == PIXEL_FORMAT_I420 || | |
210 frame->format() == PIXEL_FORMAT_YV12); | |
211 | |
212 libyuv::I420Scale(y_src, y_stride, u_src, u_stride, v_src, v_stride, width, | |
213 height, frame->visible_data(VideoFrame::kYPlane), | |
214 frame->stride(VideoFrame::kYPlane), | |
215 frame->visible_data(VideoFrame::kUPlane), | |
216 frame->stride(VideoFrame::kUPlane), | |
217 frame->visible_data(VideoFrame::kVPlane), | |
218 frame->stride(VideoFrame::kVPlane), | |
219 frame->visible_rect().width(), | |
220 frame->visible_rect().height(), libyuv::kFilterBilinear); | |
221 | |
222 // Deliver the populated VideoFrame. | |
223 capture_frame_cb.Run(frame, start_time, true); | |
224 | |
225 lastFrame_ = frame; | |
226 } | |
227 | |
228 } // namespace media | |
OLD | NEW |