|
| 1 | +// Copyright 2014 The Chromium Authors |
| 2 | +// Use of this source code is governed by a BSD-style license that can be |
| 3 | +// found in the LICENSE file. |
| 4 | + |
| 5 | + |
| 6 | +// This file is autogenerated by |
| 7 | +// third_party/jni_zero/jni_generator.py |
| 8 | +// For |
| 9 | +// org/webrtc/audio/WebRtcAudioManager |
| 10 | + |
| 11 | +#ifndef org_webrtc_audio_WebRtcAudioManager_JNI |
| 12 | +#define org_webrtc_audio_WebRtcAudioManager_JNI |
| 13 | + |
| 14 | +#include <jni.h> |
| 15 | + |
| 16 | +#include "third_party/jni_zero/jni_export.h" |
| 17 | +#include "sdk/android/src/jni/jni_generator_helper.h" |
| 18 | + |
| 19 | + |
| 20 | +// Step 1: Forward declarations. |
| 21 | + |
| 22 | +JNI_ZERO_COMPONENT_BUILD_EXPORT extern const char kClassPath_org_webrtc_audio_WebRtcAudioManager[]; |
| 23 | +const char kClassPath_org_webrtc_audio_WebRtcAudioManager[] = "org/webrtc/audio/WebRtcAudioManager"; |
| 24 | +// Leaking this jclass as we cannot use LazyInstance from some threads. |
| 25 | +JNI_ZERO_COMPONENT_BUILD_EXPORT std::atomic<jclass> |
| 26 | + g_org_webrtc_audio_WebRtcAudioManager_clazz(nullptr); |
| 27 | +#ifndef org_webrtc_audio_WebRtcAudioManager_clazz_defined |
| 28 | +#define org_webrtc_audio_WebRtcAudioManager_clazz_defined |
| 29 | +inline jclass org_webrtc_audio_WebRtcAudioManager_clazz(JNIEnv* env) { |
| 30 | + return jni_zero::LazyGetClass(env, kClassPath_org_webrtc_audio_WebRtcAudioManager, |
| 31 | + &g_org_webrtc_audio_WebRtcAudioManager_clazz); |
| 32 | +} |
| 33 | +#endif |
| 34 | + |
| 35 | + |
| 36 | +// Step 2: Constants (optional). |
| 37 | + |
| 38 | + |
| 39 | +// Step 3: Method stubs. |
| 40 | +namespace webrtc { |
| 41 | +namespace jni { |
| 42 | + |
| 43 | + |
| 44 | +static std::atomic<jmethodID> g_org_webrtc_audio_WebRtcAudioManager_getAudioManager1(nullptr); |
| 45 | +static jni_zero::ScopedJavaLocalRef<jobject> Java_WebRtcAudioManager_getAudioManager(JNIEnv* env, |
| 46 | + const jni_zero::JavaRef<jobject>& context) { |
| 47 | + jclass clazz = org_webrtc_audio_WebRtcAudioManager_clazz(env); |
| 48 | + CHECK_CLAZZ(env, clazz, |
| 49 | + org_webrtc_audio_WebRtcAudioManager_clazz(env), nullptr); |
| 50 | + |
| 51 | + jni_zero::JniJavaCallContextChecked call_context; |
| 52 | + call_context.Init< |
| 53 | + jni_zero::MethodID::TYPE_STATIC>( |
| 54 | + env, |
| 55 | + clazz, |
| 56 | + "getAudioManager", |
| 57 | + "(Landroid/content/Context;)Landroid/media/AudioManager;", |
| 58 | + &g_org_webrtc_audio_WebRtcAudioManager_getAudioManager1); |
| 59 | + |
| 60 | + jobject ret = |
| 61 | + env->CallStaticObjectMethod(clazz, |
| 62 | + call_context.base.method_id, context.obj()); |
| 63 | + return jni_zero::ScopedJavaLocalRef<jobject>(env, ret); |
| 64 | +} |
| 65 | + |
| 66 | +static std::atomic<jmethodID> g_org_webrtc_audio_WebRtcAudioManager_getInputBufferSize4(nullptr); |
| 67 | +static jint Java_WebRtcAudioManager_getInputBufferSize(JNIEnv* env, const |
| 68 | + jni_zero::JavaRef<jobject>& context, |
| 69 | + const jni_zero::JavaRef<jobject>& audioManager, |
| 70 | + JniIntWrapper sampleRate, |
| 71 | + JniIntWrapper numberOfInputChannels) { |
| 72 | + jclass clazz = org_webrtc_audio_WebRtcAudioManager_clazz(env); |
| 73 | + CHECK_CLAZZ(env, clazz, |
| 74 | + org_webrtc_audio_WebRtcAudioManager_clazz(env), 0); |
| 75 | + |
| 76 | + jni_zero::JniJavaCallContextChecked call_context; |
| 77 | + call_context.Init< |
| 78 | + jni_zero::MethodID::TYPE_STATIC>( |
| 79 | + env, |
| 80 | + clazz, |
| 81 | + "getInputBufferSize", |
| 82 | + "(Landroid/content/Context;Landroid/media/AudioManager;II)I", |
| 83 | + &g_org_webrtc_audio_WebRtcAudioManager_getInputBufferSize4); |
| 84 | + |
| 85 | + jint ret = |
| 86 | + env->CallStaticIntMethod(clazz, |
| 87 | + call_context.base.method_id, context.obj(), audioManager.obj(), as_jint(sampleRate), |
| 88 | + as_jint(numberOfInputChannels)); |
| 89 | + return ret; |
| 90 | +} |
| 91 | + |
| 92 | +static std::atomic<jmethodID> g_org_webrtc_audio_WebRtcAudioManager_getOutputBufferSize4(nullptr); |
| 93 | +static jint Java_WebRtcAudioManager_getOutputBufferSize(JNIEnv* env, const |
| 94 | + jni_zero::JavaRef<jobject>& context, |
| 95 | + const jni_zero::JavaRef<jobject>& audioManager, |
| 96 | + JniIntWrapper sampleRate, |
| 97 | + JniIntWrapper numberOfOutputChannels) { |
| 98 | + jclass clazz = org_webrtc_audio_WebRtcAudioManager_clazz(env); |
| 99 | + CHECK_CLAZZ(env, clazz, |
| 100 | + org_webrtc_audio_WebRtcAudioManager_clazz(env), 0); |
| 101 | + |
| 102 | + jni_zero::JniJavaCallContextChecked call_context; |
| 103 | + call_context.Init< |
| 104 | + jni_zero::MethodID::TYPE_STATIC>( |
| 105 | + env, |
| 106 | + clazz, |
| 107 | + "getOutputBufferSize", |
| 108 | + "(Landroid/content/Context;Landroid/media/AudioManager;II)I", |
| 109 | + &g_org_webrtc_audio_WebRtcAudioManager_getOutputBufferSize4); |
| 110 | + |
| 111 | + jint ret = |
| 112 | + env->CallStaticIntMethod(clazz, |
| 113 | + call_context.base.method_id, context.obj(), audioManager.obj(), as_jint(sampleRate), |
| 114 | + as_jint(numberOfOutputChannels)); |
| 115 | + return ret; |
| 116 | +} |
| 117 | + |
| 118 | +static std::atomic<jmethodID> g_org_webrtc_audio_WebRtcAudioManager_getSampleRate1(nullptr); |
| 119 | +static jint Java_WebRtcAudioManager_getSampleRate(JNIEnv* env, const jni_zero::JavaRef<jobject>& |
| 120 | + audioManager) { |
| 121 | + jclass clazz = org_webrtc_audio_WebRtcAudioManager_clazz(env); |
| 122 | + CHECK_CLAZZ(env, clazz, |
| 123 | + org_webrtc_audio_WebRtcAudioManager_clazz(env), 0); |
| 124 | + |
| 125 | + jni_zero::JniJavaCallContextChecked call_context; |
| 126 | + call_context.Init< |
| 127 | + jni_zero::MethodID::TYPE_STATIC>( |
| 128 | + env, |
| 129 | + clazz, |
| 130 | + "getSampleRate", |
| 131 | + "(Landroid/media/AudioManager;)I", |
| 132 | + &g_org_webrtc_audio_WebRtcAudioManager_getSampleRate1); |
| 133 | + |
| 134 | + jint ret = |
| 135 | + env->CallStaticIntMethod(clazz, |
| 136 | + call_context.base.method_id, audioManager.obj()); |
| 137 | + return ret; |
| 138 | +} |
| 139 | + |
| 140 | +static std::atomic<jmethodID> |
| 141 | + g_org_webrtc_audio_WebRtcAudioManager_isLowLatencyInputSupported1(nullptr); |
| 142 | +static jboolean Java_WebRtcAudioManager_isLowLatencyInputSupported(JNIEnv* env, const |
| 143 | + jni_zero::JavaRef<jobject>& context) { |
| 144 | + jclass clazz = org_webrtc_audio_WebRtcAudioManager_clazz(env); |
| 145 | + CHECK_CLAZZ(env, clazz, |
| 146 | + org_webrtc_audio_WebRtcAudioManager_clazz(env), false); |
| 147 | + |
| 148 | + jni_zero::JniJavaCallContextChecked call_context; |
| 149 | + call_context.Init< |
| 150 | + jni_zero::MethodID::TYPE_STATIC>( |
| 151 | + env, |
| 152 | + clazz, |
| 153 | + "isLowLatencyInputSupported", |
| 154 | + "(Landroid/content/Context;)Z", |
| 155 | + &g_org_webrtc_audio_WebRtcAudioManager_isLowLatencyInputSupported1); |
| 156 | + |
| 157 | + jboolean ret = |
| 158 | + env->CallStaticBooleanMethod(clazz, |
| 159 | + call_context.base.method_id, context.obj()); |
| 160 | + return ret; |
| 161 | +} |
| 162 | + |
| 163 | +static std::atomic<jmethodID> |
| 164 | + g_org_webrtc_audio_WebRtcAudioManager_isLowLatencyOutputSupported1(nullptr); |
| 165 | +static jboolean Java_WebRtcAudioManager_isLowLatencyOutputSupported(JNIEnv* env, const |
| 166 | + jni_zero::JavaRef<jobject>& context) { |
| 167 | + jclass clazz = org_webrtc_audio_WebRtcAudioManager_clazz(env); |
| 168 | + CHECK_CLAZZ(env, clazz, |
| 169 | + org_webrtc_audio_WebRtcAudioManager_clazz(env), false); |
| 170 | + |
| 171 | + jni_zero::JniJavaCallContextChecked call_context; |
| 172 | + call_context.Init< |
| 173 | + jni_zero::MethodID::TYPE_STATIC>( |
| 174 | + env, |
| 175 | + clazz, |
| 176 | + "isLowLatencyOutputSupported", |
| 177 | + "(Landroid/content/Context;)Z", |
| 178 | + &g_org_webrtc_audio_WebRtcAudioManager_isLowLatencyOutputSupported1); |
| 179 | + |
| 180 | + jboolean ret = |
| 181 | + env->CallStaticBooleanMethod(clazz, |
| 182 | + call_context.base.method_id, context.obj()); |
| 183 | + return ret; |
| 184 | +} |
| 185 | + |
| 186 | +} // namespace jni |
| 187 | +} // namespace webrtc |
| 188 | + |
| 189 | +#endif // org_webrtc_audio_WebRtcAudioManager_JNI |
0 commit comments