Home
last modified time | relevance | path

Searched refs:supportedPictureSizes (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
DCameraPairwiseTest.java463 List<Camera.Size> supportedPictureSizes = params.getSupportedPictureSizes(); in genericPairwiseTestCase() local
464 int mid = (int) Math.floor(supportedPictureSizes.size() / 2); in genericPairwiseTestCase()
465 int low = supportedPictureSizes.size() - 1; in genericPairwiseTestCase()
468 params.setPictureSize(supportedPictureSizes.get(low).width, in genericPairwiseTestCase()
469 supportedPictureSizes.get(low).height); in genericPairwiseTestCase()
472 params.setPictureSize(supportedPictureSizes.get(mid).width, in genericPairwiseTestCase()
473 supportedPictureSizes.get(mid).height); in genericPairwiseTestCase()
476 params.setPictureSize(supportedPictureSizes.get(0).width, in genericPairwiseTestCase()
477 supportedPictureSizes.get(mid).height); in genericPairwiseTestCase()
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DAndroidCameraCapabilities.java118 List<Camera.Size> supportedPictureSizes = p.getSupportedPictureSizes(); in buildPictureSizes() local
119 if (supportedPictureSizes != null) { in buildPictureSizes()
120 for (Camera.Size s : supportedPictureSizes) { in buildPictureSizes()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DParameters.cpp294 String8 supportedPictureSizes; in initialize() local
296 if (i != 0) supportedPictureSizes += ","; in initialize()
297 supportedPictureSizes += String8::format("%dx%d", in initialize()
302 supportedPictureSizes); in initialize()