Searched refs:getMaxAmplitude (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/include/media/
H A DIMediaRecorder.h48 virtual status_t getMaxAmplitude(int* max) = 0;
H A DMediaRecorderBase.h50 virtual status_t getMaxAmplitude(int *max) = 0;
H A DPVMediaRecorder.h54 virtual status_t getMaxAmplitude(int *max);
H A Dmediarecorder.h182 status_t getMaxAmplitude(int* max);
/frameworks/base/include/media/stagefright/
H A DAudioSource.h43 int16_t getMaxAmplitude();
/frameworks/base/media/libmediaplayerservice/
H A DMediaRecorderClient.h45 virtual status_t getMaxAmplitude(int* max);
H A DMediaRecorderClient.cpp211 status_t MediaRecorderClient::getMaxAmplitude(int* max) function in class:android::MediaRecorderClient
213 LOGV("getMaxAmplitude");
219 return mRecorder->getMaxAmplitude(max);
H A DStagefrightRecorder.h56 virtual status_t getMaxAmplitude(int *max);
H A DStagefrightRecorder.cpp1226 status_t StagefrightRecorder::getMaxAmplitude(int *max) { function in class:android::StagefrightRecorder
1227 LOGV("getMaxAmplitude");
1235 *max = mAudioSourceNode->getMaxAmplitude();
1282 snprintf(buffer, SIZE, " Max amplitude: %d\n", mAudioSourceNode == 0? 0: mAudioSourceNode->getMaxAmplitude());
/frameworks/base/media/libmedia/
H A DIMediaRecorder.cpp212 status_t getMaxAmplitude(int* max) function in class:android::BpMediaRecorder
214 LOGV("getMaxAmplitude");
322 status_t ret = getMaxAmplitude(&max);
H A Dmediarecorder.cpp427 status_t MediaRecorder::getMaxAmplitude(int* max) function in class:android::MediaRecorder
429 LOGV("getMaxAmplitude");
435 LOGE("getMaxAmplitude called in an invalid state: %d", mCurrentState);
439 status_t ret = mMediaRecorder->getMaxAmplitude(max);
441 LOGE("getMaxAmplitude failed: %d", ret);
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java587 public native int getMaxAmplitude() throws IllegalStateException; method in class:MediaRecorder
/frameworks/base/media/libstagefright/
H A DAudioSource.cpp354 int16_t AudioSource::getMaxAmplitude() { function in class:android::AudioSource
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp341 LOGV("getMaxAmplitude");
344 process_media_recorder_call(env, mr->getMaxAmplitude(&result), "java/lang/RuntimeException", "getMaxAmplitude failed.");
474 {"getMaxAmplitude", "()I", (void *)android_media_MediaRecorder_native_getMaxAmplitude},

Completed in 1384 milliseconds