/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
D | MediaRecorderTest.java | 310 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate; in recordVideoWithPara() local 318 MediaFrameworkTestRunner.mMinCameraFps > videoFps){ in recordVideoWithPara() 319 videoFps = MediaFrameworkTestRunner.mMinCameraFps; in recordVideoWithPara() 322 if (videoFps < MIN_VIDEO_FPS) { in recordVideoWithPara() 323 videoFps = MIN_VIDEO_FPS; in recordVideoWithPara() 336 Log.v(TAG, "videoFPS : " + videoFps); in recordVideoWithPara() 347 mMediaRecorder.setVideoFrameRate(videoFps); in recordVideoWithPara()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | VideoFrameSchedulerBase.h | 31 void init(float videoFps = -1);
|
D | Utils.h | 79 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
/frameworks/av/media/libmediaplayerservice/nuplayer/include/nuplayer/ |
D | NuPlayerRenderer.h | 60 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */); 300 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
D | NuPlayerDriver.h | 64 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
|
D | NuPlayer.h | 68 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
/frameworks/av/media/libmediaplayerservice/include/ |
D | MediaPlayerInterface.h | 232 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument 234 *videoFps = -1.f; in getSyncSettings()
|
/frameworks/av/include/media/ |
D | MediaPlayerInterface.h | 232 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument 234 *videoFps = -1.f; in getSyncSettings()
|
/frameworks/av/media/libstagefright/ |
D | VideoFrameSchedulerBase.cpp | 337 void VideoFrameSchedulerBase::init(float videoFps) { in init() argument 343 mPll.reset(videoFps); in init()
|
D | Utils.cpp | 2577 float *videoFps /* nonnull */) { in readFromAMessage() argument 2582 CHECK(msg->findFloat("video-fps", videoFps)); in readFromAMessage()
|
/frameworks/av/media/libmedia/ |
D | IMediaPlayer.cpp | 262 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 274 *videoFps = reply.readFloat(); in getSyncSettings() 767 float videoFps; in onTransact() local 768 status_t err = getSyncSettings(&sync, &videoFps); in onTransact() 774 reply->writeFloat(videoFps); in onTransact()
|
D | mediaplayer.cpp | 483 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 487 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerRenderer.cpp | 301 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument 308 readFromAMessage(response, sync, videoFps); in getSyncSettings() 315 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in onGetSyncSettings() argument 317 *videoFps = -1.f; in onGetSyncSettings() 756 float videoFps = -1.f; in onMessageReceived() local 757 status_t err = onGetSyncSettings(&sync, &videoFps); in onMessageReceived() 760 writeToAMessage(response, sync, videoFps); in onMessageReceived()
|
D | NuPlayer.cpp | 457 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in getSyncSettings() argument 464 readFromAMessage(response, sync, videoFps); in getSyncSettings() 998 float videoFps = mVideoFpsHint; in onMessageReceived() local 1001 err = mRenderer->getSyncSettings(&sync, &videoFps); in onMessageReceived() 1004 mVideoFpsHint = videoFps; in onMessageReceived() 1009 writeToAMessage(response, sync, videoFps); in onMessageReceived()
|
D | NuPlayerDriver.cpp | 493 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument 494 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
|
/frameworks/av/media/libmedia/include/media/ |
D | IMediaPlayer.h | 77 float* videoFps /* nonnull */) = 0;
|
D | mediaplayer.h | 247 float* videoFps /* nonnull */);
|
/frameworks/av/media/libmediaplayerservice/ |
D | MediaPlayerService.h | 344 float* videoFps /* nonnull */);
|
D | MediaPlayerService.cpp | 1361 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 1365 status_t ret = p->getSyncSettings(sync, videoFps); in getSyncSettings() 1368 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps); in getSyncSettings()
|