HomeSort by relevance Sort by last modified time
    Searched refs:setOutputFile (Results 1 - 25 of 29) 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 165 status_t setOutputFile(const char* path);
166 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);
StagefrightRecorder.h 43 virtual status_t setOutputFile(const char *path);
44 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.cpp 110 status_t StagefrightRecorder::setOutputFile(const char *path) {
117 status_t StagefrightRecorder::setOutputFile(int fd, int64_t offset, int64_t length) {
  /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);
  /external/opencore/android/author/
PVMediaRecorder.cpp 106 status_t PVMediaRecorder::setOutputFile(const char *path)
108 LOGV("setOutputFile(%s)", path);
120 return setOutputFile(fd, 0, 0);
123 status_t PVMediaRecorder::setOutputFile(int fd, int64_t offset, int64_t length)
125 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
  /frameworks/base/media/libmedia/
IMediaRecorder.cpp 140 status_t setOutputFile(const char* path)
142 LOGV("setOutputFile(%s)", path);
150 status_t setOutputFile(int fd, int64_t offset, int64_t length) {
151 LOGV("setOutputFile(%d, %lld, %lld)", fd, offset, length);
366 reply->writeInt32(setOutputFile(path));
375 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);
264 * be called after the video AND audio sources are set, and before setOutputFile().
455 public void setOutputFile(FileDescriptor fd) throws IllegalStateException
469 public void setOutputFile(String path) throws IllegalStateException
508 * setOutputFile(). Call this after prepare().
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 70 mMediaRecorder.setOutputFile(OUTPUT_PATH);
134 method = "setOutputFile",
173 mMediaRecorder.setOutputFile(OUTPUT_PATH);
201 method = "setOutputFile",
259 mMediaRecorder.setOutputFile(fd);
292 method = "setOutputFile",
MediaPlayerTest.java 644 mr.setOutputFile(mSourceMediaOnSdcard);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 223 mRecorder.setOutputFile(filename);
291 mRecorder.setOutputFile(filename);
382 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 905 mMediaRecorder.setOutputFile("/dev/null");
910 mMediaRecorder.setOutputFile(mCameraVideoFileDescriptor);
913 mMediaRecorder.setOutputFile(mCameraVideoFilename);
    [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 811 recorder.setOutputFile("/dev/null");
    [all...]

Completed in 2072 milliseconds

1 2