blob: d0326f159be04024e0888fa86b9542cf6a1c6e92 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18
19#define LOG_TAG "AudioRecord-JNI"
20
Kévin PETIT95ece352014-02-13 11:02:27 +000021#include <inttypes.h>
Glenn Kastenc81d31c2012-03-13 14:46:23 -070022#include <jni.h>
23#include <JNIHelp.h>
Andreas Gampeed6b9df2014-11-20 22:02:20 -080024#include "core_jni_helpers.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
Glenn Kastenc81d31c2012-03-13 14:46:23 -070026#include <utils/Log.h>
27#include <media/AudioRecord.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070028
Svet Ganovfa5ecdc2015-04-28 12:03:28 -070029#include <ScopedUtfChars.h>
30
Glenn Kastenfe834d32014-01-08 14:49:08 -080031#include "android_media_AudioFormat.h"
Eric Laurentbc11a692014-05-16 12:19:25 -070032#include "android_media_AudioErrors.h"
Eric Laurent4bcdba82015-05-01 11:37:49 -070033#include "android_media_DeviceCallback.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034
35// ----------------------------------------------------------------------------
36
37using namespace android;
38
39// ----------------------------------------------------------------------------
40static const char* const kClassPathName = "android/media/AudioRecord";
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -070041static const char* const kAudioAttributesClassPathName = "android/media/AudioAttributes";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -070043struct audio_record_fields_t {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 // these fields provide access from C++ to the...
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045 jmethodID postNativeEventInJava; //... event post callback method
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046 jfieldID nativeRecorderInJavaObj; // provides access to the C++ AudioRecord object
47 jfieldID nativeCallbackCookie; // provides access to the AudioRecord callback data
Eric Laurent4bcdba82015-05-01 11:37:49 -070048 jfieldID nativeDeviceCallback; // provides access to the JNIDeviceCallback instance
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049};
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -070050struct audio_attributes_fields_t {
51 jfieldID fieldRecSource; // AudioAttributes.mSource
Eric Laurentbdad1af2014-09-19 17:43:29 -070052 jfieldID fieldFlags; // AudioAttributes.mFlags
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -070053 jfieldID fieldFormattedTags;// AudioAttributes.mFormattedTags
54};
55static audio_attributes_fields_t javaAudioAttrFields;
56static audio_record_fields_t javaAudioRecordFields;
Andy Hung0ad99c02016-01-15 17:53:47 -080057static struct {
58 jfieldID fieldFramePosition; // AudioTimestamp.framePosition
59 jfieldID fieldNanoTime; // AudioTimestamp.nanoTime
60} javaAudioTimestampFields;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061
62struct audiorecord_callback_cookie {
63 jclass audioRecord_class;
64 jobject audioRecord_ref;
Eric Laurent532bc1c2012-04-20 12:45:03 -070065 bool busy;
66 Condition cond;
67};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068
Eric Laurent532bc1c2012-04-20 12:45:03 -070069static Mutex sLock;
70static SortedVector <audiorecord_callback_cookie *> sAudioRecordCallBackCookies;
Dave Sparkse6335c92010-03-13 17:08:22 -080071
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072// ----------------------------------------------------------------------------
73
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074#define AUDIORECORD_ERROR_SETUP_ZEROFRAMECOUNT -16
Eric Laurenta553c252009-07-17 12:17:14 -070075#define AUDIORECORD_ERROR_SETUP_INVALIDCHANNELMASK -17
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076#define AUDIORECORD_ERROR_SETUP_INVALIDFORMAT -18
Eric Laurent4bc035a2009-05-22 09:18:15 -070077#define AUDIORECORD_ERROR_SETUP_INVALIDSOURCE -19
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078#define AUDIORECORD_ERROR_SETUP_NATIVEINITFAILED -20
79
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080// ----------------------------------------------------------------------------
81static void recorderCallback(int event, void* user, void *info) {
Eric Laurent532bc1c2012-04-20 12:45:03 -070082
83 audiorecord_callback_cookie *callbackInfo = (audiorecord_callback_cookie *)user;
84 {
85 Mutex::Autolock l(sLock);
86 if (sAudioRecordCallBackCookies.indexOf(callbackInfo) < 0) {
87 return;
88 }
89 callbackInfo->busy = true;
90 }
Glenn Kasten18db49a2012-03-12 16:29:55 -070091
Glenn Kasten5b1576c2013-07-18 16:58:19 -070092 switch (event) {
93 case AudioRecord::EVENT_MARKER: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 JNIEnv *env = AndroidRuntime::getJNIEnv();
Glenn Kastena667ff32013-07-22 07:36:34 -070095 if (user != NULL && env != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 env->CallStaticVoidMethod(
Glenn Kasten18db49a2012-03-12 16:29:55 -070097 callbackInfo->audioRecord_class,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 javaAudioRecordFields.postNativeEventInJava,
99 callbackInfo->audioRecord_ref, event, 0,0, NULL);
100 if (env->ExceptionCheck()) {
101 env->ExceptionDescribe();
102 env->ExceptionClear();
103 }
104 }
Glenn Kasten5b1576c2013-07-18 16:58:19 -0700105 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106
Glenn Kasten5b1576c2013-07-18 16:58:19 -0700107 case AudioRecord::EVENT_NEW_POS: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 JNIEnv *env = AndroidRuntime::getJNIEnv();
Glenn Kastena667ff32013-07-22 07:36:34 -0700109 if (user != NULL && env != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 env->CallStaticVoidMethod(
Glenn Kasten18db49a2012-03-12 16:29:55 -0700111 callbackInfo->audioRecord_class,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 javaAudioRecordFields.postNativeEventInJava,
113 callbackInfo->audioRecord_ref, event, 0,0, NULL);
114 if (env->ExceptionCheck()) {
115 env->ExceptionDescribe();
116 env->ExceptionClear();
117 }
118 }
Glenn Kasten5b1576c2013-07-18 16:58:19 -0700119 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 }
Glenn Kasten5b1576c2013-07-18 16:58:19 -0700121
Eric Laurent532bc1c2012-04-20 12:45:03 -0700122 {
123 Mutex::Autolock l(sLock);
124 callbackInfo->busy = false;
125 callbackInfo->cond.broadcast();
126 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127}
128
Eric Laurent4bcdba82015-05-01 11:37:49 -0700129static sp<JNIDeviceCallback> getJniDeviceCallback(JNIEnv* env, jobject thiz)
130{
131 Mutex::Autolock l(sLock);
132 JNIDeviceCallback* const cb =
133 (JNIDeviceCallback*)env->GetLongField(thiz,
134 javaAudioRecordFields.nativeDeviceCallback);
135 return sp<JNIDeviceCallback>(cb);
136}
137
138static sp<JNIDeviceCallback> setJniDeviceCallback(JNIEnv* env,
139 jobject thiz,
140 const sp<JNIDeviceCallback>& cb)
141{
142 Mutex::Autolock l(sLock);
143 sp<JNIDeviceCallback> old =
144 (JNIDeviceCallback*)env->GetLongField(thiz,
145 javaAudioRecordFields.nativeDeviceCallback);
146 if (cb.get()) {
147 cb->incStrong((void*)setJniDeviceCallback);
148 }
149 if (old != 0) {
150 old->decStrong((void*)setJniDeviceCallback);
151 }
152 env->SetLongField(thiz, javaAudioRecordFields.nativeDeviceCallback, (jlong)cb.get());
153 return old;
154}
155
Eric Laurent532bc1c2012-04-20 12:45:03 -0700156// ----------------------------------------------------------------------------
157static sp<AudioRecord> getAudioRecord(JNIEnv* env, jobject thiz)
158{
159 Mutex::Autolock l(sLock);
160 AudioRecord* const ar =
Ashok Bhat075e9a12014-01-06 13:45:09 +0000161 (AudioRecord*)env->GetLongField(thiz, javaAudioRecordFields.nativeRecorderInJavaObj);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700162 return sp<AudioRecord>(ar);
163}
164
165static sp<AudioRecord> setAudioRecord(JNIEnv* env, jobject thiz, const sp<AudioRecord>& ar)
166{
167 Mutex::Autolock l(sLock);
168 sp<AudioRecord> old =
Ashok Bhat075e9a12014-01-06 13:45:09 +0000169 (AudioRecord*)env->GetLongField(thiz, javaAudioRecordFields.nativeRecorderInJavaObj);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700170 if (ar.get()) {
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800171 ar->incStrong((void*)setAudioRecord);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700172 }
173 if (old != 0) {
Mathias Agopianb1d90c82013-03-06 17:45:42 -0800174 old->decStrong((void*)setAudioRecord);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700175 }
Ashok Bhat075e9a12014-01-06 13:45:09 +0000176 env->SetLongField(thiz, javaAudioRecordFields.nativeRecorderInJavaObj, (jlong)ar.get());
Eric Laurent532bc1c2012-04-20 12:45:03 -0700177 return old;
178}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179
180// ----------------------------------------------------------------------------
Ashok Bhat075e9a12014-01-06 13:45:09 +0000181static jint
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182android_media_AudioRecord_setup(JNIEnv *env, jobject thiz, jobject weak_this,
Andy Hung98d4ca62015-04-19 22:33:15 -0700183 jobject jaa, jint sampleRateInHertz, jint channelMask, jint channelIndexMask,
Svet Ganovfa5ecdc2015-04-28 12:03:28 -0700184 jint audioFormat, jint buffSizeInBytes, jintArray jSession, jstring opPackageName)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185{
Steve Block71f2cf12011-10-20 11:56:00 +0100186 //ALOGV(">> Entering android_media_AudioRecord_setup");
Glenn Kasten33c437d2013-07-18 17:04:21 -0700187 //ALOGV("sampleRate=%d, audioFormat=%d, channel mask=%x, buffSizeInBytes=%d",
188 // sampleRateInHertz, audioFormat, channelMask, buffSizeInBytes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700190 if (jaa == 0) {
191 ALOGE("Error creating AudioRecord: invalid audio attributes");
192 return (jint) AUDIO_JAVA_ERROR;
193 }
194
Andy Hung98d4ca62015-04-19 22:33:15 -0700195 // channel index mask takes priority over channel position masks.
196 if (channelIndexMask) {
197 // Java channel index masks need the representation bits set.
198 channelMask = audio_channel_mask_from_representation_and_bits(
199 AUDIO_CHANNEL_REPRESENTATION_INDEX,
200 channelIndexMask);
201 }
202 // Java channel position masks map directly to the native definition
203
Glenn Kasten33c437d2013-07-18 17:04:21 -0700204 if (!audio_is_input_channel(channelMask)) {
205 ALOGE("Error creating AudioRecord: channel mask %#x is not valid.", channelMask);
Ashok Bhat075e9a12014-01-06 13:45:09 +0000206 return (jint) AUDIORECORD_ERROR_SETUP_INVALIDCHANNELMASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 }
Eric Laurentdbf55662014-07-01 18:56:30 -0700208 uint32_t channelCount = audio_channel_count_from_in_mask(channelMask);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209
210 // compare the format against the Java constants
Glenn Kastena5a42382013-12-19 12:34:56 -0800211 audio_format_t format = audioFormatToNative(audioFormat);
212 if (format == AUDIO_FORMAT_INVALID) {
Glenn Kastena9838af2013-11-22 13:34:35 -0800213 ALOGE("Error creating AudioRecord: unsupported audio format %d.", audioFormat);
Ashok Bhat075e9a12014-01-06 13:45:09 +0000214 return (jint) AUDIORECORD_ERROR_SETUP_INVALIDFORMAT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 }
216
Glenn Kastena5a42382013-12-19 12:34:56 -0800217 size_t bytesPerSample = audio_bytes_per_sample(format);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218
219 if (buffSizeInBytes == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000220 ALOGE("Error creating AudioRecord: frameCount is 0.");
Ashok Bhat075e9a12014-01-06 13:45:09 +0000221 return (jint) AUDIORECORD_ERROR_SETUP_ZEROFRAMECOUNT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 }
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800223 size_t frameSize = channelCount * bytesPerSample;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 size_t frameCount = buffSizeInBytes / frameSize;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700225
Eric Laurent532bc1c2012-04-20 12:45:03 -0700226 jclass clazz = env->GetObjectClass(thiz);
227 if (clazz == NULL) {
228 ALOGE("Can't find %s when setting up callback.", kClassPathName);
Ashok Bhat075e9a12014-01-06 13:45:09 +0000229 return (jint) AUDIORECORD_ERROR_SETUP_NATIVEINITFAILED;
Eric Laurent532bc1c2012-04-20 12:45:03 -0700230 }
231
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700232 if (jSession == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000233 ALOGE("Error creating AudioRecord: invalid session ID pointer");
Eric Laurentbc11a692014-05-16 12:19:25 -0700234 return (jint) AUDIO_JAVA_ERROR;
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700235 }
236
237 jint* nSession = (jint *) env->GetPrimitiveArrayCritical(jSession, NULL);
238 if (nSession == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000239 ALOGE("Error creating AudioRecord: Error retrieving session id pointer");
Eric Laurentbc11a692014-05-16 12:19:25 -0700240 return (jint) AUDIO_JAVA_ERROR;
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700241 }
242 int sessionId = nSession[0];
243 env->ReleasePrimitiveArrayCritical(jSession, nSession, 0);
244 nSession = NULL;
245
Svet Ganovfa5ecdc2015-04-28 12:03:28 -0700246 ScopedUtfChars opPackageNameStr(env, opPackageName);
247
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 // create an uninitialized AudioRecord object
Svet Ganovfa5ecdc2015-04-28 12:03:28 -0700249 sp<AudioRecord> lpRecorder = new AudioRecord(String16(opPackageNameStr.c_str()));
Glenn Kasten18db49a2012-03-12 16:29:55 -0700250
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700251 audio_attributes_t *paa = NULL;
252 // read the AudioAttributes values
253 paa = (audio_attributes_t *) calloc(1, sizeof(audio_attributes_t));
254 const jstring jtags =
255 (jstring) env->GetObjectField(jaa, javaAudioAttrFields.fieldFormattedTags);
256 const char* tags = env->GetStringUTFChars(jtags, NULL);
257 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
258 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
259 env->ReleaseStringUTFChars(jtags, tags);
260 paa->source = (audio_source_t) env->GetIntField(jaa, javaAudioAttrFields.fieldRecSource);
Eric Laurentbdad1af2014-09-19 17:43:29 -0700261 paa->flags = (audio_flags_mask_t)env->GetIntField(jaa, javaAudioAttrFields.fieldFlags);
262 ALOGV("AudioRecord_setup for source=%d tags=%s flags=%08x", paa->source, paa->tags, paa->flags);
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700263
Eric Laurentbdad1af2014-09-19 17:43:29 -0700264 audio_input_flags_t flags = AUDIO_INPUT_FLAG_NONE;
265 if (paa->flags & AUDIO_FLAG_HW_HOTWORD) {
266 flags = AUDIO_INPUT_FLAG_HW_HOTWORD;
267 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 // create the callback information:
269 // this data will be passed with every AudioRecord callback
Eric Laurent532bc1c2012-04-20 12:45:03 -0700270 audiorecord_callback_cookie *lpCallbackData = new audiorecord_callback_cookie;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 lpCallbackData->audioRecord_class = (jclass)env->NewGlobalRef(clazz);
272 // we use a weak reference so the AudioRecord object can be garbage collected.
273 lpCallbackData->audioRecord_ref = env->NewGlobalRef(weak_this);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700274 lpCallbackData->busy = false;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700275
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700276 const status_t status = lpRecorder->set(paa->source,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 sampleRateInHertz,
278 format, // word length, PCM
Glenn Kasten33c437d2013-07-18 17:04:21 -0700279 channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 frameCount,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 recorderCallback,// callback_t
282 lpCallbackData,// void* user
283 0, // notificationFrames,
Glenn Kasten86fad472012-06-21 16:21:36 -0700284 true, // threadCanCallJava
Eric Laurentbdad1af2014-09-19 17:43:29 -0700285 sessionId,
286 AudioRecord::TRANSFER_DEFAULT,
Eric Laurent4c3fc59b2014-11-26 09:46:44 -0800287 flags,
Jean-Michel Trivi60e1dc22015-05-01 18:48:29 -0700288 -1, -1, // default uid, pid
Eric Laurent4c3fc59b2014-11-26 09:46:44 -0800289 paa);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290
Glenn Kastena9838af2013-11-22 13:34:35 -0800291 if (status != NO_ERROR) {
292 ALOGE("Error creating AudioRecord instance: initialization check failed with status %d.",
293 status);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 goto native_init_failure;
295 }
296
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700297 nSession = (jint *) env->GetPrimitiveArrayCritical(jSession, NULL);
298 if (nSession == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000299 ALOGE("Error creating AudioRecord: Error retrieving session id pointer");
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700300 goto native_init_failure;
301 }
Glenn Kastenb3db2132012-01-19 08:59:58 -0800302 // read the audio session ID back from AudioRecord in case a new session was created during set()
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700303 nSession[0] = lpRecorder->getSessionId();
304 env->ReleasePrimitiveArrayCritical(jSession, nSession, 0);
305 nSession = NULL;
306
Eric Laurent532bc1c2012-04-20 12:45:03 -0700307 { // scope for the lock
308 Mutex::Autolock l(sLock);
309 sAudioRecordCallBackCookies.add(lpCallbackData);
310 }
Glenn Kasten18db49a2012-03-12 16:29:55 -0700311 // save our newly created C++ AudioRecord in the "nativeRecorderInJavaObj" field
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 // of the Java object
Eric Laurent532bc1c2012-04-20 12:45:03 -0700313 setAudioRecord(env, thiz, lpRecorder);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700314
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 // save our newly created callback information in the "nativeCallbackCookie" field
316 // of the Java object (in mNativeCallbackCookie) so we can free the memory in finalize()
Ashok Bhat075e9a12014-01-06 13:45:09 +0000317 env->SetLongField(thiz, javaAudioRecordFields.nativeCallbackCookie, (jlong)lpCallbackData);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700318
Eric Laurentbc11a692014-05-16 12:19:25 -0700319 return (jint) AUDIO_JAVA_SUCCESS;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700320
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321 // failure:
322native_init_failure:
Jean-Michel Trivi4bac5a32009-07-17 12:05:31 -0700323 env->DeleteGlobalRef(lpCallbackData->audioRecord_class);
324 env->DeleteGlobalRef(lpCallbackData->audioRecord_ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 delete lpCallbackData;
Ashok Bhat075e9a12014-01-06 13:45:09 +0000326 env->SetLongField(thiz, javaAudioRecordFields.nativeCallbackCookie, 0);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700327
Glenn Kasten14d226a2015-05-18 13:53:39 -0700328 // lpRecorder goes out of scope, so reference count drops to zero
Ashok Bhat075e9a12014-01-06 13:45:09 +0000329 return (jint) AUDIORECORD_ERROR_SETUP_NATIVEINITFAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330}
331
332
333
334// ----------------------------------------------------------------------------
Ashok Bhat075e9a12014-01-06 13:45:09 +0000335static jint
Eric Laurent505e5c82012-03-29 15:19:36 -0700336android_media_AudioRecord_start(JNIEnv *env, jobject thiz, jint event, jint triggerSession)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337{
Eric Laurent532bc1c2012-04-20 12:45:03 -0700338 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339 if (lpRecorder == NULL ) {
340 jniThrowException(env, "java/lang/IllegalStateException", NULL);
Eric Laurentbc11a692014-05-16 12:19:25 -0700341 return (jint) AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342 }
Glenn Kasten18db49a2012-03-12 16:29:55 -0700343
Eric Laurentbc11a692014-05-16 12:19:25 -0700344 return nativeToJavaStatus(
Eric Laurent505e5c82012-03-29 15:19:36 -0700345 lpRecorder->start((AudioSystem::sync_event_t)event, triggerSession));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346}
347
348
349// ----------------------------------------------------------------------------
350static void
351android_media_AudioRecord_stop(JNIEnv *env, jobject thiz)
352{
Eric Laurent532bc1c2012-04-20 12:45:03 -0700353 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 if (lpRecorder == NULL ) {
355 jniThrowException(env, "java/lang/IllegalStateException", NULL);
356 return;
357 }
358
359 lpRecorder->stop();
Steve Block71f2cf12011-10-20 11:56:00 +0100360 //ALOGV("Called lpRecorder->stop()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361}
362
363
364// ----------------------------------------------------------------------------
Dave Sparkse6335c92010-03-13 17:08:22 -0800365
Eric Laurent532bc1c2012-04-20 12:45:03 -0700366#define CALLBACK_COND_WAIT_TIMEOUT_MS 1000
367static void android_media_AudioRecord_release(JNIEnv *env, jobject thiz) {
368 sp<AudioRecord> lpRecorder = setAudioRecord(env, thiz, 0);
369 if (lpRecorder == NULL) {
370 return;
371 }
Glenn Kasten2fbf25b2014-03-28 15:41:58 -0700372 ALOGV("About to delete lpRecorder: %p", lpRecorder.get());
Eric Laurent532bc1c2012-04-20 12:45:03 -0700373 lpRecorder->stop();
374
Ashok Bhat075e9a12014-01-06 13:45:09 +0000375 audiorecord_callback_cookie *lpCookie = (audiorecord_callback_cookie *)env->GetLongField(
Dave Sparkse6335c92010-03-13 17:08:22 -0800376 thiz, javaAudioRecordFields.nativeCallbackCookie);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377
Dave Sparkse6335c92010-03-13 17:08:22 -0800378 // reset the native resources in the Java object so any attempt to access
379 // them after a call to release fails.
Ashok Bhat075e9a12014-01-06 13:45:09 +0000380 env->SetLongField(thiz, javaAudioRecordFields.nativeCallbackCookie, 0);
Dave Sparkse6335c92010-03-13 17:08:22 -0800381
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 // delete the callback information
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383 if (lpCookie) {
Eric Laurent532bc1c2012-04-20 12:45:03 -0700384 Mutex::Autolock l(sLock);
Glenn Kasten2fbf25b2014-03-28 15:41:58 -0700385 ALOGV("deleting lpCookie: %p", lpCookie);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700386 while (lpCookie->busy) {
387 if (lpCookie->cond.waitRelative(sLock,
388 milliseconds(CALLBACK_COND_WAIT_TIMEOUT_MS)) !=
389 NO_ERROR) {
390 break;
391 }
392 }
393 sAudioRecordCallBackCookies.remove(lpCookie);
Jean-Michel Trivi4bac5a32009-07-17 12:05:31 -0700394 env->DeleteGlobalRef(lpCookie->audioRecord_class);
395 env->DeleteGlobalRef(lpCookie->audioRecord_ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800396 delete lpCookie;
397 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398}
399
400
401// ----------------------------------------------------------------------------
Dave Sparkse6335c92010-03-13 17:08:22 -0800402static void android_media_AudioRecord_finalize(JNIEnv *env, jobject thiz) {
403 android_media_AudioRecord_release(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404}
405
Andy Hung0e9e2f32015-04-13 23:47:18 -0700406// overloaded JNI array helper functions
407static inline
408jbyte *envGetArrayElements(JNIEnv *env, jbyteArray array, jboolean *isCopy) {
409 return env->GetByteArrayElements(array, isCopy);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410}
411
Andy Hung0e9e2f32015-04-13 23:47:18 -0700412static inline
413void envReleaseArrayElements(JNIEnv *env, jbyteArray array, jbyte *elems, jint mode) {
414 env->ReleaseByteArrayElements(array, elems, mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415}
416
Andy Hung0e9e2f32015-04-13 23:47:18 -0700417static inline
418jshort *envGetArrayElements(JNIEnv *env, jshortArray array, jboolean *isCopy) {
419 return env->GetShortArrayElements(array, isCopy);
420}
421
422static inline
423void envReleaseArrayElements(JNIEnv *env, jshortArray array, jshort *elems, jint mode) {
424 env->ReleaseShortArrayElements(array, elems, mode);
425}
426
427static inline
428jfloat *envGetArrayElements(JNIEnv *env, jfloatArray array, jboolean *isCopy) {
429 return env->GetFloatArrayElements(array, isCopy);
430}
431
432static inline
433void envReleaseArrayElements(JNIEnv *env, jfloatArray array, jfloat *elems, jint mode) {
434 env->ReleaseFloatArrayElements(array, elems, mode);
435}
436
437static inline
438jint interpretReadSizeError(ssize_t readSize) {
439 ALOGE_IF(readSize != WOULD_BLOCK, "Error %zd during AudioRecord native read", readSize);
440 switch (readSize) {
441 case WOULD_BLOCK:
442 return (jint)0;
443 case BAD_VALUE:
444 return (jint)AUDIO_JAVA_BAD_VALUE;
445 default:
446 // may be possible for other errors such as
447 // NO_INIT to happen if restoreRecord_l fails.
448 case INVALID_OPERATION:
449 return (jint)AUDIO_JAVA_INVALID_OPERATION;
450 }
451}
452
453template <typename T>
454static jint android_media_AudioRecord_readInArray(JNIEnv *env, jobject thiz,
455 T javaAudioData,
456 jint offsetInSamples, jint sizeInSamples,
457 jboolean isReadBlocking) {
Andy Hung58b0f3f2015-03-27 17:59:45 -0700458 // get the audio recorder from which we'll read new audio samples
459 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
460 if (lpRecorder == NULL) {
461 ALOGE("Unable to retrieve AudioRecord object");
462 return (jint)AUDIO_JAVA_INVALID_OPERATION;
463 }
464
465 if (javaAudioData == NULL) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700466 ALOGE("Invalid Java array to store recorded audio");
467 return (jint)AUDIO_JAVA_BAD_VALUE;
468 }
Andy Hung58b0f3f2015-03-27 17:59:45 -0700469
Andy Hung58b0f3f2015-03-27 17:59:45 -0700470 // NOTE: We may use GetPrimitiveArrayCritical() when the JNI implementation changes in such
471 // a way that it becomes much more efficient. When doing so, we will have to prevent the
472 // AudioSystem callback to be called while in critical section (in case of media server
473 // process crash for instance)
Andy Hung0e9e2f32015-04-13 23:47:18 -0700474
475 // get the pointer to where we'll record the audio
476 auto *recordBuff = envGetArrayElements(env, javaAudioData, NULL);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700477 if (recordBuff == NULL) {
478 ALOGE("Error retrieving destination for recorded audio data");
479 return (jint)AUDIO_JAVA_BAD_VALUE;
480 }
481
482 // read the new audio data from the native AudioRecord object
Andy Hung0e9e2f32015-04-13 23:47:18 -0700483 const size_t sizeInBytes = sizeInSamples * sizeof(*recordBuff);
484 ssize_t readSize = lpRecorder->read(
485 recordBuff + offsetInSamples, sizeInBytes, isReadBlocking == JNI_TRUE /* blocking */);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700486
Andy Hung0e9e2f32015-04-13 23:47:18 -0700487 envReleaseArrayElements(env, javaAudioData, recordBuff, 0);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700488
489 if (readSize < 0) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700490 return interpretReadSizeError(readSize);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700491 }
Andy Hung0e9e2f32015-04-13 23:47:18 -0700492 return (jint)(readSize / sizeof(*recordBuff));
Andy Hung58b0f3f2015-03-27 17:59:45 -0700493}
494
495// ----------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496static jint android_media_AudioRecord_readInDirectBuffer(JNIEnv *env, jobject thiz,
Andy Hung0e9e2f32015-04-13 23:47:18 -0700497 jobject jBuffer, jint sizeInBytes,
498 jboolean isReadBlocking) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 // get the audio recorder from which we'll read new audio samples
Eric Laurent532bc1c2012-04-20 12:45:03 -0700500 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700501 if (lpRecorder==NULL)
Andy Hung0e9e2f32015-04-13 23:47:18 -0700502 return (jint)AUDIO_JAVA_INVALID_OPERATION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503
504 // direct buffer and direct access supported?
505 long capacity = env->GetDirectBufferCapacity(jBuffer);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700506 if (capacity == -1) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800507 // buffer direct access is not supported
Steve Block3762c312012-01-06 19:20:56 +0000508 ALOGE("Buffer direct access is not supported, can't record");
Andy Hung0e9e2f32015-04-13 23:47:18 -0700509 return (jint)AUDIO_JAVA_BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800510 }
Steve Block71f2cf12011-10-20 11:56:00 +0100511 //ALOGV("capacity = %ld", capacity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512 jbyte* nativeFromJavaBuf = (jbyte*) env->GetDirectBufferAddress(jBuffer);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700513 if (nativeFromJavaBuf==NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000514 ALOGE("Buffer direct access is not supported, can't record");
Andy Hung0e9e2f32015-04-13 23:47:18 -0700515 return (jint)AUDIO_JAVA_BAD_VALUE;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700516 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517
518 // read new data from the recorder
Eric Laurent357263d2013-09-09 10:31:59 -0700519 ssize_t readSize = lpRecorder->read(nativeFromJavaBuf,
Andy Hung0e9e2f32015-04-13 23:47:18 -0700520 capacity < sizeInBytes ? capacity : sizeInBytes,
521 isReadBlocking == JNI_TRUE /* blocking */);
Eric Laurent357263d2013-09-09 10:31:59 -0700522 if (readSize < 0) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700523 return interpretReadSizeError(readSize);
Eric Laurent357263d2013-09-09 10:31:59 -0700524 }
525 return (jint)readSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526}
527
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800528// ----------------------------------------------------------------------------
Andy Hunge90a0a82015-05-19 15:44:31 -0700529static jint android_media_AudioRecord_get_buffer_size_in_frames(JNIEnv *env, jobject thiz) {
Andy Hung864ae672015-04-14 11:06:48 -0700530 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
531 if (lpRecorder == NULL) {
532 jniThrowException(env, "java/lang/IllegalStateException",
Andy Hunge90a0a82015-05-19 15:44:31 -0700533 "Unable to retrieve AudioRecord pointer for frameCount()");
Andy Hung864ae672015-04-14 11:06:48 -0700534 return (jint)AUDIO_JAVA_ERROR;
535 }
536 return lpRecorder->frameCount();
537}
538
539// ----------------------------------------------------------------------------
Glenn Kasten18db49a2012-03-12 16:29:55 -0700540static jint android_media_AudioRecord_set_marker_pos(JNIEnv *env, jobject thiz,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 jint markerPos) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700542
Eric Laurent532bc1c2012-04-20 12:45:03 -0700543 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
544 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545 jniThrowException(env, "java/lang/IllegalStateException",
546 "Unable to retrieve AudioRecord pointer for setMarkerPosition()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700547 return (jint)AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800548 }
Eric Laurentbc11a692014-05-16 12:19:25 -0700549 return nativeToJavaStatus( lpRecorder->setMarkerPosition(markerPos) );
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800550}
551
552
553// ----------------------------------------------------------------------------
554static jint android_media_AudioRecord_get_marker_pos(JNIEnv *env, jobject thiz) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700555
Eric Laurent532bc1c2012-04-20 12:45:03 -0700556 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800557 uint32_t markerPos = 0;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700558
Eric Laurent532bc1c2012-04-20 12:45:03 -0700559 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800560 jniThrowException(env, "java/lang/IllegalStateException",
561 "Unable to retrieve AudioRecord pointer for getMarkerPosition()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700562 return (jint)AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800563 }
Eric Laurent532bc1c2012-04-20 12:45:03 -0700564 lpRecorder->getMarkerPosition(&markerPos);
565 return (jint)markerPos;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566}
567
568
569// ----------------------------------------------------------------------------
570static jint android_media_AudioRecord_set_pos_update_period(JNIEnv *env, jobject thiz,
571 jint period) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700572
Eric Laurent532bc1c2012-04-20 12:45:03 -0700573 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700574
Eric Laurent532bc1c2012-04-20 12:45:03 -0700575 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576 jniThrowException(env, "java/lang/IllegalStateException",
577 "Unable to retrieve AudioRecord pointer for setPositionUpdatePeriod()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700578 return (jint)AUDIO_JAVA_ERROR;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700579 }
Eric Laurentbc11a692014-05-16 12:19:25 -0700580 return nativeToJavaStatus( lpRecorder->setPositionUpdatePeriod(period) );
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581}
582
583
584// ----------------------------------------------------------------------------
585static jint android_media_AudioRecord_get_pos_update_period(JNIEnv *env, jobject thiz) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700586
Eric Laurent532bc1c2012-04-20 12:45:03 -0700587 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800588 uint32_t period = 0;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700589
Eric Laurent532bc1c2012-04-20 12:45:03 -0700590 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 jniThrowException(env, "java/lang/IllegalStateException",
592 "Unable to retrieve AudioRecord pointer for getPositionUpdatePeriod()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700593 return (jint)AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800594 }
Eric Laurent532bc1c2012-04-20 12:45:03 -0700595 lpRecorder->getPositionUpdatePeriod(&period);
596 return (jint)period;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597}
598
599
600// ----------------------------------------------------------------------------
601// returns the minimum required size for the successful creation of an AudioRecord instance.
602// returns 0 if the parameter combination is not supported.
603// return -1 if there was an error querying the buffer size.
604static jint android_media_AudioRecord_get_min_buff_size(JNIEnv *env, jobject thiz,
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800605 jint sampleRateInHertz, jint channelCount, jint audioFormat) {
Chia-chi Yehc3308072010-08-19 17:14:36 +0800606
Eric Laurent532bc1c2012-04-20 12:45:03 -0700607 ALOGV(">> android_media_AudioRecord_get_min_buff_size(%d, %d, %d)",
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800608 sampleRateInHertz, channelCount, audioFormat);
Chia-chi Yehc3308072010-08-19 17:14:36 +0800609
Glenn Kastenfd1e3df2012-11-13 15:21:06 -0800610 size_t frameCount = 0;
Glenn Kastena5a42382013-12-19 12:34:56 -0800611 audio_format_t format = audioFormatToNative(audioFormat);
Chia-chi Yehc3308072010-08-19 17:14:36 +0800612 status_t result = AudioRecord::getMinFrameCount(&frameCount,
613 sampleRateInHertz,
Glenn Kastena5a42382013-12-19 12:34:56 -0800614 format,
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800615 audio_channel_in_mask_from_count(channelCount));
Chia-chi Yehc3308072010-08-19 17:14:36 +0800616
617 if (result == BAD_VALUE) {
618 return 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 }
Chia-chi Yehc3308072010-08-19 17:14:36 +0800620 if (result != NO_ERROR) {
621 return -1;
622 }
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800623 return frameCount * channelCount * audio_bytes_per_sample(format);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624}
625
Paul McLean2d6de4c2015-04-17 13:13:28 -0600626static jboolean android_media_AudioRecord_setInputDevice(
627 JNIEnv *env, jobject thiz, jint device_id) {
628
Paul McLean6bd27e12015-04-24 14:01:29 -0600629 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Eric Laurent4bcdba82015-05-01 11:37:49 -0700630 if (lpRecorder == 0) {
Paul McLeancef696e2015-05-21 08:51:18 -0700631 return false;
Eric Laurent4bcdba82015-05-01 11:37:49 -0700632 }
Paul McLean6bd27e12015-04-24 14:01:29 -0600633 return lpRecorder->setInputDevice(device_id) == NO_ERROR;
Paul McLean2d6de4c2015-04-17 13:13:28 -0600634}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800635
Eric Laurent4bcdba82015-05-01 11:37:49 -0700636static jint android_media_AudioRecord_getRoutedDeviceId(
637 JNIEnv *env, jobject thiz) {
638
639 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
640 if (lpRecorder == 0) {
641 return 0;
642 }
643 return (jint)lpRecorder->getRoutedDeviceId();
644}
645
646static void android_media_AudioRecord_enableDeviceCallback(
647 JNIEnv *env, jobject thiz) {
648
649 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
650 if (lpRecorder == 0) {
651 return;
652 }
653 sp<JNIDeviceCallback> cb = getJniDeviceCallback(env, thiz);
654 if (cb != 0) {
655 return;
656 }
657 audiorecord_callback_cookie *cookie =
658 (audiorecord_callback_cookie *)env->GetLongField(thiz,
659 javaAudioRecordFields.nativeCallbackCookie);
660 if (cookie == NULL) {
661 return;
662 }
663
664 cb = new JNIDeviceCallback(env, thiz, cookie->audioRecord_ref,
665 javaAudioRecordFields.postNativeEventInJava);
666 status_t status = lpRecorder->addAudioDeviceCallback(cb);
667 if (status == NO_ERROR) {
668 setJniDeviceCallback(env, thiz, cb);
669 }
670}
671
672static void android_media_AudioRecord_disableDeviceCallback(
673 JNIEnv *env, jobject thiz) {
674
675 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
676 if (lpRecorder == 0) {
677 return;
678 }
679 sp<JNIDeviceCallback> cb = setJniDeviceCallback(env, thiz, 0);
680 if (cb != 0) {
681 lpRecorder->removeAudioDeviceCallback(cb);
682 }
683}
684
Andy Hung0ad99c02016-01-15 17:53:47 -0800685// ----------------------------------------------------------------------------
686static jint android_media_AudioRecord_get_timestamp(JNIEnv *env, jobject thiz,
687 jobject timestamp, jint timebase) {
688 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Eric Laurent4bcdba82015-05-01 11:37:49 -0700689
Andy Hung0ad99c02016-01-15 17:53:47 -0800690 if (lpRecorder == NULL) {
691 jniThrowException(env, "java/lang/IllegalStateException",
692 "Unable to retrieve AudioRecord pointer for getTimestamp()");
693 return (jint)AUDIO_JAVA_ERROR;
694 }
695
Andy Hung0ad99c02016-01-15 17:53:47 -0800696 ExtendedTimestamp ts;
Andy Hungf4d81bd2016-01-28 17:47:56 -0800697 jint status = nativeToJavaStatus(lpRecorder->getTimestamp(&ts));
Andy Hung0ad99c02016-01-15 17:53:47 -0800698
699 if (status == AUDIO_JAVA_SUCCESS) {
700 // set the data
701 int64_t position, time;
702
703 status = nativeToJavaStatus(ts.getBestTimestamp(&position, &time, timebase));
704 if (status == AUDIO_JAVA_SUCCESS) {
705 env->SetLongField(
706 timestamp, javaAudioTimestampFields.fieldFramePosition, position);
707 env->SetLongField(
708 timestamp, javaAudioTimestampFields.fieldNanoTime, time);
709 }
710 }
711 return status;
Andy Hung0ad99c02016-01-15 17:53:47 -0800712}
Eric Laurent4bcdba82015-05-01 11:37:49 -0700713
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714// ----------------------------------------------------------------------------
715// ----------------------------------------------------------------------------
Daniel Micay76f6a862015-09-19 17:31:01 -0400716static const JNINativeMethod gMethods[] = {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800717 // name, signature, funcPtr
Eric Laurent505e5c82012-03-29 15:19:36 -0700718 {"native_start", "(II)I", (void *)android_media_AudioRecord_start},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719 {"native_stop", "()V", (void *)android_media_AudioRecord_stop},
Svet Ganovfa5ecdc2015-04-28 12:03:28 -0700720 {"native_setup", "(Ljava/lang/Object;Ljava/lang/Object;IIIII[ILjava/lang/String;)I",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721 (void *)android_media_AudioRecord_setup},
722 {"native_finalize", "()V", (void *)android_media_AudioRecord_finalize},
723 {"native_release", "()V", (void *)android_media_AudioRecord_release},
Glenn Kasten18db49a2012-03-12 16:29:55 -0700724 {"native_read_in_byte_array",
Andy Hung0e9e2f32015-04-13 23:47:18 -0700725 "([BIIZ)I",
726 (void *)android_media_AudioRecord_readInArray<jbyteArray>},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800727 {"native_read_in_short_array",
Andy Hung0e9e2f32015-04-13 23:47:18 -0700728 "([SIIZ)I",
729 (void *)android_media_AudioRecord_readInArray<jshortArray>},
Andy Hung58b0f3f2015-03-27 17:59:45 -0700730 {"native_read_in_float_array",
Andy Hung0e9e2f32015-04-13 23:47:18 -0700731 "([FIIZ)I",
732 (void *)android_media_AudioRecord_readInArray<jfloatArray>},
733 {"native_read_in_direct_buffer","(Ljava/lang/Object;IZ)I",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 (void *)android_media_AudioRecord_readInDirectBuffer},
Andy Hunge90a0a82015-05-19 15:44:31 -0700735 {"native_get_buffer_size_in_frames",
736 "()I", (void *)android_media_AudioRecord_get_buffer_size_in_frames},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800737 {"native_set_marker_pos","(I)I", (void *)android_media_AudioRecord_set_marker_pos},
738 {"native_get_marker_pos","()I", (void *)android_media_AudioRecord_get_marker_pos},
739 {"native_set_pos_update_period",
740 "(I)I", (void *)android_media_AudioRecord_set_pos_update_period},
741 {"native_get_pos_update_period",
742 "()I", (void *)android_media_AudioRecord_get_pos_update_period},
743 {"native_get_min_buff_size",
744 "(III)I", (void *)android_media_AudioRecord_get_min_buff_size},
Paul McLean2d6de4c2015-04-17 13:13:28 -0600745 {"native_setInputDevice", "(I)Z", (void *)android_media_AudioRecord_setInputDevice},
Eric Laurent4bcdba82015-05-01 11:37:49 -0700746 {"native_getRoutedDeviceId", "()I", (void *)android_media_AudioRecord_getRoutedDeviceId},
747 {"native_enableDeviceCallback", "()V", (void *)android_media_AudioRecord_enableDeviceCallback},
748 {"native_disableDeviceCallback", "()V",
749 (void *)android_media_AudioRecord_disableDeviceCallback},
Andy Hung0ad99c02016-01-15 17:53:47 -0800750 {"native_get_timestamp", "(Landroid/media/AudioTimestamp;I)I",
751 (void *)android_media_AudioRecord_get_timestamp},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752};
753
754// field names found in android/media/AudioRecord.java
755#define JAVA_POSTEVENT_CALLBACK_NAME "postEventFromNative"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800756#define JAVA_NATIVERECORDERINJAVAOBJ_FIELD_NAME "mNativeRecorderInJavaObj"
757#define JAVA_NATIVECALLBACKINFO_FIELD_NAME "mNativeCallbackCookie"
Eric Laurent4bcdba82015-05-01 11:37:49 -0700758#define JAVA_NATIVEDEVICECALLBACK_FIELD_NAME "mNativeDeviceCallback"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800759
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800760// ----------------------------------------------------------------------------
761int register_android_media_AudioRecord(JNIEnv *env)
762{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800763 javaAudioRecordFields.postNativeEventInJava = NULL;
764 javaAudioRecordFields.nativeRecorderInJavaObj = NULL;
765 javaAudioRecordFields.nativeCallbackCookie = NULL;
Eric Laurent4bcdba82015-05-01 11:37:49 -0700766 javaAudioRecordFields.nativeDeviceCallback = NULL;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700767
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768
769 // Get the AudioRecord class
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800770 jclass audioRecordClass = FindClassOrDie(env, kClassPathName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771 // Get the postEvent method
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800772 javaAudioRecordFields.postNativeEventInJava = GetStaticMethodIDOrDie(env,
773 audioRecordClass, JAVA_POSTEVENT_CALLBACK_NAME,
774 "(Ljava/lang/Object;IIILjava/lang/Object;)V");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775
776 // Get the variables
777 // mNativeRecorderInJavaObj
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800778 javaAudioRecordFields.nativeRecorderInJavaObj = GetFieldIDOrDie(env,
779 audioRecordClass, JAVA_NATIVERECORDERINJAVAOBJ_FIELD_NAME, "J");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 // mNativeCallbackCookie
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800781 javaAudioRecordFields.nativeCallbackCookie = GetFieldIDOrDie(env,
782 audioRecordClass, JAVA_NATIVECALLBACKINFO_FIELD_NAME, "J");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783
Eric Laurent4bcdba82015-05-01 11:37:49 -0700784 javaAudioRecordFields.nativeDeviceCallback = GetFieldIDOrDie(env,
785 audioRecordClass, JAVA_NATIVEDEVICECALLBACK_FIELD_NAME, "J");
786
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700787 // Get the AudioAttributes class and fields
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800788 jclass audioAttrClass = FindClassOrDie(env, kAudioAttributesClassPathName);
789 javaAudioAttrFields.fieldRecSource = GetFieldIDOrDie(env, audioAttrClass, "mSource", "I");
790 javaAudioAttrFields.fieldFlags = GetFieldIDOrDie(env, audioAttrClass, "mFlags", "I");
791 javaAudioAttrFields.fieldFormattedTags = GetFieldIDOrDie(env,
792 audioAttrClass, "mFormattedTags", "Ljava/lang/String;");
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700793
Andy Hung0ad99c02016-01-15 17:53:47 -0800794 // Get the RecordTimestamp class and fields
795 jclass audioTimestampClass = FindClassOrDie(env, "android/media/AudioTimestamp");
796 javaAudioTimestampFields.fieldFramePosition =
797 GetFieldIDOrDie(env, audioTimestampClass, "framePosition", "J");
798 javaAudioTimestampFields.fieldNanoTime =
799 GetFieldIDOrDie(env, audioTimestampClass, "nanoTime", "J");
800
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800801 return RegisterMethodsOrDie(env, kClassPathName, gMethods, NELEM(gMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802}
803
804// ----------------------------------------------------------------------------