Searched defs:setOutputFile (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp261 status_t MediaRecorder::setOutputFile(const char* path) function in class:android::MediaRecorder
263 ALOGV("setOutputFile(%s)", path);
273 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
277 status_t ret = mMediaRecorder->setOutputFile(path);
279 ALOGV("setOutputFile failed: %d", ret);
287 status_t MediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length) function in class:android::MediaRecorder
289 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
299 ALOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
314 status_t ret = mMediaRecorder->setOutputFile(fd, offset, length);
316 ALOGV("setOutputFile faile
[all...]
H A DIMediaRecorder.cpp159 status_t setOutputFile(const char* path) function in class:android::BpMediaRecorder
161 ALOGV("setOutputFile(%s)", path);
169 status_t setOutputFile(int fd, int64_t offset, int64_t length) { function in class:android::BpMediaRecorder
170 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
395 reply->writeInt32(setOutputFile(path));
404 reply->writeInt32(setOutputFile(fd, offset, length));
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp156 status_t MediaRecorderClient::setOutputFile(const char* path) function in class:android::MediaRecorderClient
158 ALOGV("setOutputFile(%s)", path);
164 return mRecorder->setOutputFile(path);
167 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length) function in class:android::MediaRecorderClient
169 ALOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
175 return mRecorder->setOutputFile(fd, offset, length);
H A DStagefrightRecorder.cpp236 status_t StagefrightRecorder::setOutputFile(const char *path) { function in class:android::StagefrightRecorder
237 ALOGE("setOutputFile(const char*) must not be called");
244 status_t StagefrightRecorder::setOutputFile(int fd, int64_t offset, int64_t length) { function in class:android::StagefrightRecorder
245 ALOGV("setOutputFile: %d, %lld, %lld", fd, offset, length);
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java45 * recorder.setOutputFile(PATH_NAME);
349 * be called after the video AND audio sources are set, and before setOutputFile().
654 public void setOutputFile(FileDescriptor fd) throws IllegalStateException method in class:MediaRecorder
668 public void setOutputFile(String path) throws IllegalStateException method in class:MediaRecorder
708 * setOutputFile(). Call this after prepare().

Completed in 156 milliseconds