Home
last modified time | relevance | path

Searched refs:streamInfo (Results 1 – 6 of 6) sorted by relevance

/cts/tests/camera/src/android/hardware/camera2/cts/
DMultiResolutionReprocessCaptureTest.java143 for (MultiResolutionStreamInfo streamInfo : multiResolutionStreams) { in testMultiResolutionReprocessCharacteristics()
144 String physicalCameraId = streamInfo.getPhysicalCameraId(); in testMultiResolutionReprocessCharacteristics()
145 Size streamSize = new Size(streamInfo.getWidth(), streamInfo.getHeight()); in testMultiResolutionReprocessCharacteristics()
337 List<MandatoryStreamInformation> streamInfo = combination.getStreamsInformation(); in testMultiResolutionMandatoryStreamCombination() local
339 (streamInfo != null) && (streamInfo.size() >= 3)); in testMultiResolutionMandatoryStreamCombination()
341 "always be input", streamInfo.get(0).isInput()); in testMultiResolutionMandatoryStreamCombination()
343 int inputFormat = streamInfo.get(0).getFormat(); in testMultiResolutionMandatoryStreamCombination()
345 CameraTestUtils.setupConfigurationTargets(streamInfo.subList(2, streamInfo.size()), in testMultiResolutionMandatoryStreamCombination()
704 MultiResolutionStreamInfo inputStreamInfo = inputImageAndInfo.streamInfo; in doMultiResReprocessCapture()
721 MultiResolutionStreamInfo outputStreamInfo = outputImageAndInfo.streamInfo; in doMultiResReprocessCapture()
DMultiResolutionImageReaderTest.java149 for (MultiResolutionStreamInfo streamInfo : multiResolutionStreams) { in testMultiResolutionCaptureCharacteristics()
150 String physicalCameraId = streamInfo.getPhysicalCameraId(); in testMultiResolutionCaptureCharacteristics()
151 Size streamSize = new Size(streamInfo.getWidth(), streamInfo.getHeight()); in testMultiResolutionCaptureCharacteristics()
499 MultiResolutionStreamInfo streamInfoForImage = imgAndStreamInfo.streamInfo; in validateImage()
535 for (MultiResolutionStreamInfo streamInfo : streams) { in validateImage()
537 streamInfo.getPhysicalCameraId()) in validateImage()
538 && streamInfo.getWidth() == img.getWidth() in validateImage()
539 && streamInfo.getHeight() == img.getHeight()) { in validateImage()
DRobustnessTest.java509 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryStreamCombination()
510 if (streamInfo.getFormat() == ImageFormat.YUV_420_888) { in testMandatoryStreamCombination()
521 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryStreamCombination()
522 if (streamInfo.getFormat() == ImageFormat.JPEG) { in testMandatoryStreamCombination()
911 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryReprocessableStreamCombination()
912 if (streamInfo.getFormat() == ImageFormat.YUV_420_888) { in testMandatoryReprocessableStreamCombination()
925 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryReprocessableStreamCombination()
926 if (streamInfo.getFormat() == ImageFormat.JPEG) { in testMandatoryReprocessableStreamCombination()
956 List<MandatoryStreamInformation> streamInfo = combination.getStreamsInformation(); in testMandatoryReprocessableStreamCombination() local
958 (streamInfo != null) && (streamInfo.size() >= 3)); in testMandatoryReprocessableStreamCombination()
[all …]
DConcurrentCameraTest.java217 for (MandatoryStreamInformation streamInfo : streamsInfo) { in getGeneratedEntriesFor()
218 if (streamInfo.getFormat() == ImageFormat.YUV_420_888) { in getGeneratedEntriesFor()
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
DCameraDeviceInfo.java367 Collection<MultiResolutionStreamInfo> streamInfo = map.getOutputInfo(fmts[fi]); in storeMultiResStreamConfigurationMap() local
368 if (streamInfo != null) { in storeMultiResStreamConfigurationMap()
369 for (MultiResolutionStreamInfo oneStream : streamInfo) { in storeMultiResStreamConfigurationMap()
385 Collection<MultiResolutionStreamInfo> streamInfo = in storeMultiResStreamConfigurationMap() local
387 if (streamInfo != null) { in storeMultiResStreamConfigurationMap()
388 for (MultiResolutionStreamInfo oneStream : streamInfo) { in storeMultiResStreamConfigurationMap()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java438 for (MandatoryStreamInformation streamInfo : streamsInfo) { in setupConfigurationTargets()
439 if (streamInfo.isInput()) { in setupConfigurationTargets()
443 if (streamInfo.isUltraHighResolution()) { in setupConfigurationTargets()
446 int format = streamInfo.getFormat(); in setupConfigurationTargets()
454 if (streamInfo.is10BitCapable() && use10BitRandomProfile) { in setupConfigurationTargets()
459 format = streamInfo.get10BitFormat(); in setupConfigurationTargets()
461 } else if (streamInfo.is10BitCapable() && (dynamicRangeProfiles != null)) { in setupConfigurationTargets()
463 format = streamInfo.get10BitFormat(); in setupConfigurationTargets()
465 Size[] availableSizes = new Size[streamInfo.getAvailableSizes().size()]; in setupConfigurationTargets()
466 availableSizes = streamInfo.getAvailableSizes().toArray(availableSizes); in setupConfigurationTargets()
[all …]