Reason for revert: Issues fixed Original issue's description: > Revert of Combine webrtc/api/java/android and webrtc/api/java/src. (patchset #1 id:1 of https://codereview.webrtc.org/2111823002/ ) > > Reason for revert: > Breaks downstream dependencies > > Original issue's description: > > Combine webrtc/api/java/android and webrtc/api/java/src. > > > > It used to be that there was a Java api for devices not running Android > > but that is no longer the case. I combined the directories and made > > the folder structure chromium style. > > > > BUG=webrtc:6067 > > R=magjed@webrtc.org, tommi@webrtc.org > > > > Committed:ceefe20dd6> > TBR=magjed@webrtc.org,tommi@webrtc.org > # Skipping CQ checks because original CL landed less than 1 days ago. > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > BUG=webrtc:6067 > > Committed:9b0dc622d4TBR=magjed@webrtc.org,tommi@webrtc.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=webrtc:6067 Review-Url: https://codereview.webrtc.org/2111923003 Cr-Commit-Position: refs/heads/master@{#13363}
83 lines
3.0 KiB
C++
83 lines
3.0 KiB
C++
/*
|
|
* 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 "webrtc/api/android/jni/surfacetexturehelper_jni.h"
|
|
|
|
#include "webrtc/api/android/jni/classreferenceholder.h"
|
|
#include "webrtc/base/bind.h"
|
|
#include "webrtc/base/checks.h"
|
|
#include "webrtc/base/logging.h"
|
|
|
|
namespace webrtc_jni {
|
|
|
|
rtc::scoped_refptr<SurfaceTextureHelper> SurfaceTextureHelper::create(
|
|
JNIEnv* jni,
|
|
const char* thread_name,
|
|
jobject j_egl_context) {
|
|
jobject j_surface_texture_helper = jni->CallStaticObjectMethod(
|
|
FindClass(jni, "org/webrtc/SurfaceTextureHelper"),
|
|
GetStaticMethodID(jni, FindClass(jni, "org/webrtc/SurfaceTextureHelper"),
|
|
"create",
|
|
"(Ljava/lang/String;Lorg/webrtc/EglBase$Context;)"
|
|
"Lorg/webrtc/SurfaceTextureHelper;"),
|
|
jni->NewStringUTF(thread_name), j_egl_context);
|
|
CHECK_EXCEPTION(jni)
|
|
<< "error during initialization of Java SurfaceTextureHelper";
|
|
if (IsNull(jni, j_surface_texture_helper))
|
|
return nullptr;
|
|
return new rtc::RefCountedObject<SurfaceTextureHelper>(
|
|
jni, j_surface_texture_helper);
|
|
}
|
|
|
|
SurfaceTextureHelper::SurfaceTextureHelper(JNIEnv* jni,
|
|
jobject j_surface_texture_helper)
|
|
: j_surface_texture_helper_(jni, j_surface_texture_helper),
|
|
j_return_texture_method_(
|
|
GetMethodID(jni,
|
|
FindClass(jni, "org/webrtc/SurfaceTextureHelper"),
|
|
"returnTextureFrame",
|
|
"()V")) {
|
|
CHECK_EXCEPTION(jni) << "error during initialization of SurfaceTextureHelper";
|
|
}
|
|
|
|
SurfaceTextureHelper::~SurfaceTextureHelper() {
|
|
LOG(LS_INFO) << "SurfaceTextureHelper dtor";
|
|
JNIEnv* jni = AttachCurrentThreadIfNeeded();
|
|
jni->CallVoidMethod(
|
|
*j_surface_texture_helper_,
|
|
GetMethodID(jni, FindClass(jni, "org/webrtc/SurfaceTextureHelper"),
|
|
"dispose", "()V"));
|
|
|
|
CHECK_EXCEPTION(jni) << "error during SurfaceTextureHelper.dispose()";
|
|
}
|
|
|
|
jobject SurfaceTextureHelper::GetJavaSurfaceTextureHelper() const {
|
|
return *j_surface_texture_helper_;
|
|
}
|
|
|
|
void SurfaceTextureHelper::ReturnTextureFrame() const {
|
|
JNIEnv* jni = AttachCurrentThreadIfNeeded();
|
|
jni->CallVoidMethod(*j_surface_texture_helper_, j_return_texture_method_);
|
|
|
|
CHECK_EXCEPTION(
|
|
jni) << "error during SurfaceTextureHelper.returnTextureFrame";
|
|
}
|
|
|
|
rtc::scoped_refptr<webrtc::VideoFrameBuffer>
|
|
SurfaceTextureHelper::CreateTextureFrame(int width, int height,
|
|
const NativeHandleImpl& native_handle) {
|
|
return new rtc::RefCountedObject<AndroidTextureBuffer>(
|
|
width, height, native_handle, *j_surface_texture_helper_,
|
|
rtc::Bind(&SurfaceTextureHelper::ReturnTextureFrame, this));
|
|
}
|
|
|
|
} // namespace webrtc_jni
|