blob: 3fc75ed6524b672bab0fa513b23d75e10da515e3 [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#define LOG_TAG "MediaRecorderJNI"
19#include <utils/Log.h>
20
Mathias Agopian000479f2010-02-09 17:46:37 -080021#include <surfaceflinger/SurfaceComposerClient.h>
22#include <camera/ICameraService.h>
23#include <camera/Camera.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024#include <media/mediarecorder.h>
25#include <stdio.h>
26#include <assert.h>
27#include <limits.h>
28#include <unistd.h>
29#include <fcntl.h>
30#include <utils/threads.h>
31
32#include "jni.h"
33#include "JNIHelp.h"
34#include "android_runtime/AndroidRuntime.h"
35
Dima Zavin34bb4192011-05-11 14:15:23 -070036#include <system/audio.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037
38// ----------------------------------------------------------------------------
39
40using namespace android;
41
42// ----------------------------------------------------------------------------
43
44// helper function to extract a native Camera object from a Camera Java object
Dave Sparks5e271152009-06-23 17:30:11 -070045extern sp<Camera> get_native_camera(JNIEnv *env, jobject thiz, struct JNICameraContext** context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
47struct fields_t {
48 jfieldID context;
49 jfieldID surface;
50 /* actually in android.view.Surface XXX */
51 jfieldID surface_native;
52
53 jmethodID post_event;
54};
55static fields_t fields;
56
57static Mutex sLock;
58
59// ----------------------------------------------------------------------------
60// ref-counted object for callbacks
61class JNIMediaRecorderListener: public MediaRecorderListener
62{
63public:
64 JNIMediaRecorderListener(JNIEnv* env, jobject thiz, jobject weak_thiz);
65 ~JNIMediaRecorderListener();
66 void notify(int msg, int ext1, int ext2);
67private:
68 JNIMediaRecorderListener();
69 jclass mClass; // Reference to MediaRecorder class
70 jobject mObject; // Weak ref to MediaRecorder Java object to call on
71};
72
73JNIMediaRecorderListener::JNIMediaRecorderListener(JNIEnv* env, jobject thiz, jobject weak_thiz)
74{
75
76 // Hold onto the MediaRecorder class for use in calling the static method
77 // that posts events to the application thread.
78 jclass clazz = env->GetObjectClass(thiz);
79 if (clazz == NULL) {
80 LOGE("Can't find android/media/MediaRecorder");
81 jniThrowException(env, "java/lang/Exception", NULL);
82 return;
83 }
84 mClass = (jclass)env->NewGlobalRef(clazz);
85
86 // We use a weak reference so the MediaRecorder object can be garbage collected.
87 // The reference is only used as a proxy for callbacks.
88 mObject = env->NewGlobalRef(weak_thiz);
89}
90
91JNIMediaRecorderListener::~JNIMediaRecorderListener()
92{
93 // remove global references
94 JNIEnv *env = AndroidRuntime::getJNIEnv();
95 env->DeleteGlobalRef(mObject);
96 env->DeleteGlobalRef(mClass);
97}
98
99void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2)
100{
Steve Block71f2cf12011-10-20 11:56:00 +0100101 ALOGV("JNIMediaRecorderListener::notify");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102
103 JNIEnv *env = AndroidRuntime::getJNIEnv();
104 env->CallStaticVoidMethod(mClass, fields.post_event, mObject, msg, ext1, ext2, 0);
105}
106
107// ----------------------------------------------------------------------------
108
109static sp<Surface> get_surface(JNIEnv* env, jobject clazz)
110{
Steve Block71f2cf12011-10-20 11:56:00 +0100111 ALOGV("get_surface");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 Surface* const p = (Surface*)env->GetIntField(clazz, fields.surface_native);
113 return sp<Surface>(p);
114}
115
116// Returns true if it throws an exception.
117static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message)
118{
Steve Block71f2cf12011-10-20 11:56:00 +0100119 ALOGV("process_media_recorder_call");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 if (opStatus == (status_t)INVALID_OPERATION) {
121 jniThrowException(env, "java/lang/IllegalStateException", NULL);
122 return true;
123 } else if (opStatus != (status_t)OK) {
124 jniThrowException(env, exception, message);
125 return true;
126 }
127 return false;
128}
129
Pannag Sanketicac873b2011-07-25 17:20:50 -0700130static sp<MediaRecorder> getMediaRecorder(JNIEnv* env, jobject thiz)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131{
132 Mutex::Autolock l(sLock);
133 MediaRecorder* const p = (MediaRecorder*)env->GetIntField(thiz, fields.context);
134 return sp<MediaRecorder>(p);
135}
136
137static sp<MediaRecorder> setMediaRecorder(JNIEnv* env, jobject thiz, const sp<MediaRecorder>& recorder)
138{
139 Mutex::Autolock l(sLock);
140 sp<MediaRecorder> old = (MediaRecorder*)env->GetIntField(thiz, fields.context);
141 if (recorder.get()) {
142 recorder->incStrong(thiz);
143 }
144 if (old != 0) {
145 old->decStrong(thiz);
146 }
147 env->SetIntField(thiz, fields.context, (int)recorder.get());
148 return old;
149}
150
151
152static void android_media_MediaRecorder_setCamera(JNIEnv* env, jobject thiz, jobject camera)
153{
James Dong429a3b52009-05-11 10:58:03 -0700154 // we should not pass a null camera to get_native_camera() call.
155 if (camera == NULL) {
Elliott Hughes15dd15f2011-04-08 17:42:34 -0700156 jniThrowNullPointerException(env, "camera object is a NULL pointer");
James Dong429a3b52009-05-11 10:58:03 -0700157 return;
158 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 sp<Camera> c = get_native_camera(env, camera, NULL);
160 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
Wu-cheng Li42419ce2011-06-01 17:22:24 +0800161 process_media_recorder_call(env, mr->setCamera(c->remote(), c->getRecordingProxy()),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 "java/lang/RuntimeException", "setCamera failed.");
163}
164
165static void
166android_media_MediaRecorder_setVideoSource(JNIEnv *env, jobject thiz, jint vs)
167{
Steve Block71f2cf12011-10-20 11:56:00 +0100168 ALOGV("setVideoSource(%d)", vs);
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700169 if (vs < VIDEO_SOURCE_DEFAULT || vs >= VIDEO_SOURCE_LIST_END) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 jniThrowException(env, "java/lang/IllegalArgumentException", "Invalid video source");
171 return;
172 }
173 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
174 process_media_recorder_call(env, mr->setVideoSource(vs), "java/lang/RuntimeException", "setVideoSource failed.");
175}
176
177static void
178android_media_MediaRecorder_setAudioSource(JNIEnv *env, jobject thiz, jint as)
179{
Steve Block71f2cf12011-10-20 11:56:00 +0100180 ALOGV("setAudioSource(%d)", as);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700181 if (as < AUDIO_SOURCE_DEFAULT || as >= AUDIO_SOURCE_CNT) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 jniThrowException(env, "java/lang/IllegalArgumentException", "Invalid audio source");
183 return;
184 }
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
187 process_media_recorder_call(env, mr->setAudioSource(as), "java/lang/RuntimeException", "setAudioSource failed.");
188}
189
190static void
191android_media_MediaRecorder_setOutputFormat(JNIEnv *env, jobject thiz, jint of)
192{
Steve Block71f2cf12011-10-20 11:56:00 +0100193 ALOGV("setOutputFormat(%d)", of);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194 if (of < OUTPUT_FORMAT_DEFAULT || of >= OUTPUT_FORMAT_LIST_END) {
195 jniThrowException(env, "java/lang/IllegalArgumentException", "Invalid output format");
196 return;
197 }
198 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
199 process_media_recorder_call(env, mr->setOutputFormat(of), "java/lang/RuntimeException", "setOutputFormat failed.");
200}
201
202static void
203android_media_MediaRecorder_setVideoEncoder(JNIEnv *env, jobject thiz, jint ve)
204{
Steve Block71f2cf12011-10-20 11:56:00 +0100205 ALOGV("setVideoEncoder(%d)", ve);
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700206 if (ve < VIDEO_ENCODER_DEFAULT || ve >= VIDEO_ENCODER_LIST_END) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 jniThrowException(env, "java/lang/IllegalArgumentException", "Invalid video encoder");
208 return;
209 }
210 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
211 process_media_recorder_call(env, mr->setVideoEncoder(ve), "java/lang/RuntimeException", "setVideoEncoder failed.");
212}
213
214static void
215android_media_MediaRecorder_setAudioEncoder(JNIEnv *env, jobject thiz, jint ae)
216{
Steve Block71f2cf12011-10-20 11:56:00 +0100217 ALOGV("setAudioEncoder(%d)", ae);
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700218 if (ae < AUDIO_ENCODER_DEFAULT || ae >= AUDIO_ENCODER_LIST_END) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219 jniThrowException(env, "java/lang/IllegalArgumentException", "Invalid audio encoder");
220 return;
221 }
222 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
223 process_media_recorder_call(env, mr->setAudioEncoder(ae), "java/lang/RuntimeException", "setAudioEncoder failed.");
224}
225
226static void
James Dong0fc6bc42010-02-26 19:36:35 -0800227android_media_MediaRecorder_setParameter(JNIEnv *env, jobject thiz, jstring params)
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700228{
Steve Block71f2cf12011-10-20 11:56:00 +0100229 ALOGV("setParameter()");
Jianhong Jiang2bcda902009-06-08 08:50:42 -0700230 if (params == NULL)
231 {
232 LOGE("Invalid or empty params string. This parameter will be ignored.");
233 return;
234 }
235
236 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
237
238 const char* params8 = env->GetStringUTFChars(params, NULL);
239 if (params8 == NULL)
240 {
241 LOGE("Failed to covert jstring to String8. This parameter will be ignored.");
242 return;
243 }
244
245 process_media_recorder_call(env, mr->setParameters(String8(params8)), "java/lang/RuntimeException", "setParameter failed.");
246 env->ReleaseStringUTFChars(params,params8);
247}
248
249static void
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250android_media_MediaRecorder_setOutputFileFD(JNIEnv *env, jobject thiz, jobject fileDescriptor, jlong offset, jlong length)
251{
Steve Block71f2cf12011-10-20 11:56:00 +0100252 ALOGV("setOutputFile");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 if (fileDescriptor == NULL) {
254 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
255 return;
256 }
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700257 int fd = jniGetFDFromFileDescriptor(env, fileDescriptor);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
259 status_t opStatus = mr->setOutputFile(fd, offset, length);
260 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
261}
262
263static void
264android_media_MediaRecorder_setVideoSize(JNIEnv *env, jobject thiz, jint width, jint height)
265{
Steve Block71f2cf12011-10-20 11:56:00 +0100266 ALOGV("setVideoSize(%d, %d)", width, height);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
268
269 if (width <= 0 || height <= 0) {
270 jniThrowException(env, "java/lang/IllegalArgumentException", "invalid video size");
271 return;
272 }
273 process_media_recorder_call(env, mr->setVideoSize(width, height), "java/lang/RuntimeException", "setVideoSize failed.");
274}
275
276static void
277android_media_MediaRecorder_setVideoFrameRate(JNIEnv *env, jobject thiz, jint rate)
278{
Steve Block71f2cf12011-10-20 11:56:00 +0100279 ALOGV("setVideoFrameRate(%d)", rate);
James Dongcbe7c542009-07-30 11:16:11 -0700280 if (rate <= 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 jniThrowException(env, "java/lang/IllegalArgumentException", "invalid frame rate");
282 return;
283 }
284 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
285 process_media_recorder_call(env, mr->setVideoFrameRate(rate), "java/lang/RuntimeException", "setVideoFrameRate failed.");
286}
287
288static void
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700289android_media_MediaRecorder_setMaxDuration(JNIEnv *env, jobject thiz, jint max_duration_ms)
290{
Steve Block71f2cf12011-10-20 11:56:00 +0100291 ALOGV("setMaxDuration(%d)", max_duration_ms);
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700292 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
293
294 char params[64];
295 sprintf(params, "max-duration=%d", max_duration_ms);
296
297 process_media_recorder_call(env, mr->setParameters(String8(params)), "java/lang/RuntimeException", "setMaxDuration failed.");
298}
299
300static void
The Android Open Source Project10592532009-03-18 17:39:46 -0700301android_media_MediaRecorder_setMaxFileSize(
302 JNIEnv *env, jobject thiz, jlong max_filesize_bytes)
303{
Steve Block71f2cf12011-10-20 11:56:00 +0100304 ALOGV("setMaxFileSize(%lld)", max_filesize_bytes);
The Android Open Source Project10592532009-03-18 17:39:46 -0700305 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
306
307 char params[64];
308 sprintf(params, "max-filesize=%lld", max_filesize_bytes);
309
310 process_media_recorder_call(env, mr->setParameters(String8(params)), "java/lang/RuntimeException", "setMaxFileSize failed.");
311}
312
313static void
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314android_media_MediaRecorder_prepare(JNIEnv *env, jobject thiz)
315{
Steve Block71f2cf12011-10-20 11:56:00 +0100316 ALOGV("prepare");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
318
319 jobject surface = env->GetObjectField(thiz, fields.surface);
320 if (surface != NULL) {
James Dong457d5ae2010-06-09 10:19:33 -0700321 const sp<Surface> native_surface = get_surface(env, surface);
James Dongd790c6482010-08-12 10:18:01 -0700322
323 // The application may misbehave and
324 // the preview surface becomes unavailable
325 if (native_surface.get() == 0) {
326 LOGE("Application lost the surface");
327 jniThrowException(env, "java/io/IOException", "invalid preview surface");
328 return;
329 }
330
Steve Block6215d3f2012-01-04 20:05:49 +0000331 ALOGI("prepare: surface=%p (identity=%d)", native_surface.get(), native_surface->getIdentity());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 if (process_media_recorder_call(env, mr->setPreviewSurface(native_surface), "java/lang/RuntimeException", "setPreviewSurface failed.")) {
333 return;
334 }
335 }
336 process_media_recorder_call(env, mr->prepare(), "java/io/IOException", "prepare failed.");
337}
338
339static int
340android_media_MediaRecorder_native_getMaxAmplitude(JNIEnv *env, jobject thiz)
341{
Steve Block71f2cf12011-10-20 11:56:00 +0100342 ALOGV("getMaxAmplitude");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
344 int result = 0;
345 process_media_recorder_call(env, mr->getMaxAmplitude(&result), "java/lang/RuntimeException", "getMaxAmplitude failed.");
346 return result;
347}
348
349static void
350android_media_MediaRecorder_start(JNIEnv *env, jobject thiz)
351{
Steve Block71f2cf12011-10-20 11:56:00 +0100352 ALOGV("start");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
354 process_media_recorder_call(env, mr->start(), "java/lang/RuntimeException", "start failed.");
355}
356
357static void
358android_media_MediaRecorder_stop(JNIEnv *env, jobject thiz)
359{
Steve Block71f2cf12011-10-20 11:56:00 +0100360 ALOGV("stop");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
362 process_media_recorder_call(env, mr->stop(), "java/lang/RuntimeException", "stop failed.");
363}
364
365static void
366android_media_MediaRecorder_native_reset(JNIEnv *env, jobject thiz)
367{
Steve Block71f2cf12011-10-20 11:56:00 +0100368 ALOGV("native_reset");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 sp<MediaRecorder> mr = getMediaRecorder(env, thiz);
370 process_media_recorder_call(env, mr->reset(), "java/lang/RuntimeException", "native_reset failed.");
371}
372
373static void
374android_media_MediaRecorder_release(JNIEnv *env, jobject thiz)
375{
Steve Block71f2cf12011-10-20 11:56:00 +0100376 ALOGV("release");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 sp<MediaRecorder> mr = setMediaRecorder(env, thiz, 0);
378 if (mr != NULL) {
379 mr->setListener(NULL);
The Android Open Source Project4df24232009-03-05 14:34:35 -0800380 mr->release();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 }
382}
383
Marco Nelissen4935d052009-08-03 11:12:58 -0700384// This function gets some field IDs, which in turn causes class initialization.
385// It is called from a static block in MediaRecorder, which won't run until the
386// first time an instance of this class is used.
387static void
388android_media_MediaRecorder_native_init(JNIEnv *env)
389{
390 jclass clazz;
391
392 clazz = env->FindClass("android/media/MediaRecorder");
393 if (clazz == NULL) {
Marco Nelissen4935d052009-08-03 11:12:58 -0700394 return;
395 }
396
397 fields.context = env->GetFieldID(clazz, "mNativeContext", "I");
398 if (fields.context == NULL) {
Marco Nelissen4935d052009-08-03 11:12:58 -0700399 return;
400 }
401
402 fields.surface = env->GetFieldID(clazz, "mSurface", "Landroid/view/Surface;");
403 if (fields.surface == NULL) {
Marco Nelissen4935d052009-08-03 11:12:58 -0700404 return;
405 }
406
407 jclass surface = env->FindClass("android/view/Surface");
408 if (surface == NULL) {
Marco Nelissen4935d052009-08-03 11:12:58 -0700409 return;
410 }
411
Mathias Agopian8b138322010-04-12 16:22:15 -0700412 fields.surface_native = env->GetFieldID(surface, ANDROID_VIEW_SURFACE_JNI_ID, "I");
Marco Nelissen4935d052009-08-03 11:12:58 -0700413 if (fields.surface_native == NULL) {
Marco Nelissen4935d052009-08-03 11:12:58 -0700414 return;
415 }
416
417 fields.post_event = env->GetStaticMethodID(clazz, "postEventFromNative",
418 "(Ljava/lang/Object;IIILjava/lang/Object;)V");
419 if (fields.post_event == NULL) {
Marco Nelissen4935d052009-08-03 11:12:58 -0700420 return;
421 }
422}
423
424
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425static void
426android_media_MediaRecorder_native_setup(JNIEnv *env, jobject thiz, jobject weak_this)
427{
Steve Block71f2cf12011-10-20 11:56:00 +0100428 ALOGV("setup");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 sp<MediaRecorder> mr = new MediaRecorder();
430 if (mr == NULL) {
431 jniThrowException(env, "java/lang/RuntimeException", "Out of memory");
432 return;
433 }
434 if (mr->initCheck() != NO_ERROR) {
James Dong8d3b9102010-09-09 18:43:48 -0700435 jniThrowException(env, "java/lang/RuntimeException", "Unable to initialize media recorder");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 return;
437 }
438
439 // create new listener and give it to MediaRecorder
440 sp<JNIMediaRecorderListener> listener = new JNIMediaRecorderListener(env, thiz, weak_this);
441 mr->setListener(listener);
442
443 setMediaRecorder(env, thiz, mr);
444}
445
446static void
447android_media_MediaRecorder_native_finalize(JNIEnv *env, jobject thiz)
448{
Steve Block71f2cf12011-10-20 11:56:00 +0100449 ALOGV("finalize");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 android_media_MediaRecorder_release(env, thiz);
451}
452
453// ----------------------------------------------------------------------------
454
455static JNINativeMethod gMethods[] = {
456 {"setCamera", "(Landroid/hardware/Camera;)V", (void *)android_media_MediaRecorder_setCamera},
457 {"setVideoSource", "(I)V", (void *)android_media_MediaRecorder_setVideoSource},
458 {"setAudioSource", "(I)V", (void *)android_media_MediaRecorder_setAudioSource},
459 {"setOutputFormat", "(I)V", (void *)android_media_MediaRecorder_setOutputFormat},
460 {"setVideoEncoder", "(I)V", (void *)android_media_MediaRecorder_setVideoEncoder},
461 {"setAudioEncoder", "(I)V", (void *)android_media_MediaRecorder_setAudioEncoder},
James Dong0fc6bc42010-02-26 19:36:35 -0800462 {"setParameter", "(Ljava/lang/String;)V", (void *)android_media_MediaRecorder_setParameter},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 {"_setOutputFile", "(Ljava/io/FileDescriptor;JJ)V", (void *)android_media_MediaRecorder_setOutputFileFD},
464 {"setVideoSize", "(II)V", (void *)android_media_MediaRecorder_setVideoSize},
465 {"setVideoFrameRate", "(I)V", (void *)android_media_MediaRecorder_setVideoFrameRate},
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700466 {"setMaxDuration", "(I)V", (void *)android_media_MediaRecorder_setMaxDuration},
The Android Open Source Project10592532009-03-18 17:39:46 -0700467 {"setMaxFileSize", "(J)V", (void *)android_media_MediaRecorder_setMaxFileSize},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 {"_prepare", "()V", (void *)android_media_MediaRecorder_prepare},
469 {"getMaxAmplitude", "()I", (void *)android_media_MediaRecorder_native_getMaxAmplitude},
470 {"start", "()V", (void *)android_media_MediaRecorder_start},
471 {"stop", "()V", (void *)android_media_MediaRecorder_stop},
Marco Nelissen4935d052009-08-03 11:12:58 -0700472 {"native_reset", "()V", (void *)android_media_MediaRecorder_native_reset},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473 {"release", "()V", (void *)android_media_MediaRecorder_release},
Marco Nelissen4935d052009-08-03 11:12:58 -0700474 {"native_init", "()V", (void *)android_media_MediaRecorder_native_init},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 {"native_setup", "(Ljava/lang/Object;)V", (void *)android_media_MediaRecorder_native_setup},
476 {"native_finalize", "()V", (void *)android_media_MediaRecorder_native_finalize},
477};
478
479static const char* const kClassPathName = "android/media/MediaRecorder";
480
Marco Nelissen4935d052009-08-03 11:12:58 -0700481// This function only registers the native methods, and is called from
482// JNI_OnLoad in android_media_MediaPlayer.cpp
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800483int register_android_media_MediaRecorder(JNIEnv *env)
484{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800485 return AndroidRuntime::registerNativeMethods(env,
486 "android/media/MediaRecorder", gMethods, NELEM(gMethods));
487}