Home
last modified time | relevance | path

Searched refs:streamInfo (Results 1 – 5 of 5) 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.java144 for (MultiResolutionStreamInfo streamInfo : multiResolutionStreams) { in testMultiResolutionCaptureCharacteristics()
145 String physicalCameraId = streamInfo.getPhysicalCameraId(); in testMultiResolutionCaptureCharacteristics()
146 Size streamSize = new Size(streamInfo.getWidth(), streamInfo.getHeight()); in testMultiResolutionCaptureCharacteristics()
477 MultiResolutionStreamInfo streamInfoForImage = imgAndStreamInfo.streamInfo; in validateImage()
513 for (MultiResolutionStreamInfo streamInfo : streams) { in validateImage()
515 streamInfo.getPhysicalCameraId()) in validateImage()
516 && streamInfo.getWidth() == img.getWidth() in validateImage()
517 && streamInfo.getHeight() == img.getHeight()) { in validateImage()
DRobustnessTest.java305 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryStreamCombination()
306 if (streamInfo.getFormat() == ImageFormat.YUV_420_888) { in testMandatoryStreamCombination()
317 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryStreamCombination()
318 if (streamInfo.getFormat() == ImageFormat.JPEG) { in testMandatoryStreamCombination()
540 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryReprocessableStreamCombination()
541 if (streamInfo.getFormat() == ImageFormat.YUV_420_888) { in testMandatoryReprocessableStreamCombination()
554 for (MandatoryStreamInformation streamInfo : streamsInfo) { in testMandatoryReprocessableStreamCombination()
555 if (streamInfo.getFormat() == ImageFormat.JPEG) { in testMandatoryReprocessableStreamCombination()
585 List<MandatoryStreamInformation> streamInfo = combination.getStreamsInformation(); in testMandatoryReprocessableStreamCombination() local
587 (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/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java373 for (MandatoryStreamInformation streamInfo : streamsInfo) { in setupConfigurationTargets()
374 if (streamInfo.isInput()) { in setupConfigurationTargets()
378 if (streamInfo.isUltraHighResolution()) { in setupConfigurationTargets()
381 int format = streamInfo.getFormat(); in setupConfigurationTargets()
387 Size[] availableSizes = new Size[streamInfo.getAvailableSizes().size()]; in setupConfigurationTargets()
388 availableSizes = streamInfo.getAvailableSizes().toArray(availableSizes); in setupConfigurationTargets()
393 streamInfo.isMaximumSize()); in setupConfigurationTargets()
633 public final MultiResolutionStreamInfo streamInfo; field in CameraTestUtils.ImageAndMultiResStreamInfo
635 public ImageAndMultiResStreamInfo(Image image, MultiResolutionStreamInfo streamInfo) { in ImageAndMultiResStreamInfo() argument
637 this.streamInfo = streamInfo; in ImageAndMultiResStreamInfo()