Home
last modified time | relevance | path

Searched refs:videoFps (Results 1 – 21 of 21) 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/
DVideoFrameScheduler.h33 void init(float videoFps = -1);
DUtils.h92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerRenderer.h57 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
259 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
DNuPlayerRenderer.cpp267 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument
274 readFromAMessage(response, sync, videoFps); in getSyncSettings()
281 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in onGetSyncSettings() argument
283 *videoFps = -1.f; in onGetSyncSettings()
680 float videoFps = -1.f; in onMessageReceived() local
681 status_t err = onGetSyncSettings(&sync, &videoFps); in onMessageReceived()
684 writeToAMessage(response, sync, videoFps); in onMessageReceived()
DNuPlayerDriver.h61 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
DNuPlayer.h66 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
DNuPlayer.cpp436 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in getSyncSettings() argument
443 readFromAMessage(response, sync, videoFps); in getSyncSettings()
950 float videoFps = mVideoFpsHint; in onMessageReceived() local
953 err = mRenderer->getSyncSettings(&sync, &videoFps); in onMessageReceived()
956 mVideoFpsHint = videoFps; in onMessageReceived()
961 writeToAMessage(response, sync, videoFps); in onMessageReceived()
DNuPlayerDriver.cpp451 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument
452 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
/frameworks/av/include/media/
DMediaPlayerInterface.h221 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument
223 *videoFps = -1.f; in getSyncSettings()
DIMediaPlayer.h76 float* videoFps /* nonnull */) = 0;
Dmediaplayer.h242 float* videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/include/
DMediaPlayerInterface.h221 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument
223 *videoFps = -1.f; in getSyncSettings()
/frameworks/av/media/libmedia/
DIMediaPlayer.cpp268 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
280 *videoFps = reply.readFloat(); in getSyncSettings()
703 float videoFps; in onTransact() local
704 status_t err = getSyncSettings(&sync, &videoFps); in onTransact()
710 reply->writeFloat(videoFps); in onTransact()
Dmediaplayer.cpp485 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
489 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
/frameworks/av/media/libmedia/include/media/
DIMediaPlayer.h76 float* videoFps /* nonnull */) = 0;
Dmediaplayer.h242 float* videoFps /* nonnull */);
/frameworks/av/media/libstagefright/
DVideoFrameScheduler.cpp371 void VideoFrameScheduler::init(float videoFps) { in init() argument
377 mPll.reset(videoFps); in init()
DUtils.cpp1802 float *videoFps /* nonnull */) { in readFromAMessage() argument
1807 CHECK(msg->findFloat("video-fps", videoFps)); in readFromAMessage()
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.h321 float* videoFps /* nonnull */);
DMediaPlayerService.cpp1165 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument
1169 status_t ret = p->getSyncSettings(sync, videoFps); in getSyncSettings()
1172 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps); in getSyncSettings()