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 row_stride, | |
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)), row_stride, | |
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 jobject v_buffer, | |
77 jint uv_row_stride, | |
78 jint uv_pixel_stride, | |
79 jint width, | |
80 jint height, | |
81 jlong timestamp) { | |
82 uint8_t* const y_src = | |
83 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(y_buffer)); | |
84 CHECK(y_src); | |
85 uint8_t* const u_src = | |
86 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(u_buffer)); | |
87 CHECK(u_src); | |
88 uint8_t* const v_src = | |
89 reinterpret_cast<uint8_t*>(env->GetDirectBufferAddress(v_buffer)); | |
90 CHECK(v_src); | |
91 | |
92 int uv_stride = uv_row_stride; | |
93 if (uv_pixel_stride != 1) { | |
94 // U and V planes have |pixelStride| = 2, unpack them here. | |
95 int uv_plane_len = (int)env->GetDirectBufferCapacity(u_buffer); | |
miu
2016/06/02 22:33:51
Please add: CHECK_EQ(uv_pixel_stride, 2); (just i
braveyao
2016/06/08 20:39:33
Done.
| |
96 for (int index = 0; index * uv_pixel_stride <= uv_plane_len; index++) { | |
97 u_src[index] = u_src[index * uv_pixel_stride]; | |
98 v_src[index] = v_src[index * uv_pixel_stride]; | |
99 } | |
100 uv_stride /= uv_pixel_stride; | |
101 } | |
102 | |
103 OnIncomingFrameAvailable(y_src, y_stride, u_src, uv_stride, v_src, uv_stride, | |
104 width, height, static_cast<int64_t>(timestamp)); | |
105 } | |
106 | |
107 void ScreenCaptureMachineAndroid::OnActivityResult(JNIEnv* env, | |
108 jobject obj, | |
109 jboolean result) { | |
110 if (!result) { | |
111 oracle_proxy_->ReportError(FROM_HERE, "The user denied screen capture"); | |
112 return; | |
113 } | |
114 | |
115 Java_ScreenCapture_startCapture(env, obj); | |
116 } | |
117 | |
118 void ScreenCaptureMachineAndroid::Start( | |
119 const scoped_refptr<ThreadSafeCaptureOracle>& oracle_proxy, | |
120 const VideoCaptureParams& params, | |
121 const base::Callback<void(bool)> callback) { | |
122 DCHECK(oracle_proxy.get()); | |
123 oracle_proxy_ = oracle_proxy; | |
124 | |
125 j_capture_.Reset( | |
126 createScreenCaptureMachineAndroid(reinterpret_cast<intptr_t>(this))); | |
127 | |
128 if (j_capture_.obj() == nullptr) { | |
129 LOG(ERROR) << "Failed to createScreenCaptureAndroid," | |
130 " Maybe android version is too low"; | |
131 callback.Run(false); | |
132 return; | |
133 } | |
134 | |
135 DCHECK(params.requested_format.frame_size.GetArea()); | |
136 DCHECK(!(params.requested_format.frame_size.width() % 2)); | |
137 DCHECK(!(params.requested_format.frame_size.height() % 2)); | |
138 | |
139 const jboolean ret = Java_ScreenCapture_startPrompt( | |
140 AttachCurrentThread(), j_capture_.obj(), | |
141 params.requested_format.frame_size.width(), | |
142 params.requested_format.frame_size.height()); | |
143 | |
144 callback.Run(ret); | |
145 } | |
146 | |
147 void ScreenCaptureMachineAndroid::Stop(const base::Closure& callback) { | |
148 Java_ScreenCapture_stopCapture(AttachCurrentThread(), j_capture_.obj()); | |
149 | |
150 callback.Run(); | |
151 } | |
152 | |
153 // ScreenCapture on Android works in passive way and there will be no captured | |
154 // frame when there is no update to the screen. When oracle asks capturing for | |
155 // refresh, the cached last frame will be delivered. | |
156 void ScreenCaptureMachineAndroid::MaybeCaptureForRefresh() { | |
157 if (lastFrame_.get() == nullptr) | |
158 return; | |
159 | |
160 OnIncomingFrameAvailable(lastFrame_->visible_data(VideoFrame::kYPlane), | |
161 lastFrame_->stride(VideoFrame::kYPlane), | |
162 lastFrame_->visible_data(VideoFrame::kUPlane), | |
163 lastFrame_->stride(VideoFrame::kUPlane), | |
164 lastFrame_->visible_data(VideoFrame::kVPlane), | |
165 lastFrame_->stride(VideoFrame::kVPlane), | |
166 lastFrame_->visible_rect().width(), | |
167 lastFrame_->visible_rect().height(), | |
168 base::TimeTicks::Now().ToInternalValue()); | |
169 } | |
170 | |
171 void ScreenCaptureMachineAndroid::OnIncomingFrameAvailable(const uint8_t* y_src, | |
172 int y_stride, | |
173 const uint8_t* u_src, | |
174 int u_stride, | |
175 const uint8_t* v_src, | |
176 int v_stride, | |
177 int width, | |
178 int height, | |
179 int64_t timestamp) { | |
180 const VideoCaptureOracle::Event event = VideoCaptureOracle::kCompositorUpdate; | |
181 const uint64_t absolute_micro = | |
182 timestamp / base::Time::kNanosecondsPerMicrosecond; | |
183 const base::TimeTicks start_time = | |
184 base::TimeTicks::FromInternalValue(absolute_micro); | |
miu
2016/06/02 22:33:51
Never use To/FromInternalValue() in Chromium code,
braveyao
2016/06/08 20:39:33
Done.
| |
185 scoped_refptr<VideoFrame> frame; | |
186 ThreadSafeCaptureOracle::CaptureFrameCallback capture_frame_cb; | |
187 | |
188 if (!oracle_proxy_->ObserveEventAndDecideCapture( | |
189 event, gfx::Rect(), start_time, &frame, &capture_frame_cb)) { | |
190 return; | |
191 } | |
192 | |
193 DCHECK(frame->format() == PIXEL_FORMAT_I420 || | |
194 frame->format() == PIXEL_FORMAT_YV12); | |
195 | |
196 libyuv::I420Scale(y_src, y_stride, u_src, u_stride, v_src, v_stride, width, | |
197 height, frame->visible_data(VideoFrame::kYPlane), | |
198 frame->stride(VideoFrame::kYPlane), | |
199 frame->visible_data(VideoFrame::kUPlane), | |
200 frame->stride(VideoFrame::kUPlane), | |
201 frame->visible_data(VideoFrame::kVPlane), | |
202 frame->stride(VideoFrame::kVPlane), | |
203 frame->visible_rect().width(), | |
204 frame->visible_rect().height(), libyuv::kFilterBilinear); | |
205 | |
206 // Deliver the populated VideoFrame. | |
207 capture_frame_cb.Run(frame, start_time, true); | |
208 | |
209 lastFrame_ = frame; | |
210 } | |
211 | |
212 } // namespace media | |
OLD | NEW |