/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 | VideoFrameScheduler.h | 33 void init(float videoFps = -1);
|
D | Utils.h | 92 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerRenderer.h | 57 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */); 259 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
D | NuPlayerRenderer.cpp | 267 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument 274 readFromAMessage(response, sync, videoFps); in getSyncSettings() 281 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in onGetSyncSettings() argument 283 *videoFps = -1.f; in onGetSyncSettings() 680 float videoFps = -1.f; in onMessageReceived() local 681 status_t err = onGetSyncSettings(&sync, &videoFps); in onMessageReceived() 684 writeToAMessage(response, sync, videoFps); in onMessageReceived()
|
D | NuPlayerDriver.h | 61 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
|
D | NuPlayer.h | 66 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
|
D | NuPlayer.cpp | 436 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) { in getSyncSettings() argument 443 readFromAMessage(response, sync, videoFps); in getSyncSettings() 950 float videoFps = mVideoFpsHint; in onMessageReceived() local 953 err = mRenderer->getSyncSettings(&sync, &videoFps); in onMessageReceived() 956 mVideoFpsHint = videoFps; in onMessageReceived() 961 writeToAMessage(response, sync, videoFps); in onMessageReceived()
|
D | NuPlayerDriver.cpp | 451 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) { in getSyncSettings() argument 452 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
|
/frameworks/av/include/media/ |
D | MediaPlayerInterface.h | 221 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument 223 *videoFps = -1.f; in getSyncSettings()
|
D | IMediaPlayer.h | 76 float* videoFps /* nonnull */) = 0;
|
D | mediaplayer.h | 242 float* videoFps /* nonnull */);
|
/frameworks/av/media/libmediaplayerservice/include/ |
D | MediaPlayerInterface.h | 221 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) { in getSyncSettings() argument 223 *videoFps = -1.f; in getSyncSettings()
|
/frameworks/av/media/libmedia/ |
D | IMediaPlayer.cpp | 268 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 280 *videoFps = reply.readFloat(); in getSyncSettings() 703 float videoFps; in onTransact() local 704 status_t err = getSyncSettings(&sync, &videoFps); in onTransact() 710 reply->writeFloat(videoFps); in onTransact()
|
D | mediaplayer.cpp | 485 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 489 return mPlayer->getSyncSettings(sync, videoFps); in getSyncSettings()
|
/frameworks/av/media/libmedia/include/media/ |
D | IMediaPlayer.h | 76 float* videoFps /* nonnull */) = 0;
|
D | mediaplayer.h | 242 float* videoFps /* nonnull */);
|
/frameworks/av/media/libstagefright/ |
D | VideoFrameScheduler.cpp | 371 void VideoFrameScheduler::init(float videoFps) { in init() argument 377 mPll.reset(videoFps); in init()
|
D | Utils.cpp | 1802 float *videoFps /* nonnull */) { in readFromAMessage() argument 1807 CHECK(msg->findFloat("video-fps", videoFps)); in readFromAMessage()
|
/frameworks/av/media/libmediaplayerservice/ |
D | MediaPlayerService.h | 321 float* videoFps /* nonnull */);
|
D | MediaPlayerService.cpp | 1165 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) in getSyncSettings() argument 1169 status_t ret = p->getSyncSettings(sync, videoFps); in getSyncSettings() 1172 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps); in getSyncSettings()
|