Searched defs:videoFpsHint (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp256 status_t setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
263 data.writeFloat(videoFpsHint);
696 float videoFpsHint = data.readFloat(); local
697 reply->writeInt32(setSyncSettings(sync, videoFpsHint));
H A Dmediaplayer.cpp475 status_t MediaPlayer::setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
478 sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
481 return mPlayer->setSyncSettings(sync, videoFpsHint);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp441 status_t NuPlayerDriver::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
442 return mPlayer->setSyncSettings(sync, videoFpsHint);
H A DNuPlayer.cpp424 status_t NuPlayer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
426 writeToAMessage(msg, sync, videoFpsHint);
928 float videoFpsHint; local
929 readFromAMessage(msg, &sync, &videoFpsHint);
932 err = mRenderer->setSyncSettings(sync, videoFpsHint);
936 mVideoFpsHint = videoFpsHint;
H A DNuPlayerRenderer.cpp248 status_t NuPlayer::Renderer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
250 writeToAMessage(msg, sync, videoFpsHint);
259 status_t NuPlayer::Renderer::onConfigSync(const AVSyncSettings &sync, float videoFpsHint __unused) {
664 float videoFpsHint; local
665 readFromAMessage(msg, &sync, &videoFpsHint);
666 status_t err = onConfigSync(sync, videoFpsHint);
/frameworks/av/media/libstagefright/
H A DUtils.cpp1776 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint) { argument
1780 msg->setFloat("video-fps", videoFpsHint);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1115 const AVSyncSettings& sync, float videoFpsHint)
1118 mConnId, sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
1121 return p->setSyncSettings(sync, videoFpsHint);
1114 setSyncSettings( const AVSyncSettings& sync, float videoFpsHint) argument

Completed in 352 milliseconds