Home
last modified time | relevance | path

Searched refs:streamHeight (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/java/android/hardware/camera2/params/
H A DMultiResolutionStreamInfo.java62 @IntRange(from = 1) int streamHeight, in MultiResolutionStreamInfo()
67 if (streamHeight <= 0) { in MultiResolutionStreamInfo()
68 throw new IllegalArgumentException("Invalid stream height " + streamHeight); in MultiResolutionStreamInfo()
71 mStreamHeight = streamHeight; in MultiResolutionStreamInfo()
/aosp12/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
H A DLogoUtils.java85 int streamHeight = bounds.outHeight; in getBitmapPartiallyResized() local
86 int ratio = Math.max(streamWidth / maxDesiredWidth, streamHeight / maxDesiredHeight); in getBitmapPartiallyResized()