Searched defs:frames_per_second (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp404 status_t MediaRecorder::setVideoFrameRate(int frames_per_second) argument
406 ALOGV("setVideoFrameRate(%d)", frames_per_second);
420 status_t ret = mMediaRecorder->setVideoFrameRate(frames_per_second);
H A DIMediaRecorder.cpp211 status_t setVideoFrameRate(int frames_per_second) argument
213 ALOGV("setVideoFrameRate(%d)", frames_per_second);
216 data.writeInt32(frames_per_second);
552 int frames_per_second = data.readInt32(); local
553 reply->writeInt32(setVideoFrameRate(frames_per_second));
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp197 status_t MediaRecorderClient::setVideoFrameRate(int frames_per_second) argument
199 ALOGV("setVideoFrameRate(%d)", frames_per_second);
205 return mRecorder->setVideoFrameRate(frames_per_second);
H A DStagefrightRecorder.cpp321 status_t StagefrightRecorder::setVideoFrameRate(int frames_per_second) { argument
322 ALOGV("setVideoFrameRate: %d", frames_per_second);
323 if ((frames_per_second <= 0 && frames_per_second != -1) ||
324 frames_per_second > kMaxHighSpeedFps) {
325 ALOGE("Invalid video frame rate: %d", frames_per_second);
330 mFrameRate = frames_per_second;

Completed in 795 milliseconds