HomeSort by relevance Sort by last modified time
    Searched refs:setOutputFile (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/include/media/
IMediaRecorder.h 41 virtual status_t setOutputFile(const char* path) = 0;
42 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
MediaRecorderBase.h 41 virtual status_t setOutputFile(const char *path) = 0;
42 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
PVMediaRecorder.h 45 virtual status_t setOutputFile(const char *path);
46 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length);
mediarecorder.h 175 status_t setOutputFile(const char* path);
176 status_t setOutputFile(int fd, int64_t offset, int64_t length);
  /frameworks/base/media/libmediaplayerservice/
MediaRecorderClient.h 38 virtual status_t setOutputFile(const char* path);
39 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length);
MediaRecorderClient.cpp 145 status_t MediaRecorderClient::setOutputFile(const char* path)
147 LOGV("setOutputFile(%s)", path);
153 return mRecorder->setOutputFile(path);
156 status_t MediaRecorderClient::setOutputFile(int fd, int64_t offset, int64_t length)
158 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
164 return mRecorder->setOutputFile(fd, offset, length);
StagefrightRecorder.h 46 virtual status_t setOutputFile(const char *path);
47 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length);
StagefrightRecorder.cpp 211 status_t StagefrightRecorder::setOutputFile(const char *path) {
212 LOGE("setOutputFile(const char*) must not be called");
219 status_t StagefrightRecorder::setOutputFile(int fd, int64_t offset, int64_t length) {
220 LOGV("setOutputFile: %d, %lld, %lld", fd, offset, length);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderSetOutputFileStateUnitTest.java 26 * MediaRecorder.setOutputFile() method can be called.
31 * 1. It is valid to call setOutputFile() in the following states:
33 * 2. It is invalid to call setOutputFile() in the following states:
51 recorder.setOutputFile(MediaRecorderStateUnitTestTemplate.RECORD_OUTPUT_PATH);
61 return "setOutputFile()";
MediaRecorderStateUnitTestTemplate.java 105 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
132 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
145 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
159 /* Skip setAudioEncoder() and setOutputFile() calls if
167 if (mMethodUnderTest.toString() != "setOutputFile()") {
168 mMediaRecorder.setOutputFile(RECORD_OUTPUT_PATH);
192 /* Skip setOutputFormat if the method under test is setOutputFile()
193 * Because, otherwise, it is valid to call setOutputFile() after
197 if (mMethodUnderTest.toString() != "setOutputFile()") {
  /cts/tests/tests/permission/src/android/permission/cts/
AudioPermissionTest.java 52 mMediaRecorder.setOutputFile(AUDIO_CAPTURE_PATH);
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 75 mMediaRecorder.setOutputFile(OUTPUT_PATH);
143 method = "setOutputFile",
184 mMediaRecorder.setOutputFile(OUTPUT_PATH);
215 method = "setOutputFile",
267 mMediaRecorder.setOutputFile(OUTPUT_PATH2);
274 mMediaRecorder.setOutputFile(fd);
307 method = "setOutputFile",
335 mMediaRecorder.setOutputFile(OUTPUT_PATH);
MediaPlayerTest.java 691 mr.setOutputFile(mSourceMediaOnSdcard);
  /frameworks/base/media/libmedia/
IMediaRecorder.cpp 141 status_t setOutputFile(const char* path)
143 LOGV("setOutputFile(%s)", path);
151 status_t setOutputFile(int fd, int64_t offset, int64_t length) {
152 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
367 reply->writeInt32(setOutputFile(path));
376 reply->writeInt32(setOutputFile(fd, offset, length));
mediarecorder.cpp 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)
    [all...]
  /frameworks/base/media/java/android/media/
MediaRecorder.java 45 * recorder.setOutputFile(PATH_NAME);
280 * be called after the video AND audio sources are set, and before setOutputFile().
496 public void setOutputFile(FileDescriptor fd) throws IllegalStateException
510 public void setOutputFile(String path) throws IllegalStateException
549 * setOutputFile(). Call this after prepare().
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 207 mRecorder.setOutputFile(filename);
271 mRecorder.setOutputFile(filename);
361 mRecorder.setOutputFile(filename);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaRecorderTest.java 81 mRecorder.setOutputFile(outFile);
141 mMediaRecorder.setOutputFile(filename);
174 mRecorder.setOutputFile(outFile);
CodecTest.java 487 mRecorder.setOutputFile(filePath);
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 150 mRecorder.setOutputFile(mSampleFile.getAbsolutePath());
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 289 mRecorder.setOutputFile(outFile);
319 mRecorder.setOutputFile(filePath);
  /packages/apps/Camera/src/com/android/camera/
VideoCamera.java     [all...]
  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 251 LOGV("setOutputFile");
258 status_t opStatus = mr->setOutputFile(fd, offset, length);
259 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java     [all...]
  /prebuilt/sdk/4/
android.jar 

Completed in 337 milliseconds

1 2