Home
last modified time | relevance | path

Searched refs:videoFps (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
DMediaRecorderTest.java315 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate; in recordVideoWithPara() local
323 MediaFrameworkTestRunner.mMinCameraFps > videoFps){ in recordVideoWithPara()
324 videoFps = MediaFrameworkTestRunner.mMinCameraFps; in recordVideoWithPara()
327 if (videoFps < MIN_VIDEO_FPS) { in recordVideoWithPara()
328 videoFps = MIN_VIDEO_FPS; in recordVideoWithPara()
341 Log.v(TAG, "videoFPS : " + videoFps); in recordVideoWithPara()
352 mMediaRecorder.setVideoFrameRate(videoFps); in recordVideoWithPara()
/frameworks/av/media/libstagefright/include/media/stagefright/
DVideoFrameSchedulerBase.h31 void init(float videoFps = -1);
DUtils.h79 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerRenderer.h58 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
261 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
DNuPlayerRenderer.cpp289 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument
296 readFromAMessage(response, sync, videoFps); in getSyncSettings()
303 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in onGetSyncSettings() argument
305 *videoFps = -1.f; in onGetSyncSettings()
709 float videoFps = -1.f; in onMessageReceived() local
710 status_t err = onGetSyncSettings(&sync, &videoFps); in onMessageReceived()
713 writeToAMessage(response, sync, videoFps); in onMessageReceived()
DNuPlayerDriver.h62 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
DNuPlayer.h67 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
DNuPlayer.cpp444 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in getSyncSettings() argument
451 readFromAMessage(response, sync, videoFps); in getSyncSettings()
976 float videoFps = mVideoFpsHint; in onMessageReceived() local
979 err = mRenderer->getSyncSettings(&sync, &videoFps); in onMessageReceived()
982 mVideoFpsHint = videoFps; in onMessageReceived()
987 writeToAMessage(response, sync, videoFps); in onMessageReceived()
DNuPlayerDriver.cpp470 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument
471 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
/frameworks/av/include/media/
DMediaPlayerInterface.h225 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument
227 *videoFps = -1.f; in getSyncSettings()
/frameworks/av/media/libmediaplayerservice/include/
DMediaPlayerInterface.h225 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument
227 *videoFps = -1.f; in getSyncSettings()
/frameworks/av/media/libstagefright/
DVideoFrameSchedulerBase.cpp337 void VideoFrameSchedulerBase::init(float videoFps) { in init() argument
343 mPll.reset(videoFps); in init()
DUtils.cpp2159 float *videoFps /* nonnull */) { in readFromAMessage() argument
2164 CHECK(msg->findFloat("video-fps", videoFps)); in readFromAMessage()
/frameworks/av/media/libmedia/
DIMediaPlayer.cpp277 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
289 *videoFps = reply.readFloat(); in getSyncSettings()
776 float videoFps; in onTransact() local
777 status_t err = getSyncSettings(&sync, &videoFps); in onTransact()
783 reply->writeFloat(videoFps); in onTransact()
Dmediaplayer.cpp469 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
473 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
/frameworks/av/media/libmedia/include/media/
DIMediaPlayer.h76 float* videoFps /* nonnull */) = 0;
Dmediaplayer.h236 float* videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.h331 float* videoFps /* nonnull */);
DMediaPlayerService.cpp1139 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
1143 status_t ret = p->getSyncSettings(sync, videoFps); in getSyncSettings()
1146 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps); in getSyncSettings()