Home
last modified time | relevance | path

Searched refs:maxRegions (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DCamera2StillCaptureTest.java605 int maxRegions = 0; in isRegionsSupportedFor3A() local
608 maxRegions = mStaticInfo.getAeMaxRegionsChecked(); in isRegionsSupportedFor3A()
611 maxRegions = mStaticInfo.getAwbMaxRegionsChecked(); in isRegionsSupportedFor3A()
614 maxRegions = mStaticInfo.getAfMaxRegionsChecked(); in isRegionsSupportedFor3A()
619 boolean isRegionsSupported = maxRegions > 0; in isRegionsSupportedFor3A()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DLegacyMetadataMapper.java623 int[] maxRegions = new int[3]; in mapControlOther() local
624 maxRegions[AE] = p.getMaxNumMeteringAreas(); in mapControlOther()
625 maxRegions[AWB] = 0; // AWB regions not supported in API1 in mapControlOther()
626 maxRegions[AF] = p.getMaxNumFocusAreas(); in mapControlOther()
629 maxRegions[AE] = 0; in mapControlOther()
632 maxRegions[AF] = 0; in mapControlOther()
635 m.set(CONTROL_MAX_REGIONS, maxRegions); in mapControlOther()
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraMetadataNative.java1273 int[] maxRegions = getBase(CameraCharacteristics.CONTROL_MAX_REGIONS); in getMaxRegions() local
1275 if (maxRegions == null) { in getMaxRegions()
1280 return maxRegions[AE]; in getMaxRegions()
1282 return maxRegions[AWB]; in getMaxRegions()
1284 return maxRegions[AF]; in getMaxRegions()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.h351 size_t maxRegions,
DParameters.cpp2783 size_t maxRegions, in validateAreas() argument
2804 if (areas.size() > maxRegions) { in validateAreas()