Skip to content

Commit df2ed68

Browse files
committed
Add freshly generated JNI headers
1 parent 2007495 commit df2ed68

File tree

93 files changed

+22533
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+22533
-0
lines changed

generated/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Generated WebRTC sources
2+
3+
Files in this directory have to be generated every time used WebRTC version changes.
4+
5+
In future, generation of this directory might be made automatic and become excluded from this repository.
6+
7+
**Revision**: [WebRTC@41b1493](https://webrtc.googlesource.com/src/+/41b1493ddb5d98e9125d5cb002fd57ce76ebd8a7)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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/Histogram
10+
11+
#ifndef org_webrtc_Histogram_JNI
12+
#define org_webrtc_Histogram_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_Histogram[];
23+
const char kClassPath_org_webrtc_Histogram[] = "org/webrtc/Histogram";
24+
// Leaking this jclass as we cannot use LazyInstance from some threads.
25+
JNI_ZERO_COMPONENT_BUILD_EXPORT std::atomic<jclass> g_org_webrtc_Histogram_clazz(nullptr);
26+
#ifndef org_webrtc_Histogram_clazz_defined
27+
#define org_webrtc_Histogram_clazz_defined
28+
inline jclass org_webrtc_Histogram_clazz(JNIEnv* env) {
29+
return jni_zero::LazyGetClass(env, kClassPath_org_webrtc_Histogram,
30+
&g_org_webrtc_Histogram_clazz);
31+
}
32+
#endif
33+
34+
35+
// Step 2: Constants (optional).
36+
37+
38+
// Step 3: Method stubs.
39+
namespace webrtc {
40+
namespace jni {
41+
42+
static void JNI_Histogram_AddSample(JNIEnv* env, jlong handle,
43+
jint sample);
44+
45+
JNI_BOUNDARY_EXPORT void Java_org_webrtc_Histogram_nativeAddSample(
46+
JNIEnv* env,
47+
jclass jcaller,
48+
jlong handle,
49+
jint sample) {
50+
return JNI_Histogram_AddSample(env, handle, sample);
51+
}
52+
53+
static jlong JNI_Histogram_CreateCounts(JNIEnv* env, const jni_zero::JavaParamRef<jstring>& name,
54+
jint min,
55+
jint max,
56+
jint bucketCount);
57+
58+
JNI_BOUNDARY_EXPORT jlong Java_org_webrtc_Histogram_nativeCreateCounts(
59+
JNIEnv* env,
60+
jclass jcaller,
61+
jstring name,
62+
jint min,
63+
jint max,
64+
jint bucketCount) {
65+
return JNI_Histogram_CreateCounts(env, jni_zero::JavaParamRef<jstring>(env, name), min, max,
66+
bucketCount);
67+
}
68+
69+
static jlong JNI_Histogram_CreateEnumeration(JNIEnv* env, const jni_zero::JavaParamRef<jstring>&
70+
name,
71+
jint max);
72+
73+
JNI_BOUNDARY_EXPORT jlong Java_org_webrtc_Histogram_nativeCreateEnumeration(
74+
JNIEnv* env,
75+
jclass jcaller,
76+
jstring name,
77+
jint max) {
78+
return JNI_Histogram_CreateEnumeration(env, jni_zero::JavaParamRef<jstring>(env, name), max);
79+
}
80+
81+
82+
} // namespace jni
83+
} // namespace webrtc
84+
85+
#endif // org_webrtc_Histogram_JNI
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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/JniCommon
10+
11+
#ifndef org_webrtc_JniCommon_JNI
12+
#define org_webrtc_JniCommon_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_JniCommon[];
23+
const char kClassPath_org_webrtc_JniCommon[] = "org/webrtc/JniCommon";
24+
// Leaking this jclass as we cannot use LazyInstance from some threads.
25+
JNI_ZERO_COMPONENT_BUILD_EXPORT std::atomic<jclass> g_org_webrtc_JniCommon_clazz(nullptr);
26+
#ifndef org_webrtc_JniCommon_clazz_defined
27+
#define org_webrtc_JniCommon_clazz_defined
28+
inline jclass org_webrtc_JniCommon_clazz(JNIEnv* env) {
29+
return jni_zero::LazyGetClass(env, kClassPath_org_webrtc_JniCommon,
30+
&g_org_webrtc_JniCommon_clazz);
31+
}
32+
#endif
33+
34+
35+
// Step 2: Constants (optional).
36+
37+
38+
// Step 3: Method stubs.
39+
namespace webrtc {
40+
namespace jni {
41+
42+
static void JNI_JniCommon_AddRef(JNIEnv* env, jlong refCountedPointer);
43+
44+
JNI_BOUNDARY_EXPORT void Java_org_webrtc_JniCommon_nativeAddRef(
45+
JNIEnv* env,
46+
jclass jcaller,
47+
jlong refCountedPointer) {
48+
return JNI_JniCommon_AddRef(env, refCountedPointer);
49+
}
50+
51+
static jni_zero::ScopedJavaLocalRef<jobject> JNI_JniCommon_AllocateByteBuffer(JNIEnv* env, jint
52+
size);
53+
54+
JNI_BOUNDARY_EXPORT jobject Java_org_webrtc_JniCommon_nativeAllocateByteBuffer(
55+
JNIEnv* env,
56+
jclass jcaller,
57+
jint size) {
58+
return JNI_JniCommon_AllocateByteBuffer(env, size).Release();
59+
}
60+
61+
static void JNI_JniCommon_FreeByteBuffer(JNIEnv* env, const jni_zero::JavaParamRef<jobject>&
62+
buffer);
63+
64+
JNI_BOUNDARY_EXPORT void Java_org_webrtc_JniCommon_nativeFreeByteBuffer(
65+
JNIEnv* env,
66+
jclass jcaller,
67+
jobject buffer) {
68+
return JNI_JniCommon_FreeByteBuffer(env, jni_zero::JavaParamRef<jobject>(env, buffer));
69+
}
70+
71+
static void JNI_JniCommon_ReleaseRef(JNIEnv* env, jlong refCountedPointer);
72+
73+
JNI_BOUNDARY_EXPORT void Java_org_webrtc_JniCommon_nativeReleaseRef(
74+
JNIEnv* env,
75+
jclass jcaller,
76+
jlong refCountedPointer) {
77+
return JNI_JniCommon_ReleaseRef(env, refCountedPointer);
78+
}
79+
80+
81+
} // namespace jni
82+
} // namespace webrtc
83+
84+
#endif // org_webrtc_JniCommon_JNI

0 commit comments

Comments
 (0)