blob: be8611848d1084854a1320067e3397e76f86d665 [file] [log] [blame]
/*
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
*
* 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.
*/
#include "sdk/android/src/jni/surfacetexturehelper.h"
#include "rtc_base/bind.h"
#include "rtc_base/logging.h"
#include "sdk/android/generated_video_jni/jni/SurfaceTextureHelper_jni.h"
#include "sdk/android/native_api/jni/java_types.h"
#include "sdk/android/src/jni/videoframe.h"
namespace webrtc {
namespace jni {
void SurfaceTextureHelperTextureToYUV(
JNIEnv* env,
const JavaRef<jobject>& j_surface_texture_helper,
const JavaRef<jobject>& buffer,
int width,
int height,
int stride,
const NativeHandleImpl& native_handle) {
Java_SurfaceTextureHelper_textureToYUV(
env, j_surface_texture_helper, buffer, width, height, stride,
native_handle.oes_texture_id, native_handle.sampling_matrix.ToJava(env));
}
rtc::scoped_refptr<SurfaceTextureHelper> SurfaceTextureHelper::create(
JNIEnv* jni,
const char* thread_name,
const JavaRef<jobject>& j_egl_context) {
ScopedJavaLocalRef<jobject> j_surface_texture_helper =
Java_SurfaceTextureHelper_create(
jni, NativeToJavaString(jni, thread_name), j_egl_context);
if (IsNull(jni, j_surface_texture_helper))
return nullptr;
return new rtc::RefCountedObject<SurfaceTextureHelper>(
jni, j_surface_texture_helper);
}
SurfaceTextureHelper::SurfaceTextureHelper(
JNIEnv* jni,
const JavaRef<jobject>& j_surface_texture_helper)
: j_surface_texture_helper_(jni, j_surface_texture_helper) {}
SurfaceTextureHelper::~SurfaceTextureHelper() {
RTC_LOG(LS_INFO) << "SurfaceTextureHelper dtor";
JNIEnv* jni = AttachCurrentThreadIfNeeded();
Java_SurfaceTextureHelper_dispose(jni, j_surface_texture_helper_);
}
const ScopedJavaGlobalRef<jobject>&
SurfaceTextureHelper::GetJavaSurfaceTextureHelper() const {
return j_surface_texture_helper_;
}
void SurfaceTextureHelper::ReturnTextureFrame() const {
JNIEnv* jni = AttachCurrentThreadIfNeeded();
Java_SurfaceTextureHelper_returnTextureFrame(jni, j_surface_texture_helper_);
}
rtc::scoped_refptr<VideoFrameBuffer> SurfaceTextureHelper::CreateTextureFrame(
int width,
int height,
const NativeHandleImpl& native_handle) {
return new rtc::RefCountedObject<AndroidTextureBuffer>(width, height,
native_handle, this);
}
} // namespace jni
} // namespace webrtc