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.java458 List<Camera.Size> supportedPictureSizes = params.getSupportedPictureSizes(); in genericPairwiseTestCase() local
459 int mid = (int) Math.floor(supportedPictureSizes.size() / 2); in genericPairwiseTestCase()
460 int low = supportedPictureSizes.size() - 1; in genericPairwiseTestCase()
463 params.setPictureSize(supportedPictureSizes.get(low).width, in genericPairwiseTestCase()
464 supportedPictureSizes.get(low).height); in genericPairwiseTestCase()
467 params.setPictureSize(supportedPictureSizes.get(mid).width, in genericPairwiseTestCase()
468 supportedPictureSizes.get(mid).height); in genericPairwiseTestCase()
471 params.setPictureSize(supportedPictureSizes.get(0).width, in genericPairwiseTestCase()
472 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.cpp319 String8 supportedPictureSizes; in initialize() local
321 if (i != 0) supportedPictureSizes += ","; in initialize()
322 supportedPictureSizes += String8::format("%dx%d", in initialize()
327 supportedPictureSizes); in initialize()