Searched defs:videoFps (Results 1 - 5 of 5) sorted by relevance

/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);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp381 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { argument
382 return mPlayer->getSyncSettings(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 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);
/frameworks/av/media/libstagefright/
H A DVideoFrameScheduler.cpp366 void VideoFrameScheduler::init(float videoFps) { argument
372 mPll.reset(videoFps);

Completed in 130 milliseconds