blob: 5e93fc97de3fb15236a1c4a21755cb001b8e2ee3 [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
Chih-Hung Hsieh0ca16ef2016-05-19 15:14:54 -070074#define AUDIORECORD_ERROR_SETUP_ZEROFRAMECOUNT (-16)
75#define AUDIORECORD_ERROR_SETUP_INVALIDCHANNELMASK (-17)
76#define AUDIORECORD_ERROR_SETUP_INVALIDFORMAT (-18)
77#define AUDIORECORD_ERROR_SETUP_INVALIDSOURCE (-19)
78#define AUDIORECORD_ERROR_SETUP_NATIVEINITFAILED (-20)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
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,
Glenn Kasten1cbf9b32016-02-02 12:04:09 -0800183 jobject jaa, jintArray jSampleRate, jint channelMask, jint channelIndexMask,
Paul McLean9b09e532016-01-26 14:43:35 -0700184 jint audioFormat, jint buffSizeInBytes, jintArray jSession, jstring opPackageName,
185 jlong nativeRecordInJavaObj)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186{
Steve Block71f2cf12011-10-20 11:56:00 +0100187 //ALOGV(">> Entering android_media_AudioRecord_setup");
Paul McLean9b09e532016-01-26 14:43:35 -0700188 //ALOGV("sampleRate=%d, audioFormat=%d, channel mask=%x, buffSizeInBytes=%d "
189 // "nativeRecordInJavaObj=0x%llX",
190 // sampleRateInHertz, audioFormat, channelMask, buffSizeInBytes, nativeRecordInJavaObj);
191 audio_channel_mask_t localChanMask = inChannelMaskToNative(channelMask);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700192
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700193 if (jSession == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000194 ALOGE("Error creating AudioRecord: invalid session ID pointer");
Eric Laurentbc11a692014-05-16 12:19:25 -0700195 return (jint) AUDIO_JAVA_ERROR;
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700196 }
197
198 jint* nSession = (jint *) env->GetPrimitiveArrayCritical(jSession, NULL);
199 if (nSession == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000200 ALOGE("Error creating AudioRecord: Error retrieving session id pointer");
Eric Laurentbc11a692014-05-16 12:19:25 -0700201 return (jint) AUDIO_JAVA_ERROR;
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700202 }
Glenn Kasten33b84042016-03-08 12:02:55 -0800203 audio_session_t sessionId = (audio_session_t) nSession[0];
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700204 env->ReleasePrimitiveArrayCritical(jSession, nSession, 0);
205 nSession = NULL;
206
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700207 audio_attributes_t *paa = NULL;
Paul McLean9b09e532016-01-26 14:43:35 -0700208 sp<AudioRecord> lpRecorder = 0;
209 audiorecord_callback_cookie *lpCallbackData = NULL;
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700210
Paul McLean9b09e532016-01-26 14:43:35 -0700211 jclass clazz = env->GetObjectClass(thiz);
212 if (clazz == NULL) {
213 ALOGE("Can't find %s when setting up callback.", kClassPathName);
214 return (jint) AUDIORECORD_ERROR_SETUP_NATIVEINITFAILED;
Eric Laurentbdad1af2014-09-19 17:43:29 -0700215 }
Glenn Kasten18db49a2012-03-12 16:29:55 -0700216
Paul McLean9b09e532016-01-26 14:43:35 -0700217 // if we pass in an existing *Native* AudioRecord, we don't need to create/initialize one.
218 if (nativeRecordInJavaObj == 0) {
219 if (jaa == 0) {
220 ALOGE("Error creating AudioRecord: invalid audio attributes");
221 return (jint) AUDIO_JAVA_ERROR;
222 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223
Paul McLean9b09e532016-01-26 14:43:35 -0700224 if (jSampleRate == 0) {
225 ALOGE("Error creating AudioRecord: invalid sample rates");
226 return (jint) AUDIO_JAVA_ERROR;
227 }
228 jint elements[1];
229 env->GetIntArrayRegion(jSampleRate, 0, 1, elements);
230 int sampleRateInHertz = elements[0];
231
232 // channel index mask takes priority over channel position masks.
233 if (channelIndexMask) {
234 // Java channel index masks need the representation bits set.
235 localChanMask = audio_channel_mask_from_representation_and_bits(
236 AUDIO_CHANNEL_REPRESENTATION_INDEX,
237 channelIndexMask);
238 }
239 // Java channel position masks map directly to the native definition
240
241 if (!audio_is_input_channel(localChanMask)) {
242 ALOGE("Error creating AudioRecord: channel mask %#x is not valid.", localChanMask);
243 return (jint) AUDIORECORD_ERROR_SETUP_INVALIDCHANNELMASK;
244 }
245 uint32_t channelCount = audio_channel_count_from_in_mask(localChanMask);
246
247 // compare the format against the Java constants
248 audio_format_t format = audioFormatToNative(audioFormat);
249 if (format == AUDIO_FORMAT_INVALID) {
250 ALOGE("Error creating AudioRecord: unsupported audio format %d.", audioFormat);
251 return (jint) AUDIORECORD_ERROR_SETUP_INVALIDFORMAT;
252 }
253
254 size_t bytesPerSample = audio_bytes_per_sample(format);
255
256 if (buffSizeInBytes == 0) {
257 ALOGE("Error creating AudioRecord: frameCount is 0.");
258 return (jint) AUDIORECORD_ERROR_SETUP_ZEROFRAMECOUNT;
259 }
260 size_t frameSize = channelCount * bytesPerSample;
261 size_t frameCount = buffSizeInBytes / frameSize;
262
263 ScopedUtfChars opPackageNameStr(env, opPackageName);
264
265 // create an uninitialized AudioRecord object
266 lpRecorder = new AudioRecord(String16(opPackageNameStr.c_str()));
267
268 // read the AudioAttributes values
269 paa = (audio_attributes_t *) calloc(1, sizeof(audio_attributes_t));
270 const jstring jtags =
271 (jstring) env->GetObjectField(jaa, javaAudioAttrFields.fieldFormattedTags);
272 const char* tags = env->GetStringUTFChars(jtags, NULL);
273 // copying array size -1, char array for tags was calloc'd, no need to NULL-terminate it
274 strncpy(paa->tags, tags, AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1);
275 env->ReleaseStringUTFChars(jtags, tags);
276 paa->source = (audio_source_t) env->GetIntField(jaa, javaAudioAttrFields.fieldRecSource);
277 paa->flags = (audio_flags_mask_t)env->GetIntField(jaa, javaAudioAttrFields.fieldFlags);
278 ALOGV("AudioRecord_setup for source=%d tags=%s flags=%08x", paa->source, paa->tags, paa->flags);
279
280 audio_input_flags_t flags = AUDIO_INPUT_FLAG_NONE;
281 if (paa->flags & AUDIO_FLAG_HW_HOTWORD) {
282 flags = AUDIO_INPUT_FLAG_HW_HOTWORD;
283 }
284 // create the callback information:
285 // this data will be passed with every AudioRecord callback
286 lpCallbackData = new audiorecord_callback_cookie;
287 lpCallbackData->audioRecord_class = (jclass)env->NewGlobalRef(clazz);
288 // we use a weak reference so the AudioRecord object can be garbage collected.
289 lpCallbackData->audioRecord_ref = env->NewGlobalRef(weak_this);
290 lpCallbackData->busy = false;
291
292 const status_t status = lpRecorder->set(paa->source,
293 sampleRateInHertz,
294 format, // word length, PCM
295 localChanMask,
296 frameCount,
297 recorderCallback,// callback_t
298 lpCallbackData,// void* user
299 0, // notificationFrames,
300 true, // threadCanCallJava
301 sessionId,
302 AudioRecord::TRANSFER_DEFAULT,
303 flags,
304 -1, -1, // default uid, pid
305 paa);
306
307 if (status != NO_ERROR) {
308 ALOGE("Error creating AudioRecord instance: initialization check failed with status %d.",
309 status);
310 goto native_init_failure;
311 }
312 } else { // end if nativeRecordInJavaObj == 0)
313 lpRecorder = (AudioRecord*)nativeRecordInJavaObj;
314 // TODO: We need to find out which members of the Java AudioRecord might need to be
315 // initialized from the Native AudioRecord
316 // these are directly returned from getters:
317 // mSampleRate
318 // mRecordSource
319 // mAudioFormat
320 // mChannelMask
321 // mChannelCount
322 // mState (?)
323 // mRecordingState (?)
324 // mPreferredDevice
325
326 // create the callback information:
327 // this data will be passed with every AudioRecord callback
328 lpCallbackData = new audiorecord_callback_cookie;
329 lpCallbackData->audioRecord_class = (jclass)env->NewGlobalRef(clazz);
330 // we use a weak reference so the AudioRecord object can be garbage collected.
331 lpCallbackData->audioRecord_ref = env->NewGlobalRef(weak_this);
332 lpCallbackData->busy = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 }
334
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700335 nSession = (jint *) env->GetPrimitiveArrayCritical(jSession, NULL);
336 if (nSession == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000337 ALOGE("Error creating AudioRecord: Error retrieving session id pointer");
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700338 goto native_init_failure;
339 }
Glenn Kastenb3db2132012-01-19 08:59:58 -0800340 // read the audio session ID back from AudioRecord in case a new session was created during set()
Eric Laurent44ff4cd2011-06-18 10:34:05 -0700341 nSession[0] = lpRecorder->getSessionId();
342 env->ReleasePrimitiveArrayCritical(jSession, nSession, 0);
343 nSession = NULL;
344
Glenn Kasten1cbf9b32016-02-02 12:04:09 -0800345 {
346 const jint elements[1] = { (jint) lpRecorder->getSampleRate() };
347 env->SetIntArrayRegion(jSampleRate, 0, 1, elements);
348 }
349
Eric Laurent532bc1c2012-04-20 12:45:03 -0700350 { // scope for the lock
351 Mutex::Autolock l(sLock);
352 sAudioRecordCallBackCookies.add(lpCallbackData);
353 }
Glenn Kasten18db49a2012-03-12 16:29:55 -0700354 // save our newly created C++ AudioRecord in the "nativeRecorderInJavaObj" field
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 // of the Java object
Eric Laurent532bc1c2012-04-20 12:45:03 -0700356 setAudioRecord(env, thiz, lpRecorder);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 // save our newly created callback information in the "nativeCallbackCookie" field
359 // of the Java object (in mNativeCallbackCookie) so we can free the memory in finalize()
Ashok Bhat075e9a12014-01-06 13:45:09 +0000360 env->SetLongField(thiz, javaAudioRecordFields.nativeCallbackCookie, (jlong)lpCallbackData);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700361
Eric Laurentbc11a692014-05-16 12:19:25 -0700362 return (jint) AUDIO_JAVA_SUCCESS;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700363
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800364 // failure:
365native_init_failure:
Jean-Michel Trivi4bac5a32009-07-17 12:05:31 -0700366 env->DeleteGlobalRef(lpCallbackData->audioRecord_class);
367 env->DeleteGlobalRef(lpCallbackData->audioRecord_ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 delete lpCallbackData;
Ashok Bhat075e9a12014-01-06 13:45:09 +0000369 env->SetLongField(thiz, javaAudioRecordFields.nativeCallbackCookie, 0);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700370
Glenn Kasten14d226a2015-05-18 13:53:39 -0700371 // lpRecorder goes out of scope, so reference count drops to zero
Ashok Bhat075e9a12014-01-06 13:45:09 +0000372 return (jint) AUDIORECORD_ERROR_SETUP_NATIVEINITFAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373}
374
375
376
377// ----------------------------------------------------------------------------
Ashok Bhat075e9a12014-01-06 13:45:09 +0000378static jint
Eric Laurent505e5c82012-03-29 15:19:36 -0700379android_media_AudioRecord_start(JNIEnv *env, jobject thiz, jint event, jint triggerSession)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380{
Eric Laurent532bc1c2012-04-20 12:45:03 -0700381 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 if (lpRecorder == NULL ) {
383 jniThrowException(env, "java/lang/IllegalStateException", NULL);
Eric Laurentbc11a692014-05-16 12:19:25 -0700384 return (jint) AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 }
Glenn Kasten18db49a2012-03-12 16:29:55 -0700386
Eric Laurentbc11a692014-05-16 12:19:25 -0700387 return nativeToJavaStatus(
Glenn Kasten33b84042016-03-08 12:02:55 -0800388 lpRecorder->start((AudioSystem::sync_event_t)event, (audio_session_t) triggerSession));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389}
390
391
392// ----------------------------------------------------------------------------
393static void
394android_media_AudioRecord_stop(JNIEnv *env, jobject thiz)
395{
Eric Laurent532bc1c2012-04-20 12:45:03 -0700396 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 if (lpRecorder == NULL ) {
398 jniThrowException(env, "java/lang/IllegalStateException", NULL);
399 return;
400 }
401
402 lpRecorder->stop();
Steve Block71f2cf12011-10-20 11:56:00 +0100403 //ALOGV("Called lpRecorder->stop()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404}
405
406
407// ----------------------------------------------------------------------------
Dave Sparkse6335c92010-03-13 17:08:22 -0800408
Eric Laurent532bc1c2012-04-20 12:45:03 -0700409#define CALLBACK_COND_WAIT_TIMEOUT_MS 1000
410static void android_media_AudioRecord_release(JNIEnv *env, jobject thiz) {
411 sp<AudioRecord> lpRecorder = setAudioRecord(env, thiz, 0);
412 if (lpRecorder == NULL) {
413 return;
414 }
Glenn Kasten2fbf25b2014-03-28 15:41:58 -0700415 ALOGV("About to delete lpRecorder: %p", lpRecorder.get());
Eric Laurent532bc1c2012-04-20 12:45:03 -0700416 lpRecorder->stop();
417
Ashok Bhat075e9a12014-01-06 13:45:09 +0000418 audiorecord_callback_cookie *lpCookie = (audiorecord_callback_cookie *)env->GetLongField(
Dave Sparkse6335c92010-03-13 17:08:22 -0800419 thiz, javaAudioRecordFields.nativeCallbackCookie);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420
Dave Sparkse6335c92010-03-13 17:08:22 -0800421 // reset the native resources in the Java object so any attempt to access
422 // them after a call to release fails.
Ashok Bhat075e9a12014-01-06 13:45:09 +0000423 env->SetLongField(thiz, javaAudioRecordFields.nativeCallbackCookie, 0);
Dave Sparkse6335c92010-03-13 17:08:22 -0800424
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425 // delete the callback information
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 if (lpCookie) {
Eric Laurent532bc1c2012-04-20 12:45:03 -0700427 Mutex::Autolock l(sLock);
Glenn Kasten2fbf25b2014-03-28 15:41:58 -0700428 ALOGV("deleting lpCookie: %p", lpCookie);
Eric Laurent532bc1c2012-04-20 12:45:03 -0700429 while (lpCookie->busy) {
430 if (lpCookie->cond.waitRelative(sLock,
431 milliseconds(CALLBACK_COND_WAIT_TIMEOUT_MS)) !=
432 NO_ERROR) {
433 break;
434 }
435 }
436 sAudioRecordCallBackCookies.remove(lpCookie);
Jean-Michel Trivi4bac5a32009-07-17 12:05:31 -0700437 env->DeleteGlobalRef(lpCookie->audioRecord_class);
438 env->DeleteGlobalRef(lpCookie->audioRecord_ref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 delete lpCookie;
440 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441}
442
443
444// ----------------------------------------------------------------------------
Dave Sparkse6335c92010-03-13 17:08:22 -0800445static void android_media_AudioRecord_finalize(JNIEnv *env, jobject thiz) {
446 android_media_AudioRecord_release(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800447}
448
Andy Hung0e9e2f32015-04-13 23:47:18 -0700449// overloaded JNI array helper functions
450static inline
451jbyte *envGetArrayElements(JNIEnv *env, jbyteArray array, jboolean *isCopy) {
452 return env->GetByteArrayElements(array, isCopy);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453}
454
Andy Hung0e9e2f32015-04-13 23:47:18 -0700455static inline
456void envReleaseArrayElements(JNIEnv *env, jbyteArray array, jbyte *elems, jint mode) {
457 env->ReleaseByteArrayElements(array, elems, mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458}
459
Andy Hung0e9e2f32015-04-13 23:47:18 -0700460static inline
461jshort *envGetArrayElements(JNIEnv *env, jshortArray array, jboolean *isCopy) {
462 return env->GetShortArrayElements(array, isCopy);
463}
464
465static inline
466void envReleaseArrayElements(JNIEnv *env, jshortArray array, jshort *elems, jint mode) {
467 env->ReleaseShortArrayElements(array, elems, mode);
468}
469
470static inline
471jfloat *envGetArrayElements(JNIEnv *env, jfloatArray array, jboolean *isCopy) {
472 return env->GetFloatArrayElements(array, isCopy);
473}
474
475static inline
476void envReleaseArrayElements(JNIEnv *env, jfloatArray array, jfloat *elems, jint mode) {
477 env->ReleaseFloatArrayElements(array, elems, mode);
478}
479
480static inline
481jint interpretReadSizeError(ssize_t readSize) {
Eric Laurent219de732016-05-23 12:41:50 -0700482 if (readSize == WOULD_BLOCK) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700483 return (jint)0;
Eric Laurent219de732016-05-23 12:41:50 -0700484 } else if (readSize == NO_INIT) {
485 return AUDIO_JAVA_DEAD_OBJECT;
486 } else {
487 ALOGE("Error %zd during AudioRecord native read", readSize);
488 return nativeToJavaStatus(readSize);
Andy Hung0e9e2f32015-04-13 23:47:18 -0700489 }
490}
491
492template <typename T>
493static jint android_media_AudioRecord_readInArray(JNIEnv *env, jobject thiz,
494 T javaAudioData,
495 jint offsetInSamples, jint sizeInSamples,
496 jboolean isReadBlocking) {
Andy Hung58b0f3f2015-03-27 17:59:45 -0700497 // get the audio recorder from which we'll read new audio samples
498 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
499 if (lpRecorder == NULL) {
500 ALOGE("Unable to retrieve AudioRecord object");
501 return (jint)AUDIO_JAVA_INVALID_OPERATION;
502 }
503
504 if (javaAudioData == NULL) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700505 ALOGE("Invalid Java array to store recorded audio");
506 return (jint)AUDIO_JAVA_BAD_VALUE;
507 }
Andy Hung58b0f3f2015-03-27 17:59:45 -0700508
Andy Hung58b0f3f2015-03-27 17:59:45 -0700509 // NOTE: We may use GetPrimitiveArrayCritical() when the JNI implementation changes in such
510 // a way that it becomes much more efficient. When doing so, we will have to prevent the
511 // AudioSystem callback to be called while in critical section (in case of media server
512 // process crash for instance)
Andy Hung0e9e2f32015-04-13 23:47:18 -0700513
514 // get the pointer to where we'll record the audio
515 auto *recordBuff = envGetArrayElements(env, javaAudioData, NULL);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700516 if (recordBuff == NULL) {
517 ALOGE("Error retrieving destination for recorded audio data");
518 return (jint)AUDIO_JAVA_BAD_VALUE;
519 }
520
521 // read the new audio data from the native AudioRecord object
Andy Hung0e9e2f32015-04-13 23:47:18 -0700522 const size_t sizeInBytes = sizeInSamples * sizeof(*recordBuff);
523 ssize_t readSize = lpRecorder->read(
524 recordBuff + offsetInSamples, sizeInBytes, isReadBlocking == JNI_TRUE /* blocking */);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700525
Andy Hung0e9e2f32015-04-13 23:47:18 -0700526 envReleaseArrayElements(env, javaAudioData, recordBuff, 0);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700527
528 if (readSize < 0) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700529 return interpretReadSizeError(readSize);
Andy Hung58b0f3f2015-03-27 17:59:45 -0700530 }
Andy Hung0e9e2f32015-04-13 23:47:18 -0700531 return (jint)(readSize / sizeof(*recordBuff));
Andy Hung58b0f3f2015-03-27 17:59:45 -0700532}
533
534// ----------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535static jint android_media_AudioRecord_readInDirectBuffer(JNIEnv *env, jobject thiz,
Andy Hung0e9e2f32015-04-13 23:47:18 -0700536 jobject jBuffer, jint sizeInBytes,
537 jboolean isReadBlocking) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800538 // get the audio recorder from which we'll read new audio samples
Eric Laurent532bc1c2012-04-20 12:45:03 -0700539 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700540 if (lpRecorder==NULL)
Andy Hung0e9e2f32015-04-13 23:47:18 -0700541 return (jint)AUDIO_JAVA_INVALID_OPERATION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800542
543 // direct buffer and direct access supported?
544 long capacity = env->GetDirectBufferCapacity(jBuffer);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700545 if (capacity == -1) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546 // buffer direct access is not supported
Steve Block3762c312012-01-06 19:20:56 +0000547 ALOGE("Buffer direct access is not supported, can't record");
Andy Hung0e9e2f32015-04-13 23:47:18 -0700548 return (jint)AUDIO_JAVA_BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 }
Steve Block71f2cf12011-10-20 11:56:00 +0100550 //ALOGV("capacity = %ld", capacity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 jbyte* nativeFromJavaBuf = (jbyte*) env->GetDirectBufferAddress(jBuffer);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700552 if (nativeFromJavaBuf==NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000553 ALOGE("Buffer direct access is not supported, can't record");
Andy Hung0e9e2f32015-04-13 23:47:18 -0700554 return (jint)AUDIO_JAVA_BAD_VALUE;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700555 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556
557 // read new data from the recorder
Eric Laurent357263d2013-09-09 10:31:59 -0700558 ssize_t readSize = lpRecorder->read(nativeFromJavaBuf,
Andy Hung0e9e2f32015-04-13 23:47:18 -0700559 capacity < sizeInBytes ? capacity : sizeInBytes,
560 isReadBlocking == JNI_TRUE /* blocking */);
Eric Laurent357263d2013-09-09 10:31:59 -0700561 if (readSize < 0) {
Andy Hung0e9e2f32015-04-13 23:47:18 -0700562 return interpretReadSizeError(readSize);
Eric Laurent357263d2013-09-09 10:31:59 -0700563 }
564 return (jint)readSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800565}
566
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800567// ----------------------------------------------------------------------------
Andy Hunge90a0a82015-05-19 15:44:31 -0700568static jint android_media_AudioRecord_get_buffer_size_in_frames(JNIEnv *env, jobject thiz) {
Andy Hung864ae672015-04-14 11:06:48 -0700569 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
570 if (lpRecorder == NULL) {
571 jniThrowException(env, "java/lang/IllegalStateException",
Andy Hunge90a0a82015-05-19 15:44:31 -0700572 "Unable to retrieve AudioRecord pointer for frameCount()");
Andy Hung864ae672015-04-14 11:06:48 -0700573 return (jint)AUDIO_JAVA_ERROR;
574 }
575 return lpRecorder->frameCount();
576}
577
578// ----------------------------------------------------------------------------
Glenn Kasten18db49a2012-03-12 16:29:55 -0700579static jint android_media_AudioRecord_set_marker_pos(JNIEnv *env, jobject thiz,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 jint markerPos) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700581
Eric Laurent532bc1c2012-04-20 12:45:03 -0700582 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
583 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800584 jniThrowException(env, "java/lang/IllegalStateException",
585 "Unable to retrieve AudioRecord pointer for setMarkerPosition()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700586 return (jint)AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 }
Eric Laurentbc11a692014-05-16 12:19:25 -0700588 return nativeToJavaStatus( lpRecorder->setMarkerPosition(markerPos) );
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589}
590
591
592// ----------------------------------------------------------------------------
593static jint android_media_AudioRecord_get_marker_pos(JNIEnv *env, jobject thiz) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700594
Eric Laurent532bc1c2012-04-20 12:45:03 -0700595 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596 uint32_t markerPos = 0;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700597
Eric Laurent532bc1c2012-04-20 12:45:03 -0700598 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 jniThrowException(env, "java/lang/IllegalStateException",
600 "Unable to retrieve AudioRecord pointer for getMarkerPosition()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700601 return (jint)AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800602 }
Eric Laurent532bc1c2012-04-20 12:45:03 -0700603 lpRecorder->getMarkerPosition(&markerPos);
604 return (jint)markerPos;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800605}
606
607
608// ----------------------------------------------------------------------------
609static jint android_media_AudioRecord_set_pos_update_period(JNIEnv *env, jobject thiz,
610 jint period) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700611
Eric Laurent532bc1c2012-04-20 12:45:03 -0700612 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Glenn Kasten18db49a2012-03-12 16:29:55 -0700613
Eric Laurent532bc1c2012-04-20 12:45:03 -0700614 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 jniThrowException(env, "java/lang/IllegalStateException",
616 "Unable to retrieve AudioRecord pointer for setPositionUpdatePeriod()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700617 return (jint)AUDIO_JAVA_ERROR;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700618 }
Eric Laurentbc11a692014-05-16 12:19:25 -0700619 return nativeToJavaStatus( lpRecorder->setPositionUpdatePeriod(period) );
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620}
621
622
623// ----------------------------------------------------------------------------
624static jint android_media_AudioRecord_get_pos_update_period(JNIEnv *env, jobject thiz) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700625
Eric Laurent532bc1c2012-04-20 12:45:03 -0700626 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 uint32_t period = 0;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700628
Eric Laurent532bc1c2012-04-20 12:45:03 -0700629 if (lpRecorder == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630 jniThrowException(env, "java/lang/IllegalStateException",
631 "Unable to retrieve AudioRecord pointer for getPositionUpdatePeriod()");
Eric Laurentbc11a692014-05-16 12:19:25 -0700632 return (jint)AUDIO_JAVA_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800633 }
Eric Laurent532bc1c2012-04-20 12:45:03 -0700634 lpRecorder->getPositionUpdatePeriod(&period);
635 return (jint)period;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636}
637
638
639// ----------------------------------------------------------------------------
640// returns the minimum required size for the successful creation of an AudioRecord instance.
641// returns 0 if the parameter combination is not supported.
642// return -1 if there was an error querying the buffer size.
643static jint android_media_AudioRecord_get_min_buff_size(JNIEnv *env, jobject thiz,
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800644 jint sampleRateInHertz, jint channelCount, jint audioFormat) {
Chia-chi Yehc3308072010-08-19 17:14:36 +0800645
Eric Laurent532bc1c2012-04-20 12:45:03 -0700646 ALOGV(">> android_media_AudioRecord_get_min_buff_size(%d, %d, %d)",
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800647 sampleRateInHertz, channelCount, audioFormat);
Chia-chi Yehc3308072010-08-19 17:14:36 +0800648
Glenn Kastenfd1e3df2012-11-13 15:21:06 -0800649 size_t frameCount = 0;
Glenn Kastena5a42382013-12-19 12:34:56 -0800650 audio_format_t format = audioFormatToNative(audioFormat);
Chia-chi Yehc3308072010-08-19 17:14:36 +0800651 status_t result = AudioRecord::getMinFrameCount(&frameCount,
652 sampleRateInHertz,
Glenn Kastena5a42382013-12-19 12:34:56 -0800653 format,
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800654 audio_channel_in_mask_from_count(channelCount));
Chia-chi Yehc3308072010-08-19 17:14:36 +0800655
656 if (result == BAD_VALUE) {
657 return 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800658 }
Chia-chi Yehc3308072010-08-19 17:14:36 +0800659 if (result != NO_ERROR) {
660 return -1;
661 }
Glenn Kasten5b8fd442013-11-14 09:44:14 -0800662 return frameCount * channelCount * audio_bytes_per_sample(format);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800663}
664
Paul McLean2d6de4c2015-04-17 13:13:28 -0600665static jboolean android_media_AudioRecord_setInputDevice(
666 JNIEnv *env, jobject thiz, jint device_id) {
667
Paul McLean6bd27e12015-04-24 14:01:29 -0600668 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Eric Laurent4bcdba82015-05-01 11:37:49 -0700669 if (lpRecorder == 0) {
Paul McLeancef696e2015-05-21 08:51:18 -0700670 return false;
Eric Laurent4bcdba82015-05-01 11:37:49 -0700671 }
Paul McLean6bd27e12015-04-24 14:01:29 -0600672 return lpRecorder->setInputDevice(device_id) == NO_ERROR;
Paul McLean2d6de4c2015-04-17 13:13:28 -0600673}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674
Eric Laurent4bcdba82015-05-01 11:37:49 -0700675static jint android_media_AudioRecord_getRoutedDeviceId(
676 JNIEnv *env, jobject thiz) {
677
678 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
679 if (lpRecorder == 0) {
680 return 0;
681 }
682 return (jint)lpRecorder->getRoutedDeviceId();
683}
684
685static void android_media_AudioRecord_enableDeviceCallback(
686 JNIEnv *env, jobject thiz) {
687
688 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
689 if (lpRecorder == 0) {
690 return;
691 }
692 sp<JNIDeviceCallback> cb = getJniDeviceCallback(env, thiz);
693 if (cb != 0) {
694 return;
695 }
696 audiorecord_callback_cookie *cookie =
697 (audiorecord_callback_cookie *)env->GetLongField(thiz,
698 javaAudioRecordFields.nativeCallbackCookie);
699 if (cookie == NULL) {
700 return;
701 }
702
703 cb = new JNIDeviceCallback(env, thiz, cookie->audioRecord_ref,
704 javaAudioRecordFields.postNativeEventInJava);
705 status_t status = lpRecorder->addAudioDeviceCallback(cb);
706 if (status == NO_ERROR) {
707 setJniDeviceCallback(env, thiz, cb);
708 }
709}
710
711static void android_media_AudioRecord_disableDeviceCallback(
712 JNIEnv *env, jobject thiz) {
713
714 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
715 if (lpRecorder == 0) {
716 return;
717 }
718 sp<JNIDeviceCallback> cb = setJniDeviceCallback(env, thiz, 0);
719 if (cb != 0) {
720 lpRecorder->removeAudioDeviceCallback(cb);
721 }
722}
723
Andy Hung0ad99c02016-01-15 17:53:47 -0800724// ----------------------------------------------------------------------------
725static jint android_media_AudioRecord_get_timestamp(JNIEnv *env, jobject thiz,
726 jobject timestamp, jint timebase) {
727 sp<AudioRecord> lpRecorder = getAudioRecord(env, thiz);
Eric Laurent4bcdba82015-05-01 11:37:49 -0700728
Andy Hung0ad99c02016-01-15 17:53:47 -0800729 if (lpRecorder == NULL) {
730 jniThrowException(env, "java/lang/IllegalStateException",
731 "Unable to retrieve AudioRecord pointer for getTimestamp()");
732 return (jint)AUDIO_JAVA_ERROR;
733 }
734
Andy Hung0ad99c02016-01-15 17:53:47 -0800735 ExtendedTimestamp ts;
Andy Hungf4d81bd2016-01-28 17:47:56 -0800736 jint status = nativeToJavaStatus(lpRecorder->getTimestamp(&ts));
Andy Hung0ad99c02016-01-15 17:53:47 -0800737
738 if (status == AUDIO_JAVA_SUCCESS) {
739 // set the data
740 int64_t position, time;
741
742 status = nativeToJavaStatus(ts.getBestTimestamp(&position, &time, timebase));
743 if (status == AUDIO_JAVA_SUCCESS) {
744 env->SetLongField(
745 timestamp, javaAudioTimestampFields.fieldFramePosition, position);
746 env->SetLongField(
747 timestamp, javaAudioTimestampFields.fieldNanoTime, time);
748 }
749 }
750 return status;
Andy Hung0ad99c02016-01-15 17:53:47 -0800751}
Eric Laurent4bcdba82015-05-01 11:37:49 -0700752
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800753// ----------------------------------------------------------------------------
754// ----------------------------------------------------------------------------
Daniel Micay76f6a862015-09-19 17:31:01 -0400755static const JNINativeMethod gMethods[] = {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800756 // name, signature, funcPtr
Eric Laurent505e5c82012-03-29 15:19:36 -0700757 {"native_start", "(II)I", (void *)android_media_AudioRecord_start},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800758 {"native_stop", "()V", (void *)android_media_AudioRecord_stop},
Paul McLean9b09e532016-01-26 14:43:35 -0700759 {"native_setup", "(Ljava/lang/Object;Ljava/lang/Object;[IIIII[ILjava/lang/String;J)I",
760 (void *)android_media_AudioRecord_setup},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800761 {"native_finalize", "()V", (void *)android_media_AudioRecord_finalize},
762 {"native_release", "()V", (void *)android_media_AudioRecord_release},
Glenn Kasten18db49a2012-03-12 16:29:55 -0700763 {"native_read_in_byte_array",
Andy Hung0e9e2f32015-04-13 23:47:18 -0700764 "([BIIZ)I",
765 (void *)android_media_AudioRecord_readInArray<jbyteArray>},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800766 {"native_read_in_short_array",
Andy Hung0e9e2f32015-04-13 23:47:18 -0700767 "([SIIZ)I",
768 (void *)android_media_AudioRecord_readInArray<jshortArray>},
Andy Hung58b0f3f2015-03-27 17:59:45 -0700769 {"native_read_in_float_array",
Andy Hung0e9e2f32015-04-13 23:47:18 -0700770 "([FIIZ)I",
771 (void *)android_media_AudioRecord_readInArray<jfloatArray>},
772 {"native_read_in_direct_buffer","(Ljava/lang/Object;IZ)I",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800773 (void *)android_media_AudioRecord_readInDirectBuffer},
Andy Hunge90a0a82015-05-19 15:44:31 -0700774 {"native_get_buffer_size_in_frames",
775 "()I", (void *)android_media_AudioRecord_get_buffer_size_in_frames},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 {"native_set_marker_pos","(I)I", (void *)android_media_AudioRecord_set_marker_pos},
777 {"native_get_marker_pos","()I", (void *)android_media_AudioRecord_get_marker_pos},
778 {"native_set_pos_update_period",
779 "(I)I", (void *)android_media_AudioRecord_set_pos_update_period},
780 {"native_get_pos_update_period",
781 "()I", (void *)android_media_AudioRecord_get_pos_update_period},
782 {"native_get_min_buff_size",
783 "(III)I", (void *)android_media_AudioRecord_get_min_buff_size},
Paul McLean2d6de4c2015-04-17 13:13:28 -0600784 {"native_setInputDevice", "(I)Z", (void *)android_media_AudioRecord_setInputDevice},
Eric Laurent4bcdba82015-05-01 11:37:49 -0700785 {"native_getRoutedDeviceId", "()I", (void *)android_media_AudioRecord_getRoutedDeviceId},
786 {"native_enableDeviceCallback", "()V", (void *)android_media_AudioRecord_enableDeviceCallback},
787 {"native_disableDeviceCallback", "()V",
788 (void *)android_media_AudioRecord_disableDeviceCallback},
Andy Hung0ad99c02016-01-15 17:53:47 -0800789 {"native_get_timestamp", "(Landroid/media/AudioTimestamp;I)I",
790 (void *)android_media_AudioRecord_get_timestamp},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791};
792
793// field names found in android/media/AudioRecord.java
794#define JAVA_POSTEVENT_CALLBACK_NAME "postEventFromNative"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800795#define JAVA_NATIVERECORDERINJAVAOBJ_FIELD_NAME "mNativeRecorderInJavaObj"
796#define JAVA_NATIVECALLBACKINFO_FIELD_NAME "mNativeCallbackCookie"
Eric Laurent4bcdba82015-05-01 11:37:49 -0700797#define JAVA_NATIVEDEVICECALLBACK_FIELD_NAME "mNativeDeviceCallback"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800799// ----------------------------------------------------------------------------
800int register_android_media_AudioRecord(JNIEnv *env)
801{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 javaAudioRecordFields.postNativeEventInJava = NULL;
803 javaAudioRecordFields.nativeRecorderInJavaObj = NULL;
804 javaAudioRecordFields.nativeCallbackCookie = NULL;
Eric Laurent4bcdba82015-05-01 11:37:49 -0700805 javaAudioRecordFields.nativeDeviceCallback = NULL;
Glenn Kasten18db49a2012-03-12 16:29:55 -0700806
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807
808 // Get the AudioRecord class
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800809 jclass audioRecordClass = FindClassOrDie(env, kClassPathName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 // Get the postEvent method
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800811 javaAudioRecordFields.postNativeEventInJava = GetStaticMethodIDOrDie(env,
812 audioRecordClass, JAVA_POSTEVENT_CALLBACK_NAME,
813 "(Ljava/lang/Object;IIILjava/lang/Object;)V");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814
815 // Get the variables
816 // mNativeRecorderInJavaObj
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800817 javaAudioRecordFields.nativeRecorderInJavaObj = GetFieldIDOrDie(env,
818 audioRecordClass, JAVA_NATIVERECORDERINJAVAOBJ_FIELD_NAME, "J");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 // mNativeCallbackCookie
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800820 javaAudioRecordFields.nativeCallbackCookie = GetFieldIDOrDie(env,
821 audioRecordClass, JAVA_NATIVECALLBACKINFO_FIELD_NAME, "J");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800822
Eric Laurent4bcdba82015-05-01 11:37:49 -0700823 javaAudioRecordFields.nativeDeviceCallback = GetFieldIDOrDie(env,
824 audioRecordClass, JAVA_NATIVEDEVICECALLBACK_FIELD_NAME, "J");
825
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700826 // Get the AudioAttributes class and fields
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800827 jclass audioAttrClass = FindClassOrDie(env, kAudioAttributesClassPathName);
828 javaAudioAttrFields.fieldRecSource = GetFieldIDOrDie(env, audioAttrClass, "mSource", "I");
829 javaAudioAttrFields.fieldFlags = GetFieldIDOrDie(env, audioAttrClass, "mFlags", "I");
830 javaAudioAttrFields.fieldFormattedTags = GetFieldIDOrDie(env,
831 audioAttrClass, "mFormattedTags", "Ljava/lang/String;");
Jean-Michel Trivi701d6ff2014-07-16 07:51:22 -0700832
Andy Hung0ad99c02016-01-15 17:53:47 -0800833 // Get the RecordTimestamp class and fields
834 jclass audioTimestampClass = FindClassOrDie(env, "android/media/AudioTimestamp");
835 javaAudioTimestampFields.fieldFramePosition =
836 GetFieldIDOrDie(env, audioTimestampClass, "framePosition", "J");
837 javaAudioTimestampFields.fieldNanoTime =
838 GetFieldIDOrDie(env, audioTimestampClass, "nanoTime", "J");
839
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800840 return RegisterMethodsOrDie(env, kClassPathName, gMethods, NELEM(gMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841}
842
843// ----------------------------------------------------------------------------