Searched defs:sensitivity (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCamera2CaptureRequestTest.java278 Log.v(TAG, "Camera " + mCamera.getId() + ": Testing sensitivity "
305 * Enable exposure manual control and change exposure and sensitivity and
309 long expTime, int sensitivity) {
310 // Check if the max analog sensitivity is available and no larger than max sensitivity.
311 // The max analog sensitivity is not actually used here. This is only an extra sanity check.
315 sensitivity = mStaticInfo.getSensitivityClampToRange(sensitivity);
319 requestBuilder.set(CaptureRequest.SENSOR_SENSITIVITY, sensitivity);
342 * Get the sensitivity arra
308 changeExposure(CaptureRequest.Builder requestBuilder, long expTime, int sensitivity) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMicrophoneInfo.java29 * microphone on the device as well as useful information like frequency response and sensitivity.
118 * Value used for when the sensitivity of the microphone is unknown.
169 List<Pair<Integer, Integer>> channelMapping, float sensitivity, float maxSpl,
181 mSensitivity = sensitivity;
321 * @return the sensitivity of the microphone or {@link #SENSITIVITY_UNKNOWN} if the sensitivity
166 MicrophoneInfo(String deviceId, int type, String address, int location, int group, int indexInTheGroup, Coordinate3F position, Coordinate3F orientation, List<Pair<Float, Float>> frequencyResponse, List<Pair<Integer, Integer>> channelMapping, float sensitivity, float maxSpl, float minSpl, int directionality) argument
/frameworks/support/customview/src/main/java/androidx/customview/widget/
H A DViewDragHelper.java362 * @param sensitivity Multiplier for how sensitive the helper should be about detecting
367 public static ViewDragHelper create(@NonNull ViewGroup forParent, float sensitivity, argument
370 helper.mTouchSlop = (int) (helper.mTouchSlop * (1 / sensitivity));
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DStaticMetadata.java854 * Get the sensitivity value and clamp to the range if needed.
856 * @param sensitivity Input sensitivity value to check.
859 public int getSensitivityClampToRange(int sensitivity) { argument
877 return Math.max(minSensitivity, Math.min(maxSensitivity, sensitivity));
894 Assert.fail("Full device should report max analog sensitivity");
901 checkTrueForKey(key, " Max analog sensitivity " + maxAnalogsensitivity
902 + " should be no larger than max sensitivity " + maxSensitivity,
904 checkTrueForKey(key, " Max analog sensitivity " + maxAnalogsensitivity
905 + " should be larger than min sensitivity "
[all...]

Completed in 248 milliseconds