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

/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp212 status_t setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
219 data.writeFloat(videoFpsHint);
539 float videoFpsHint = data.readFloat(); local
540 reply->writeInt32(setSyncSettings(sync, videoFpsHint));
H A Dmediaplayer.cpp433 status_t MediaPlayer::setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
436 sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
439 return mPlayer->setSyncSettings(sync, videoFpsHint);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp384 status_t NuPlayerDriver::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
385 return mPlayer->setSyncSettings(sync, videoFpsHint);
H A DNuPlayerRenderer.cpp224 status_t NuPlayer::Renderer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
226 writeToAMessage(msg, sync, videoFpsHint);
235 status_t NuPlayer::Renderer::onConfigSync(const AVSyncSettings &sync, float videoFpsHint __unused) {
534 float videoFpsHint; local
535 readFromAMessage(msg, &sync, &videoFpsHint);
536 status_t err = onConfigSync(sync, videoFpsHint);
H A DNuPlayer.cpp371 status_t NuPlayer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
373 writeToAMessage(msg, sync, videoFpsHint);
781 float videoFpsHint; local
782 readFromAMessage(msg, &sync, &videoFpsHint);
785 err = mRenderer->setSyncSettings(sync, videoFpsHint);
789 mVideoFpsHint = videoFpsHint;
/frameworks/av/media/libstagefright/
H A DUtils.cpp971 void writeToAMessage(sp<AMessage> msg, const AVSyncSettings &sync, float videoFpsHint) { argument
975 msg->setFloat("video-fps", videoFpsHint);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1002 const AVSyncSettings& sync, float videoFpsHint)
1005 mConnId, sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
1008 return p->setSyncSettings(sync, videoFpsHint);
1001 setSyncSettings( const AVSyncSettings& sync, float videoFpsHint) argument

Completed in 125 milliseconds