Home
last modified time | relevance | path

Searched refs:maxFps (Results 1 – 14 of 14) sorted by relevance

/frameworks/native/libs/nativedisplay/
DADisplay.cpp235 float maxFps = 0.0; in ADisplay_getMaxSupportedFps() local
237 maxFps = std::max(maxFps, impl->configs[i].fps); in ADisplay_getMaxSupportedFps()
239 return maxFps; in ADisplay_getMaxSupportedFps()
/frameworks/av/media/libmedia/omx/1.0/
DWGraphicBufferSource.cpp51 BnStatus LWGraphicBufferSource::setMaxFps(float maxFps) { in setMaxFps() argument
52 return toBinderStatus(mBase->setMaxFps(maxFps)); in setMaxFps()
/frameworks/av/media/libmedia/aidl/android/
DIGraphicBufferSource.aidl30 void setMaxFps(float maxFps); in setMaxFps() argument
/frameworks/av/media/codec2/sfplugin/
DOmx2IGraphicBufferSource.cpp104 BnStatus Omx2IGraphicBufferSource::setMaxFps(float maxFps) { in setMaxFps() argument
105 return BnStatus::fromStatusT(mBase->setMaxFps(maxFps)); in setMaxFps()
DOmx2IGraphicBufferSource.h34 BnStatus setMaxFps(float maxFps) override;
/frameworks/av/media/libstagefright/omx/1.0/
DWGraphicBufferSource.cpp207 Return<Status> TWGraphicBufferSource::setMaxFps(float maxFps) { in setMaxFps() argument
208 return toStatus(mBase->setMaxFps(maxFps)); in setMaxFps()
/frameworks/native/services/surfaceflinger/
DRefreshRateOverlay.cpp272 const int maxFps = mFpsRange.max.getIntValue(); in getOrCreateBuffers() local
276 const int intFps = std::clamp(fps.getIntValue(), minFps, maxFps); in getOrCreateBuffers()
279 const float fpsScale = static_cast<float>(intFps - minFps) / std::max(1, maxFps - minFps); in getOrCreateBuffers()
/frameworks/av/media/libmedia/include/media/omx/1.0/
DWGraphicBufferSource.h73 BnStatus setMaxFps(float maxFps) override;
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
DWGraphicBufferSource.h76 Return<Status> setMaxFps(float maxFps) override;
/frameworks/av/media/libstagefright/bqhelper/include/media/stagefright/bqhelper/
DGraphicBufferSource.h175 status_t setMaxFps(float maxFps);
/frameworks/av/media/libstagefright/bqhelper/
DGraphicBufferSource.cpp1299 status_t GraphicBufferSource::setMaxFps(float maxFps) { in setMaxFps() argument
1300 ALOGV("setMaxFps: maxFps=%lld", (long long)maxFps); in setMaxFps()
1309 status_t err = mFrameDropper->setMaxFrameRate(maxFps); in setMaxFps()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DStaticMetadata.java1424 int minFps, maxFps; in getAeAvailableTargetFpsRangesChecked() local
1428 maxFps = fpsRanges[i].getUpper(); in getAeAvailableTargetFpsRangesChecked()
1430 minFps > 0 && maxFps >= minFps); in getAeAvailableTargetFpsRangesChecked()
/frameworks/base/services/tests/servicestests/src/com/android/server/display/
DDisplayModeDirectorTest.java194 private DisplayModeDirector createDirectorFromFpsRange(int minFps, int maxFps) { in createDirectorFromFpsRange() argument
195 int numRefreshRates = maxFps - minFps + 1; in createDirectorFromFpsRange()
220 int maxFps = 90; in testDisplayModeVoting() local
222 assertTrue(2 * numPriorities < maxFps - minFps + 1); in testDisplayModeVoting()
228 votes.put(priority, Vote.forRefreshRates(minFps + i, maxFps - i)); in testDisplayModeVoting()
235 .isEqualTo((float) (maxFps - i)); in testDisplayModeVoting()
/frameworks/base/services/core/java/com/android/server/camera/
DCameraServiceProxy.java1059 float maxFps = cameraState.getMaxPreviewFps(); in getMinFps() local
1060 return Math.max(Math.min(maxFps, MAX_PREVIEW_FPS), MIN_PREVIEW_FPS); in getMinFps()