Searched refs:videoFps (Results 1 - 18 of 18) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DVideoFrameScheduler.h33 void init(float videoFps = -1);
H A DUtils.h91 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java315 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate;
323 MediaFrameworkTestRunner.mMinCameraFps > videoFps){
324 videoFps = MediaFrameworkTestRunner.mMinCameraFps;
327 if (videoFps < MIN_VIDEO_FPS) {
328 videoFps = MIN_VIDEO_FPS;
341 Log.v(TAG, "videoFPS : " + videoFps);
352 mMediaRecorder.setVideoFrameRate(videoFps);
/frameworks/av/include/media/
H A DIMediaPlayer.h67 float* videoFps /* nonnull */) = 0;
H A DMediaPlayerInterface.h194 virtual status_t setSyncSettings(const AVSyncSettings& sync, float /* videoFps */) {
203 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) {
205 *videoFps = -1.f;
H A Dmediaplayer.h233 float* videoFps /* nonnull */);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.h57 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
245 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
H A DNuPlayerDriver.h55 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
H A DNuPlayer.h62 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
H A DNuPlayerRenderer.cpp255 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { argument
262 readFromAMessage(response, sync, videoFps);
269 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
271 *videoFps = -1.f;
606 float videoFps = -1.f; local
607 status_t err = onGetSyncSettings(&sync, &videoFps);
610 writeToAMessage(response, sync, videoFps);
H A DNuPlayer.cpp385 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
392 readFromAMessage(response, sync, videoFps);
855 float videoFps = mVideoFpsHint; local
858 err = mRenderer->getSyncSettings(&sync, &videoFps);
861 mVideoFpsHint = videoFps;
866 writeToAMessage(response, sync, videoFps);
H A DNuPlayerDriver.cpp381 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { argument
382 return mPlayer->getSyncSettings(sync, videoFps);
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp224 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
236 *videoFps = reply.readFloat();
558 float videoFps; local
559 status_t err = getSyncSettings(&sync, &videoFps);
565 reply->writeFloat(videoFps);
H A Dmediaplayer.cpp438 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
442 return mPlayer->getSyncSettings(sync, videoFps);
/frameworks/av/media/libstagefright/
H A DVideoFrameScheduler.cpp366 void VideoFrameScheduler::init(float videoFps) { argument
372 mPll.reset(videoFps);
H A DUtils.cpp1726 float *videoFps /* nonnull */) {
1731 CHECK(msg->findFloat("video-fps", videoFps));
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h298 float* videoFps /* nonnull */);
H A DMediaPlayerService.cpp1042 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
1046 status_t ret = p->getSyncSettings(sync, videoFps);
1049 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps);

Completed in 7181 milliseconds