Searched refs:setVideoSize (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/include/media/
H A DIMediaRecorder.h43 virtual status_t setVideoSize(int width, int height) = 0;
H A DMediaRecorderBase.h37 virtual status_t setVideoSize(int width, int height) = 0;
H A DPVMediaRecorder.h41 virtual status_t setVideoSize(int width, int height);
H A Dmediarecorder.h167 status_t setVideoSize(int width, int height);
/frameworks/base/media/libmediaplayerservice/
H A DMediaRecorderClient.h40 virtual status_t setVideoSize(int width, int height);
H A DStagefrightRecorder.h39 virtual status_t setVideoSize(int width, int height);
H A DMediaRecorderClient.cpp167 status_t MediaRecorderClient::setVideoSize(int width, int height) function in class:android::MediaRecorderClient
169 LOGV("setVideoSize(%dx%d)", width, height);
175 return mRecorder->setVideoSize(width, height);
H A DStagefrightRecorder.cpp85 status_t StagefrightRecorder::setVideoSize(int width, int height) { function in class:android::StagefrightRecorder
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java272 setVideoSize(profile.videoFrameWidth, profile.videoFrameHeight);
308 public native void setVideoSize(int width, int height) method in class:MediaRecorder
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java225 mRecorder.setVideoSize(176,144);
293 mRecorder.setVideoSize(176,144);
384 mRecorder.setVideoSize(video_width, video_height);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DMediaRecorderTest.java83 mRecorder.setVideoSize(width, height);
143 mMediaRecorder.setVideoSize(videoWidth, videoHeight);
176 mRecorder.setVideoSize(width, height);
/frameworks/base/media/libmedia/
H A DIMediaRecorder.cpp161 status_t setVideoSize(int width, int height) function in class:android::BpMediaRecorder
163 LOGV("setVideoSize(%dx%d)", width, height);
383 reply->writeInt32(setVideoSize(width, height));
H A Dmediarecorder.cpp311 status_t MediaRecorder::setVideoSize(int width, int height) function in class:android::MediaRecorder
313 LOGV("setVideoSize(%d, %d)", width, height);
319 LOGE("setVideoSize called in an invalid state: %d", mCurrentState);
327 status_t ret = mMediaRecorder->setVideoSize(width, height);
329 LOGE("setVideoSize failed: %d", ret);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp265 LOGV("setVideoSize(%d, %d)", width, height);
272 process_media_recorder_call(env, mr->setVideoSize(width, height), "java/lang/RuntimeException", "setVideoSize failed.");
460 {"setVideoSize", "(II)V", (void *)android_media_MediaRecorder_setVideoSize},
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java291 mRecorder.setVideoSize(width, height);

Completed in 84 milliseconds