/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
D | MediaRecorderTest.java | 315 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate; in recordVideoWithPara() local 323 MediaFrameworkTestRunner.mMinCameraFps > videoFps){ in recordVideoWithPara() 324 videoFps = MediaFrameworkTestRunner.mMinCameraFps; in recordVideoWithPara() 327 if (videoFps < MIN_VIDEO_FPS) { in recordVideoWithPara() 328 videoFps = MIN_VIDEO_FPS; in recordVideoWithPara() 341 Log.v(TAG, "videoFPS : " + videoFps); in recordVideoWithPara() 352 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/ |
D | NuPlayerRenderer.h | 58 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */); 261 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
D | NuPlayerRenderer.cpp | 289 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument 296 readFromAMessage(response, sync, videoFps); in getSyncSettings() 303 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in onGetSyncSettings() argument 305 *videoFps = -1.f; in onGetSyncSettings() 709 float videoFps = -1.f; in onMessageReceived() local 710 status_t err = onGetSyncSettings(&sync, &videoFps); in onMessageReceived() 713 writeToAMessage(response, sync, videoFps); in onMessageReceived()
|
D | NuPlayerDriver.h | 62 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
|
D | NuPlayer.h | 67 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
D | NuPlayer.cpp | 444 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in getSyncSettings() argument 451 readFromAMessage(response, sync, videoFps); in getSyncSettings() 976 float videoFps = mVideoFpsHint; in onMessageReceived() local 979 err = mRenderer->getSyncSettings(&sync, &videoFps); in onMessageReceived() 982 mVideoFpsHint = videoFps; in onMessageReceived() 987 writeToAMessage(response, sync, videoFps); in onMessageReceived()
|
D | NuPlayerDriver.cpp | 470 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument 471 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
|
/frameworks/av/include/media/ |
D | MediaPlayerInterface.h | 225 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument 227 *videoFps = -1.f; in getSyncSettings()
|
/frameworks/av/media/libmediaplayerservice/include/ |
D | MediaPlayerInterface.h | 225 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument 227 *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 | 2159 float *videoFps /* nonnull */) { in readFromAMessage() argument 2164 CHECK(msg->findFloat("video-fps", videoFps)); in readFromAMessage()
|
/frameworks/av/media/libmedia/ |
D | IMediaPlayer.cpp | 277 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 289 *videoFps = reply.readFloat(); in getSyncSettings() 776 float videoFps; in onTransact() local 777 status_t err = getSyncSettings(&sync, &videoFps); in onTransact() 783 reply->writeFloat(videoFps); in onTransact()
|
D | mediaplayer.cpp | 469 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 473 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
|
/frameworks/av/media/libmedia/include/media/ |
D | IMediaPlayer.h | 76 float* videoFps /* nonnull */) = 0;
|
D | mediaplayer.h | 236 float* videoFps /* nonnull */);
|
/frameworks/av/media/libmediaplayerservice/ |
D | MediaPlayerService.h | 331 float* videoFps /* nonnull */);
|
D | MediaPlayerService.cpp | 1139 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 1143 status_t ret = p->getSyncSettings(sync, videoFps); in getSyncSettings() 1146 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps); in getSyncSettings()
|