Home
last modified time | relevance | path

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

/cts/tests/video/src/android/video/cts/
DCodecInfo.java55 String codecName, String mimeType, int w, int h, int maxFps) { in getSupportedFormatInfo() argument
82 MediaUtils.setMaxEncoderFrameAndBitrates(cap.getVideoCapabilities(), format, maxFps); in getSupportedFormatInfo() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
DItsUtils.java590 public static int calculateBitrate(int cameraId, Size previewSize, int maxFps) in calculateBitrate() argument
616 if (profile.getFrameRate() >= maxFps) { in calculateBitrate()
639 float bitRateScale = (profileFrameRate < maxFps) in calculateBitrate()
640 ? 1.0f * maxFps / profileFrameRate : 1.0f; in calculateBitrate()
DPreviewRecorder.java155 PreviewRecorder(int cameraId, Size previewSize, int maxFps, int sensorOrientation, in PreviewRecorder() argument
172 mMaxFps = maxFps; in PreviewRecorder()
DItsService.java1072 int maxFps = cmdObj.getInt("maxFps"); in processSocketCommand() local
1073 doCheckHLG10SupportForSizeAndFps(cameraId, videoSize, maxFps); in processSocketCommand()
1812 private void doCheckHLG10SupportForSizeAndFps(String cameraId, String videoSizeStr, int maxFps)
1818 int videoBitRate = ItsUtils.calculateBitrate(cameraIdInt, videoSize, maxFps);
1819 doCheckHLG10SupportInternal(cameraId, videoSize, videoBitRate, maxFps);
1823 int videoBitRate, int maxFps) throws ItsException {
1836 maxFps);
3698 int minFps, int maxFps) {
3734 if (minFps > 0 && maxFps > 0) {
3735 fileName += "_" + minFps + "_" + maxFps;
/cts/tests/videocodec/src/android/videocodec/cts/
DVideoEncoderMinMaxTest.java191 int maxFps = caps.getSupportedFrameRatesFor(TARGET_WIDTH, TARGET_HEIGHT).getUpper() in applyMinMaxRanges() local
193 cfgObjects.add(cfgParam.getBuilder().setFrameRate(maxFps).build()); in applyMinMaxRanges()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java870 MediaCodec encoder, MediaFormat format, int maxFps) { in setMaxEncoderFrameAndBitrates() argument
875 setMaxEncoderFrameAndBitrates(vidCaps, format, maxFps); in setMaxEncoderFrameAndBitrates()
879 VideoCapabilities vidCaps, MediaFormat format, int maxFps) { in setMaxEncoderFrameAndBitrates() argument
886 maxFps, vidCaps.getSupportedFrameRatesFor(width, height).getUpper().intValue()); in setMaxEncoderFrameAndBitrates()
/cts/tests/camera/src/android/hardware/camera2/cts/
DCameraDeviceTest.java1944 int maxFps = fpsRange.getUpper(); in checkFpsRange() local
1950 && maxFps == availableFpsRange[i].getUpper()) { in checkFpsRange()
1957 minFps, maxFps)); in checkFpsRange()
1964 if (maxFps < MIN_FPS_REQUIRED_FOR_STREAMING) { in checkFpsRange()
1974 if (maxFps != minFps) { in checkFpsRange()
DRecordingTest.java860 int maxFpsProfileId = -1, maxFps = 0; in testRecordingFramerateLowToHigh() local
872 if (profile.videoFrameRate > maxFps) { in testRecordingFramerateLowToHigh()
874 maxFps = profile.videoFrameRate; in testRecordingFramerateLowToHigh()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DStaticMetadata.java1668 int minFps, maxFps; in getAeAvailableTargetFpsRangesChecked() local
1672 maxFps = fpsRanges[i].getUpper(); in getAeAvailableTargetFpsRangesChecked()
1674 minFps > 0 && maxFps >= minFps); in getAeAvailableTargetFpsRangesChecked()
/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java2216 public void reset(double minFps, double maxFps) {
2218 this.mMaxFps = maxFps;