Home | History | Annotate | Download | only in libmedia

Lines Matching refs:setOutputFile

259 status_t MediaRecorder::setOutputFile(const char* path)
261 LOGV("setOutputFile(%s)", path);
271 LOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
275 status_t ret = mMediaRecorder->setOutputFile(path);
277 LOGV("setOutputFile failed: %d", ret);
285 status_t MediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
287 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
297 LOGE("setOutputFile called in an invalid state(%d)", mCurrentState);
301 status_t ret = mMediaRecorder->setOutputFile(fd, offset, length);
303 LOGV("setOutputFile failed: %d", ret);