Home
last modified time | relevance | path

Searched refs:frames_per_second (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libmediaplayerservice/
DMediaRecorderClient.cpp237 status_t MediaRecorderClient::setVideoFrameRate(int frames_per_second) in setVideoFrameRate() argument
239 ALOGV("setVideoFrameRate(%d)", frames_per_second); in setVideoFrameRate()
245 return mRecorder->setVideoFrameRate(frames_per_second); in setVideoFrameRate()
DMediaRecorderClient.h63 virtual status_t setVideoFrameRate(int frames_per_second);
DStagefrightRecorder.cpp371 status_t StagefrightRecorder::setVideoFrameRate(int frames_per_second) { in setVideoFrameRate() argument
372 ALOGV("setVideoFrameRate: %d", frames_per_second); in setVideoFrameRate()
373 if ((frames_per_second <= 0 && frames_per_second != -1) || in setVideoFrameRate()
374 frames_per_second > kMaxHighSpeedFps) { in setVideoFrameRate()
375 ALOGE("Invalid video frame rate: %d", frames_per_second); in setVideoFrameRate()
380 mFrameRate = frames_per_second; in setVideoFrameRate()
DStagefrightRecorder.h61 virtual status_t setVideoFrameRate(int frames_per_second);
/frameworks/av/media/libmedia/
DIMediaRecorder.cpp246 status_t setVideoFrameRate(int frames_per_second) in setVideoFrameRate() argument
248 ALOGV("setVideoFrameRate(%d)", frames_per_second); in setVideoFrameRate()
251 data.writeInt32(frames_per_second); in setVideoFrameRate()
657 int frames_per_second = data.readInt32(); in onTransact() local
658 reply->writeInt32(setVideoFrameRate(frames_per_second)); in onTransact()
Dmediarecorder.cpp449 status_t MediaRecorder::setVideoFrameRate(int frames_per_second) in setVideoFrameRate() argument
451 ALOGV("setVideoFrameRate(%d)", frames_per_second); in setVideoFrameRate()
465 status_t ret = mMediaRecorder->setVideoFrameRate(frames_per_second); in setVideoFrameRate()
/frameworks/av/media/libmedia/include/media/
DIMediaRecorder.h55 virtual status_t setVideoFrameRate(int frames_per_second) = 0;
DMediaRecorderBase.h49 virtual status_t setVideoFrameRate(int frames_per_second) = 0;
Dmediarecorder.h250 status_t setVideoFrameRate(int frames_per_second);