HomeSort by relevance Sort by last modified time
    Searched refs:videoFps (Results 1 - 20 of 20) sorted by null

  /frameworks/av/include/media/stagefright/
VideoFrameScheduler.h 33 void init(float videoFps = -1);
Utils.h 86 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 315 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate;
323 MediaFrameworkTestRunner.mMinCameraFps > videoFps){
324 videoFps = MediaFrameworkTestRunner.mMinCameraFps;
327 if (videoFps < MIN_VIDEO_FPS) {
328 videoFps = MIN_VIDEO_FPS;
341 Log.v(TAG, "videoFPS : " + videoFps);
352 mMediaRecorder.setVideoFrameRate(videoFps);
  /frameworks/av/include/media/
IMediaPlayer.h 67 float* videoFps /* nonnull */) = 0;
MediaPlayerInterface.h 192 virtual status_t setSyncSettings(const AVSyncSettings& sync, float /* videoFps */) {
201 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) {
203 *videoFps = -1.f;
mediaplayer.h 234 float* videoFps /* nonnull */);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 55 virtual status_t getSyncSettings(AVSyncSettings *sync, float *videoFps);
NuPlayerRenderer.h 57 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
239 status_t onGetSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
NuPlayerRenderer.cpp 243 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) {
250 readFromAMessage(response, sync, videoFps);
257 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
259 *videoFps = -1.f;
550 float videoFps = -1.f;
551 status_t err = onGetSyncSettings(&sync, &videoFps);
554 writeToAMessage(response, sync, videoFps);
    [all...]
NuPlayer.h 62 status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
NuPlayer.cpp 383 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
390 readFromAMessage(response, sync, videoFps);
802 float videoFps = mVideoFpsHint;
805 err = mRenderer->getSyncSettings(&sync, &videoFps);
808 mVideoFpsHint = videoFps;
813 writeToAMessage(response, sync, videoFps);
    [all...]
NuPlayerDriver.cpp 388 status_t NuPlayerDriver::getSyncSettings(AVSyncSettings *sync, float *videoFps) {
389 return mPlayer->getSyncSettings(sync, videoFps);
  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 224 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
236 *videoFps = reply.readFloat();
546 float videoFps;
547 status_t err = getSyncSettings(&sync, &videoFps);
553 reply->writeFloat(videoFps);
mediaplayer.cpp 443 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
447 return mPlayer->getSyncSettings(sync, videoFps);
  /frameworks/av/media/libstagefright/
VideoFrameScheduler.cpp 366 void VideoFrameScheduler::init(float videoFps) {
372 mPll.reset(videoFps);
Utils.cpp 981 float *videoFps /* nonnull */) {
986 CHECK(msg->findFloat("video-fps", videoFps));
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.h 290 float* videoFps /* nonnull */);
MediaPlayerService.cpp 1012 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
1016 status_t ret = p->getSyncSettings(sync, videoFps);
1019 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps);
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCamera2HWI.cpp     [all...]
  /hardware/qcom/camera/QCamera2/HAL/
QCamera2HWI.cpp     [all...]

Completed in 764 milliseconds