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

/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp367 status_t MediaRecorder::setVideoFrameRate(int frames_per_second) argument
369 ALOGV("setVideoFrameRate(%d)", frames_per_second);
383 status_t ret = mMediaRecorder->setVideoFrameRate(frames_per_second);
H A DIMediaRecorder.cpp191 status_t setVideoFrameRate(int frames_per_second) argument
193 ALOGV("setVideoFrameRate(%d)", frames_per_second);
196 data.writeInt32(frames_per_second);
419 int frames_per_second = data.readInt32(); local
420 reply->writeInt32(setVideoFrameRate(frames_per_second));
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp189 status_t MediaRecorderClient::setVideoFrameRate(int frames_per_second) argument
191 ALOGV("setVideoFrameRate(%d)", frames_per_second);
197 return mRecorder->setVideoFrameRate(frames_per_second);
H A DStagefrightRecorder.cpp197 status_t StagefrightRecorder::setVideoFrameRate(int frames_per_second) { argument
198 ALOGV("setVideoFrameRate: %d", frames_per_second);
199 if ((frames_per_second <= 0 && frames_per_second != -1) ||
200 frames_per_second > 120) {
201 ALOGE("Invalid video frame rate: %d", frames_per_second);
206 mFrameRate = frames_per_second;

Completed in 131 milliseconds