2015-02-13 12:46:51 +00:00
|
|
|
/*
|
2016-02-10 07:54:43 -08:00
|
|
|
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
2015-02-13 12:46:51 +00:00
|
|
|
*
|
2016-02-10 07:54:43 -08:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2015-02-13 12:46:51 +00:00
|
|
|
*/
|
|
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#include "webrtc/api/java/jni/androidvideocapturer_jni.h"
|
|
|
|
|
#include "webrtc/api/java/jni/classreferenceholder.h"
|
|
|
|
|
#include "webrtc/api/java/jni/native_handle_impl.h"
|
|
|
|
|
#include "webrtc/api/java/jni/surfacetexturehelper_jni.h"
|
2015-12-18 00:37:06 -08:00
|
|
|
#include "third_party/libyuv/include/libyuv/convert.h"
|
2016-05-25 08:47:01 -07:00
|
|
|
#include "third_party/libyuv/include/libyuv/scale.h"
|
2015-02-19 08:43:38 +00:00
|
|
|
#include "webrtc/base/bind.h"
|
2015-02-13 12:46:51 +00:00
|
|
|
|
|
|
|
|
namespace webrtc_jni {
|
|
|
|
|
|
|
|
|
|
jobject AndroidVideoCapturerJni::application_context_ = nullptr;
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
|
int AndroidVideoCapturerJni::SetAndroidObjects(JNIEnv* jni,
|
|
|
|
|
jobject appliction_context) {
|
|
|
|
|
if (application_context_) {
|
|
|
|
|
jni->DeleteGlobalRef(application_context_);
|
|
|
|
|
}
|
|
|
|
|
application_context_ = NewGlobalRef(jni, appliction_context);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-09 08:28:45 -07:00
|
|
|
AndroidVideoCapturerJni::AndroidVideoCapturerJni(JNIEnv* jni,
|
|
|
|
|
jobject j_video_capturer,
|
|
|
|
|
jobject j_egl_context)
|
2015-12-10 06:23:33 -08:00
|
|
|
: j_video_capturer_(jni, j_video_capturer),
|
2016-05-09 08:28:45 -07:00
|
|
|
j_video_capturer_class_(jni, FindClass(jni, "org/webrtc/VideoCapturer")),
|
2015-02-19 08:43:38 +00:00
|
|
|
j_observer_class_(
|
2015-02-13 12:46:51 +00:00
|
|
|
jni,
|
|
|
|
|
FindClass(jni,
|
2016-02-12 17:05:29 +01:00
|
|
|
"org/webrtc/VideoCapturer$NativeObserver")),
|
2016-05-09 08:28:45 -07:00
|
|
|
surface_texture_helper_(SurfaceTextureHelper::create(
|
2016-03-31 00:54:15 -07:00
|
|
|
jni, "Camera SurfaceTextureHelper", j_egl_context)),
|
2015-08-25 23:22:08 +02:00
|
|
|
capturer_(nullptr) {
|
2015-04-20 13:00:49 -07:00
|
|
|
LOG(LS_INFO) << "AndroidVideoCapturerJni ctor";
|
2015-02-19 08:43:38 +00:00
|
|
|
thread_checker_.DetachFromThread();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidVideoCapturerJni::~AndroidVideoCapturerJni() {
|
2015-08-25 23:22:08 +02:00
|
|
|
LOG(LS_INFO) << "AndroidVideoCapturerJni dtor";
|
2015-09-23 12:01:28 +02:00
|
|
|
jni()->CallVoidMethod(
|
2015-12-10 06:23:33 -08:00
|
|
|
*j_video_capturer_,
|
2016-02-12 17:05:29 +01:00
|
|
|
GetMethodID(jni(), *j_video_capturer_class_, "dispose", "()V"));
|
|
|
|
|
CHECK_EXCEPTION(jni()) << "error during VideoCapturer.dispose()";
|
2015-02-19 08:43:38 +00:00
|
|
|
}
|
2015-02-13 12:46:51 +00:00
|
|
|
|
|
|
|
|
void AndroidVideoCapturerJni::Start(int width, int height, int framerate,
|
|
|
|
|
webrtc::AndroidVideoCapturer* capturer) {
|
2015-04-20 13:00:49 -07:00
|
|
|
LOG(LS_INFO) << "AndroidVideoCapturerJni start";
|
2015-09-17 00:24:34 -07:00
|
|
|
RTC_DCHECK(thread_checker_.CalledOnValidThread());
|
2015-08-25 23:22:08 +02:00
|
|
|
{
|
|
|
|
|
rtc::CritScope cs(&capturer_lock_);
|
2015-09-17 00:24:34 -07:00
|
|
|
RTC_CHECK(capturer_ == nullptr);
|
|
|
|
|
RTC_CHECK(invoker_.get() == nullptr);
|
2015-08-25 23:22:08 +02:00
|
|
|
capturer_ = capturer;
|
|
|
|
|
invoker_.reset(new rtc::GuardedAsyncInvoker());
|
|
|
|
|
}
|
|
|
|
|
jobject j_frame_observer =
|
2015-02-19 08:43:38 +00:00
|
|
|
jni()->NewObject(*j_observer_class_,
|
2015-08-25 23:22:08 +02:00
|
|
|
GetMethodID(jni(), *j_observer_class_, "<init>", "(J)V"),
|
|
|
|
|
jlongFromPointer(this));
|
2015-02-13 12:46:51 +00:00
|
|
|
CHECK_EXCEPTION(jni()) << "error during NewObject";
|
|
|
|
|
|
|
|
|
|
jmethodID m = GetMethodID(
|
|
|
|
|
jni(), *j_video_capturer_class_, "startCapture",
|
2016-03-14 03:59:38 -07:00
|
|
|
"(IIILorg/webrtc/SurfaceTextureHelper;Landroid/content/Context;"
|
2016-02-12 17:05:29 +01:00
|
|
|
"Lorg/webrtc/VideoCapturer$CapturerObserver;)V");
|
2016-05-09 08:28:45 -07:00
|
|
|
jni()->CallVoidMethod(
|
|
|
|
|
*j_video_capturer_, m, width, height, framerate,
|
|
|
|
|
surface_texture_helper_
|
|
|
|
|
? surface_texture_helper_->GetJavaSurfaceTextureHelper()
|
|
|
|
|
: nullptr,
|
|
|
|
|
application_context_, j_frame_observer);
|
2016-02-12 17:05:29 +01:00
|
|
|
CHECK_EXCEPTION(jni()) << "error during VideoCapturer.startCapture";
|
2015-02-13 12:46:51 +00:00
|
|
|
}
|
|
|
|
|
|
2015-02-19 08:43:38 +00:00
|
|
|
void AndroidVideoCapturerJni::Stop() {
|
2015-04-20 13:00:49 -07:00
|
|
|
LOG(LS_INFO) << "AndroidVideoCapturerJni stop";
|
2015-09-17 00:24:34 -07:00
|
|
|
RTC_DCHECK(thread_checker_.CalledOnValidThread());
|
2015-08-25 23:22:08 +02:00
|
|
|
{
|
|
|
|
|
rtc::CritScope cs(&capturer_lock_);
|
|
|
|
|
// Destroying |invoker_| will cancel all pending calls to |capturer_|.
|
|
|
|
|
invoker_ = nullptr;
|
|
|
|
|
capturer_ = nullptr;
|
|
|
|
|
}
|
2015-02-13 12:46:51 +00:00
|
|
|
jmethodID m = GetMethodID(jni(), *j_video_capturer_class_,
|
2015-02-19 08:43:38 +00:00
|
|
|
"stopCapture", "()V");
|
2015-12-10 06:23:33 -08:00
|
|
|
jni()->CallVoidMethod(*j_video_capturer_, m);
|
2016-02-12 17:05:29 +01:00
|
|
|
CHECK_EXCEPTION(jni()) << "error during VideoCapturer.stopCapture";
|
2015-04-20 13:00:49 -07:00
|
|
|
LOG(LS_INFO) << "AndroidVideoCapturerJni stop done";
|
2015-02-25 09:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
2015-08-25 23:22:08 +02:00
|
|
|
template <typename... Args>
|
|
|
|
|
void AndroidVideoCapturerJni::AsyncCapturerInvoke(
|
|
|
|
|
const char* method_name,
|
|
|
|
|
void (webrtc::AndroidVideoCapturer::*method)(Args...),
|
2015-10-20 11:04:56 -07:00
|
|
|
typename Identity<Args>::type... args) {
|
2015-08-25 23:22:08 +02:00
|
|
|
rtc::CritScope cs(&capturer_lock_);
|
|
|
|
|
if (!invoker_) {
|
|
|
|
|
LOG(LS_WARNING) << method_name << "() called for closed capturer.";
|
2015-04-20 16:54:42 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2015-08-25 23:22:08 +02:00
|
|
|
invoker_->AsyncInvoke<void>(rtc::Bind(method, capturer_, args...));
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-18 13:09:54 +01:00
|
|
|
std::vector<cricket::VideoFormat>
|
|
|
|
|
AndroidVideoCapturerJni::GetSupportedFormats() {
|
|
|
|
|
JNIEnv* jni = AttachCurrentThreadIfNeeded();
|
|
|
|
|
jobject j_list_of_formats = jni->CallObjectMethod(
|
|
|
|
|
*j_video_capturer_,
|
|
|
|
|
GetMethodID(jni, *j_video_capturer_class_, "getSupportedFormats",
|
|
|
|
|
"()Ljava/util/List;"));
|
|
|
|
|
CHECK_EXCEPTION(jni) << "error during getSupportedFormats";
|
|
|
|
|
|
|
|
|
|
// Extract Java List<CaptureFormat> to std::vector<cricket::VideoFormat>.
|
|
|
|
|
jclass j_list_class = jni->FindClass("java/util/List");
|
|
|
|
|
jclass j_format_class =
|
|
|
|
|
jni->FindClass("org/webrtc/CameraEnumerationAndroid$CaptureFormat");
|
|
|
|
|
const int size = jni->CallIntMethod(
|
|
|
|
|
j_list_of_formats, GetMethodID(jni, j_list_class, "size", "()I"));
|
|
|
|
|
jmethodID j_get =
|
|
|
|
|
GetMethodID(jni, j_list_class, "get", "(I)Ljava/lang/Object;");
|
|
|
|
|
jfieldID j_width_field = GetFieldID(jni, j_format_class, "width", "I");
|
|
|
|
|
jfieldID j_height_field = GetFieldID(jni, j_format_class, "height", "I");
|
|
|
|
|
jfieldID j_max_framerate_field =
|
2016-05-29 23:06:27 -07:00
|
|
|
GetFieldID(jni, j_format_class, "maxFramerate", "I");
|
2016-02-18 13:09:54 +01:00
|
|
|
|
|
|
|
|
std::vector<cricket::VideoFormat> formats;
|
|
|
|
|
formats.reserve(size);
|
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
|
jobject j_format = jni->CallObjectMethod(j_list_of_formats, j_get, i);
|
|
|
|
|
const int frame_interval = cricket::VideoFormat::FpsToInterval(
|
2016-05-29 23:06:27 -07:00
|
|
|
(GetIntField(jni, j_format, j_max_framerate_field) + 999) / 1000);
|
2016-02-18 13:09:54 +01:00
|
|
|
formats.emplace_back(GetIntField(jni, j_format, j_width_field),
|
|
|
|
|
GetIntField(jni, j_format, j_height_field),
|
|
|
|
|
frame_interval, cricket::FOURCC_NV21);
|
|
|
|
|
}
|
|
|
|
|
CHECK_EXCEPTION(jni) << "error while extracting formats";
|
|
|
|
|
return formats;
|
2015-02-13 12:46:51 +00:00
|
|
|
}
|
|
|
|
|
|
2015-02-25 09:20:07 +00:00
|
|
|
void AndroidVideoCapturerJni::OnCapturerStarted(bool success) {
|
2015-08-25 23:22:08 +02:00
|
|
|
LOG(LS_INFO) << "AndroidVideoCapturerJni capture started: " << success;
|
|
|
|
|
AsyncCapturerInvoke("OnCapturerStarted",
|
|
|
|
|
&webrtc::AndroidVideoCapturer::OnCapturerStarted,
|
|
|
|
|
success);
|
2015-02-25 09:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
2015-10-08 15:32:38 +02:00
|
|
|
void AndroidVideoCapturerJni::OnMemoryBufferFrame(void* video_frame,
|
|
|
|
|
int length,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int rotation,
|
|
|
|
|
int64_t timestamp_ns) {
|
2016-05-25 08:47:01 -07:00
|
|
|
RTC_DCHECK(rotation == 0 || rotation == 90 || rotation == 180 ||
|
|
|
|
|
rotation == 270);
|
|
|
|
|
rtc::CritScope cs(&capturer_lock_);
|
|
|
|
|
|
|
|
|
|
int adapted_width;
|
|
|
|
|
int adapted_height;
|
|
|
|
|
int crop_width;
|
|
|
|
|
int crop_height;
|
|
|
|
|
int crop_x;
|
|
|
|
|
int crop_y;
|
|
|
|
|
|
|
|
|
|
if (!capturer_->AdaptFrame(width, height, timestamp_ns,
|
|
|
|
|
&adapted_width, &adapted_height,
|
|
|
|
|
&crop_width, &crop_height, &crop_x, &crop_y)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int rotated_width = crop_width;
|
|
|
|
|
int rotated_height = crop_height;
|
|
|
|
|
|
|
|
|
|
if (capturer_->apply_rotation() && (rotation == 90 || rotation == 270)) {
|
|
|
|
|
std::swap(adapted_width, adapted_height);
|
|
|
|
|
std::swap(rotated_width, rotated_height);
|
|
|
|
|
}
|
2015-12-18 00:37:06 -08:00
|
|
|
|
|
|
|
|
rtc::scoped_refptr<webrtc::VideoFrameBuffer> buffer =
|
2016-05-25 08:47:01 -07:00
|
|
|
pre_scale_pool_.CreateBuffer(rotated_width, rotated_height);
|
|
|
|
|
|
|
|
|
|
const uint8_t* y_plane = static_cast<const uint8_t*>(video_frame);
|
|
|
|
|
const uint8_t* uv_plane = y_plane + width * height;
|
|
|
|
|
|
|
|
|
|
// Can only crop at even pixels.
|
|
|
|
|
crop_x &= ~1;
|
|
|
|
|
crop_y &= ~1;
|
|
|
|
|
int uv_width = (width + 1) / 2;
|
|
|
|
|
|
|
|
|
|
libyuv::NV12ToI420Rotate(
|
|
|
|
|
y_plane + width * crop_y + crop_x, width,
|
|
|
|
|
uv_plane + uv_width * crop_y + crop_x, width,
|
2015-12-18 00:37:06 -08:00
|
|
|
buffer->MutableData(webrtc::kYPlane), buffer->stride(webrtc::kYPlane),
|
2016-05-25 08:47:01 -07:00
|
|
|
// Swap U and V, since we have NV21, not NV12.
|
2015-12-18 00:37:06 -08:00
|
|
|
buffer->MutableData(webrtc::kVPlane), buffer->stride(webrtc::kVPlane),
|
2016-05-25 08:47:01 -07:00
|
|
|
buffer->MutableData(webrtc::kUPlane), buffer->stride(webrtc::kUPlane),
|
|
|
|
|
crop_width, crop_height, static_cast<libyuv::RotationMode>(
|
|
|
|
|
capturer_->apply_rotation() ? rotation : 0));
|
2016-05-23 00:39:35 -07:00
|
|
|
|
2016-05-25 08:47:01 -07:00
|
|
|
if (adapted_width != rotated_width || adapted_height != rotated_height) {
|
|
|
|
|
rtc::scoped_refptr<webrtc::VideoFrameBuffer> scaled =
|
|
|
|
|
post_scale_pool_.CreateBuffer(adapted_width, adapted_height);
|
|
|
|
|
// TODO(nisse): This should be done by some Scale method in
|
|
|
|
|
// I420Buffer, but we can't do that right now, since
|
|
|
|
|
// I420BufferPool uses a wrapper object.
|
|
|
|
|
if (libyuv::I420Scale(buffer->DataY(), buffer->StrideY(),
|
|
|
|
|
buffer->DataU(), buffer->StrideU(),
|
|
|
|
|
buffer->DataV(), buffer->StrideV(),
|
|
|
|
|
rotated_width, rotated_height,
|
|
|
|
|
scaled->MutableDataY(), scaled->StrideY(),
|
|
|
|
|
scaled->MutableDataU(), scaled->StrideU(),
|
|
|
|
|
scaled->MutableDataV(), scaled->StrideV(),
|
|
|
|
|
adapted_width, adapted_height,
|
|
|
|
|
libyuv::kFilterBox) < 0) {
|
|
|
|
|
LOG(LS_WARNING) << "I420Scale failed";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
buffer = scaled;
|
2016-05-23 00:39:35 -07:00
|
|
|
}
|
2016-05-25 08:47:01 -07:00
|
|
|
// TODO(nisse): Use microsecond time instead.
|
|
|
|
|
capturer_->OnFrame(cricket::WebRtcVideoFrame(
|
|
|
|
|
buffer, timestamp_ns,
|
|
|
|
|
capturer_->apply_rotation()
|
|
|
|
|
? webrtc::kVideoRotation_0
|
|
|
|
|
: static_cast<webrtc::VideoRotation>(rotation)),
|
|
|
|
|
width, height);
|
2015-10-08 15:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2015-11-19 10:43:36 +01:00
|
|
|
void AndroidVideoCapturerJni::OnTextureFrame(int width,
|
|
|
|
|
int height,
|
2015-12-11 09:32:37 +01:00
|
|
|
int rotation,
|
2015-11-19 10:43:36 +01:00
|
|
|
int64_t timestamp_ns,
|
|
|
|
|
const NativeHandleImpl& handle) {
|
2016-05-25 08:47:01 -07:00
|
|
|
RTC_DCHECK(rotation == 0 || rotation == 90 || rotation == 180 ||
|
|
|
|
|
rotation == 270);
|
2016-05-23 00:39:35 -07:00
|
|
|
rtc::CritScope cs(&capturer_lock_);
|
2016-05-25 08:47:01 -07:00
|
|
|
|
|
|
|
|
int adapted_width;
|
|
|
|
|
int adapted_height;
|
|
|
|
|
int crop_width;
|
|
|
|
|
int crop_height;
|
|
|
|
|
int crop_x;
|
|
|
|
|
int crop_y;
|
|
|
|
|
|
|
|
|
|
if (!capturer_->AdaptFrame(width, height, timestamp_ns,
|
|
|
|
|
&adapted_width, &adapted_height,
|
|
|
|
|
&crop_width, &crop_height, &crop_x, &crop_y)) {
|
2016-05-26 08:34:40 -07:00
|
|
|
surface_texture_helper_->ReturnTextureFrame();
|
2016-05-23 00:39:35 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2016-05-25 08:47:01 -07:00
|
|
|
|
|
|
|
|
Matrix matrix = handle.sampling_matrix;
|
|
|
|
|
|
|
|
|
|
matrix.Crop(crop_width / static_cast<float>(width),
|
|
|
|
|
crop_height / static_cast<float>(height),
|
|
|
|
|
crop_x / static_cast<float>(width),
|
|
|
|
|
crop_y / static_cast<float>(height));
|
|
|
|
|
|
|
|
|
|
if (capturer_->apply_rotation()) {
|
|
|
|
|
if (rotation == webrtc::kVideoRotation_90 ||
|
|
|
|
|
rotation == webrtc::kVideoRotation_270) {
|
|
|
|
|
std::swap(adapted_width, adapted_height);
|
|
|
|
|
}
|
|
|
|
|
matrix.Rotate(static_cast<webrtc::VideoRotation>(rotation));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO(nisse): Use microsecond time instead.
|
|
|
|
|
capturer_->OnFrame(
|
|
|
|
|
cricket::WebRtcVideoFrame(
|
|
|
|
|
surface_texture_helper_->CreateTextureFrame(
|
|
|
|
|
adapted_width, adapted_height,
|
|
|
|
|
NativeHandleImpl(handle.oes_texture_id, matrix)),
|
|
|
|
|
timestamp_ns, capturer_->apply_rotation()
|
|
|
|
|
? webrtc::kVideoRotation_0
|
|
|
|
|
: static_cast<webrtc::VideoRotation>(rotation)),
|
|
|
|
|
width, height);
|
2015-02-25 09:20:07 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-15 09:53:05 +02:00
|
|
|
void AndroidVideoCapturerJni::OnOutputFormatRequest(int width,
|
|
|
|
|
int height,
|
|
|
|
|
int fps) {
|
2015-08-25 23:22:08 +02:00
|
|
|
AsyncCapturerInvoke("OnOutputFormatRequest",
|
|
|
|
|
&webrtc::AndroidVideoCapturer::OnOutputFormatRequest,
|
|
|
|
|
width, height, fps);
|
2015-06-15 09:53:05 +02:00
|
|
|
}
|
|
|
|
|
|
2015-02-13 12:46:51 +00:00
|
|
|
JNIEnv* AndroidVideoCapturerJni::jni() { return AttachCurrentThreadIfNeeded(); }
|
|
|
|
|
|
2015-10-08 12:53:33 +02:00
|
|
|
JOW(void,
|
2016-02-12 17:05:29 +01:00
|
|
|
VideoCapturer_00024NativeObserver_nativeOnByteBufferFrameCaptured)
|
2015-09-29 01:13:43 -07:00
|
|
|
(JNIEnv* jni, jclass, jlong j_capturer, jbyteArray j_frame, jint length,
|
2015-10-08 15:32:38 +02:00
|
|
|
jint width, jint height, jint rotation, jlong timestamp) {
|
2015-09-29 01:13:43 -07:00
|
|
|
jboolean is_copy = true;
|
|
|
|
|
jbyte* bytes = jni->GetByteArrayElements(j_frame, &is_copy);
|
2015-08-25 23:22:08 +02:00
|
|
|
reinterpret_cast<AndroidVideoCapturerJni*>(j_capturer)
|
2015-10-08 15:32:38 +02:00
|
|
|
->OnMemoryBufferFrame(bytes, length, width, height, rotation, timestamp);
|
2015-09-29 01:13:43 -07:00
|
|
|
jni->ReleaseByteArrayElements(j_frame, bytes, JNI_ABORT);
|
2015-02-13 12:46:51 +00:00
|
|
|
}
|
|
|
|
|
|
2016-02-12 17:05:29 +01:00
|
|
|
JOW(void, VideoCapturer_00024NativeObserver_nativeOnTextureFrameCaptured)
|
2015-10-08 15:32:38 +02:00
|
|
|
(JNIEnv* jni, jclass, jlong j_capturer, jint j_width, jint j_height,
|
|
|
|
|
jint j_oes_texture_id, jfloatArray j_transform_matrix,
|
2015-12-11 09:32:37 +01:00
|
|
|
jint j_rotation, jlong j_timestamp) {
|
2015-10-08 15:32:38 +02:00
|
|
|
reinterpret_cast<AndroidVideoCapturerJni*>(j_capturer)
|
2015-12-11 09:32:37 +01:00
|
|
|
->OnTextureFrame(j_width, j_height, j_rotation, j_timestamp,
|
2015-11-19 10:43:36 +01:00
|
|
|
NativeHandleImpl(jni, j_oes_texture_id,
|
|
|
|
|
j_transform_matrix));
|
2015-10-08 15:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2016-02-12 17:05:29 +01:00
|
|
|
JOW(void, VideoCapturer_00024NativeObserver_nativeCapturerStarted)
|
2015-02-25 09:20:07 +00:00
|
|
|
(JNIEnv* jni, jclass, jlong j_capturer, jboolean j_success) {
|
2015-04-20 13:00:49 -07:00
|
|
|
LOG(LS_INFO) << "NativeObserver_nativeCapturerStarted";
|
2015-02-25 09:20:07 +00:00
|
|
|
reinterpret_cast<AndroidVideoCapturerJni*>(j_capturer)->OnCapturerStarted(
|
|
|
|
|
j_success);
|
2015-02-13 12:46:51 +00:00
|
|
|
}
|
|
|
|
|
|
2016-02-12 17:05:29 +01:00
|
|
|
JOW(void, VideoCapturer_00024NativeObserver_nativeOnOutputFormatRequest)
|
2015-06-15 09:53:05 +02:00
|
|
|
(JNIEnv* jni, jclass, jlong j_capturer, jint j_width, jint j_height,
|
|
|
|
|
jint j_fps) {
|
|
|
|
|
LOG(LS_INFO) << "NativeObserver_nativeOnOutputFormatRequest";
|
|
|
|
|
reinterpret_cast<AndroidVideoCapturerJni*>(j_capturer)->OnOutputFormatRequest(
|
|
|
|
|
j_width, j_height, j_fps);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-13 12:46:51 +00:00
|
|
|
} // namespace webrtc_jni
|