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.java310 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate; in recordVideoWithPara() local
318 MediaFrameworkTestRunner.mMinCameraFps > videoFps){ in recordVideoWithPara()
319 videoFps = MediaFrameworkTestRunner.mMinCameraFps; in recordVideoWithPara()
322 if (videoFps < MIN_VIDEO_FPS) { in recordVideoWithPara()
323 videoFps = MIN_VIDEO_FPS; in recordVideoWithPara()
336 Log.v(TAG, "videoFPS : " + videoFps); in recordVideoWithPara()
347 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/include/nuplayer/
DNuPlayerRenderer.h60 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
300 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
DNuPlayerDriver.h64 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
DNuPlayer.h68 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/include/
DMediaPlayerInterface.h232 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument
234 *videoFps = -1.f; in getSyncSettings()
/frameworks/av/include/media/
DMediaPlayerInterface.h232 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument
234 *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.cpp2577 float *videoFps /* nonnull */) { in readFromAMessage() argument
2582 CHECK(msg->findFloat("video-fps", videoFps)); in readFromAMessage()
/frameworks/av/media/libmedia/
DIMediaPlayer.cpp262 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
274 *videoFps = reply.readFloat(); in getSyncSettings()
767 float videoFps; in onTransact() local
768 status_t err = getSyncSettings(&sync, &videoFps); in onTransact()
774 reply->writeFloat(videoFps); in onTransact()
Dmediaplayer.cpp483 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
487 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerRenderer.cpp301 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument
308 readFromAMessage(response, sync, videoFps); in getSyncSettings()
315 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in onGetSyncSettings() argument
317 *videoFps = -1.f; in onGetSyncSettings()
756 float videoFps = -1.f; in onMessageReceived() local
757 status_t err = onGetSyncSettings(&sync, &videoFps); in onMessageReceived()
760 writeToAMessage(response, sync, videoFps); in onMessageReceived()
DNuPlayer.cpp457 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in getSyncSettings() argument
464 readFromAMessage(response, sync, videoFps); in getSyncSettings()
998 float videoFps = mVideoFpsHint; in onMessageReceived() local
1001 err = mRenderer->getSyncSettings(&sync, &videoFps); in onMessageReceived()
1004 mVideoFpsHint = videoFps; in onMessageReceived()
1009 writeToAMessage(response, sync, videoFps); in onMessageReceived()
DNuPlayerDriver.cpp493 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument
494 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
/frameworks/av/media/libmedia/include/media/
DIMediaPlayer.h77 float* videoFps /* nonnull */) = 0;
Dmediaplayer.h247 float* videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.h344 float* videoFps /* nonnull */);
DMediaPlayerService.cpp1361 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
1365 status_t ret = p->getSyncSettings(sync, videoFps); in getSyncSettings()
1368 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps); in getSyncSettings()