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.java616 int[] maxRegions = new int[3]; in mapControlOther() local
617 maxRegions[AE] = p.getMaxNumMeteringAreas(); in mapControlOther()
618 maxRegions[AWB] = 0; // AWB regions not supported in API1 in mapControlOther()
619 maxRegions[AF] = p.getMaxNumFocusAreas(); in mapControlOther()
622 maxRegions[AE] = 0; in mapControlOther()
625 maxRegions[AF] = 0; in mapControlOther()
628 m.set(CONTROL_MAX_REGIONS, maxRegions); in mapControlOther()
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraMetadataNative.java878 int[] maxRegions = getBase(CameraCharacteristics.CONTROL_MAX_REGIONS); in getMaxRegions() local
880 if (maxRegions == null) { in getMaxRegions()
885 return maxRegions[AE]; in getMaxRegions()
887 return maxRegions[AWB]; in getMaxRegions()
889 return maxRegions[AF]; in getMaxRegions()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.h316 size_t maxRegions,
DParameters.cpp2529 size_t maxRegions, in validateAreas() argument
2550 if (areas.size() > maxRegions) { in validateAreas()