Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Unified Diff: webrtc/api/android/jni/surfacetexturehelper_jni.cc

Issue 2547483003: Move /webrtc/api/android files to /webrtc/sdk/android (Closed)
Patch Set: Move to api folder under Android instead of src Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/android/jni/surfacetexturehelper_jni.h ('k') | webrtc/api/test/androidtestinitializer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/android/jni/surfacetexturehelper_jni.cc
diff --git a/webrtc/api/android/jni/surfacetexturehelper_jni.cc b/webrtc/api/android/jni/surfacetexturehelper_jni.cc
deleted file mode 100644
index 29b20e1126f8a7233c8839a2aed4dfe79032a30b..0000000000000000000000000000000000000000
--- a/webrtc/api/android/jni/surfacetexturehelper_jni.cc
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * 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
« no previous file with comments | « webrtc/api/android/jni/surfacetexturehelper_jni.h ('k') | webrtc/api/test/androidtestinitializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698