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

/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp263 status_t setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
270 data.writeFloat(videoFpsHint);
765 float videoFpsHint = data.readFloat(); local
766 reply->writeInt32(setSyncSettings(sync, videoFpsHint));
H A Dmediaplayer.cpp459 status_t MediaPlayer::setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) argument
462 sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
465 return mPlayer->setSyncSettings(sync, videoFpsHint);
/frameworks/av/media/libmediaplayer2/
H A Dmediaplayer2.cpp916 status_t MediaPlayer2::setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) { argument
918 sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
921 return mPlayer->setSyncSettings(sync, videoFpsHint);
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DNuPlayer2Driver.cpp406 status_t NuPlayer2Driver::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
407 return mPlayer->setSyncSettings(sync, videoFpsHint);
H A DNuPlayer2.cpp519 status_t NuPlayer2::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
521 writeToAMessage(msg, sync, videoFpsHint);
1084 float videoFpsHint; local
1085 readFromAMessage(msg, &sync, &videoFpsHint);
1088 err = mRenderer->setSyncSettings(sync, videoFpsHint);
1092 mVideoFpsHint = videoFpsHint;
H A DNuPlayer2Renderer.cpp249 status_t NuPlayer2::Renderer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
251 writeToAMessage(msg, sync, videoFpsHint);
260 status_t NuPlayer2::Renderer::onConfigSync(const AVSyncSettings &sync, float videoFpsHint __unused) {
668 float videoFpsHint; local
669 readFromAMessage(msg, &sync, &videoFpsHint);
670 status_t err = onConfigSync(sync, videoFpsHint);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp463 status_t NuPlayerDriver::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
464 return mPlayer->setSyncSettings(sync, videoFpsHint);
H A DNuPlayer.cpp432 status_t NuPlayer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
434 writeToAMessage(msg, sync, videoFpsHint);
944 float videoFpsHint; local
945 readFromAMessage(msg, &sync, &videoFpsHint);
948 err = mRenderer->setSyncSettings(sync, videoFpsHint);
952 mVideoFpsHint = videoFpsHint;
H A DNuPlayerRenderer.cpp250 status_t NuPlayer::Renderer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) { argument
252 writeToAMessage(msg, sync, videoFpsHint);
261 status_t NuPlayer::Renderer::onConfigSync(const AVSyncSettings &sync, float videoFpsHint __unused) {
669 float videoFpsHint; local
670 readFromAMessage(msg, &sync, &videoFpsHint);
671 status_t err = onConfigSync(sync, videoFpsHint);
/frameworks/av/media/libstagefright/
H A DUtils.cpp1803 void writeToAMessage(const sp<AMessage> &msg, const AVSyncSettings &sync, float videoFpsHint) { argument
1807 msg->setFloat("video-fps", videoFpsHint);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1138 const AVSyncSettings& sync, float videoFpsHint)
1141 mConnId, sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
1144 return p->setSyncSettings(sync, videoFpsHint);
1137 setSyncSettings( const AVSyncSettings& sync, float videoFpsHint) argument

Completed in 478 milliseconds