diff --git a/camera/provider/2.4/vts/functional/VtsHalCameraProviderV2_4TargetTest.cpp b/camera/provider/2.4/vts/functional/VtsHalCameraProviderV2_4TargetTest.cpp index 9d0cf8839e..0d47f00d6e 100644 --- a/camera/provider/2.4/vts/functional/VtsHalCameraProviderV2_4TargetTest.cpp +++ b/camera/provider/2.4/vts/functional/VtsHalCameraProviderV2_4TargetTest.cpp @@ -2453,7 +2453,8 @@ TEST_F(CameraHidlTest, configureStreamsAvailableOutputs) { Stream stream = {streamId, StreamType::OUTPUT, static_cast (it.width), static_cast (it.height), - static_cast (it.format), 0, 0, + static_cast (it.format), + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = {stream}; StreamConfiguration config = {streams, @@ -2502,7 +2503,8 @@ TEST_F(CameraHidlTest, configureStreamsInvalidOutputs) { static_cast (0), static_cast (0), static_cast (outputStreams[0].format), - 0, 0, StreamRotation::ROTATION_0}; + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, + StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = {stream}; StreamConfiguration config = {streams, StreamConfigurationMode::NORMAL_MODE}; @@ -2517,7 +2519,8 @@ TEST_F(CameraHidlTest, configureStreamsInvalidOutputs) { static_cast (UINT32_MAX), static_cast (UINT32_MAX), static_cast (outputStreams[0].format), - 0, 0, StreamRotation::ROTATION_0}; + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, + StreamRotation::ROTATION_0}; streams[0] = stream; config = {streams, StreamConfigurationMode::NORMAL_MODE}; @@ -2532,7 +2535,8 @@ TEST_F(CameraHidlTest, configureStreamsInvalidOutputs) { static_cast (it.width), static_cast (it.height), static_cast (UINT32_MAX), - 0, 0, StreamRotation::ROTATION_0}; + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, + StreamRotation::ROTATION_0}; streams[0] = stream; config = {streams, StreamConfigurationMode::NORMAL_MODE}; @@ -2546,7 +2550,8 @@ TEST_F(CameraHidlTest, configureStreamsInvalidOutputs) { static_cast (it.width), static_cast (it.height), static_cast (it.format), - 0, 0, static_cast (UINT32_MAX)}; + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, + static_cast (UINT32_MAX)}; streams[0] = stream; config = {streams, StreamConfigurationMode::NORMAL_MODE}; @@ -2623,12 +2628,14 @@ TEST_F(CameraHidlTest, configureStreamsZSLInputOutputs) { Stream inputStream = {streamId++, StreamType::INPUT, static_cast (input.width), static_cast (input.height), - static_cast (input.format), 0, 0, + static_cast (input.format), + 0, 0, StreamRotation::ROTATION_0}; Stream outputStream = {streamId++, StreamType::OUTPUT, static_cast (outputIter.width), static_cast (outputIter.height), - static_cast (outputIter.format), 0, 0, + static_cast (outputIter.format), + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = { @@ -2690,12 +2697,14 @@ TEST_F(CameraHidlTest, configureStreamsPreviewStillOutputs) { Stream previewStream = {streamId++, StreamType::OUTPUT, static_cast (previewIter.width), static_cast (previewIter.height), - static_cast (previewIter.format), 0, 0, + static_cast (previewIter.format), + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, StreamRotation::ROTATION_0}; Stream blobStream = {streamId++, StreamType::OUTPUT, static_cast (blobIter.width), static_cast (blobIter.height), - static_cast (blobIter.format), 0, 0, + static_cast (blobIter.format), + GRALLOC1_CONSUMER_USAGE_CPU_READ, 0, StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = { previewStream, blobStream}; @@ -2751,7 +2760,8 @@ TEST_F(CameraHidlTest, configureStreamsConstrainedOutputs) { Stream stream = {streamId, StreamType::OUTPUT, static_cast (hfrStream.width), static_cast (hfrStream.height), - static_cast (hfrStream.format), 0, 0, + static_cast (hfrStream.format), + GRALLOC1_CONSUMER_USAGE_VIDEO_ENCODER, 0, StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = {stream}; StreamConfiguration config = {streams, @@ -2767,7 +2777,8 @@ TEST_F(CameraHidlTest, configureStreamsConstrainedOutputs) { stream = {streamId++, StreamType::OUTPUT, static_cast (0), static_cast (0), - static_cast (hfrStream.format), 0, 0, + static_cast (hfrStream.format), + GRALLOC1_CONSUMER_USAGE_VIDEO_ENCODER, 0, StreamRotation::ROTATION_0}; streams[0] = stream; config = {streams, @@ -2782,7 +2793,8 @@ TEST_F(CameraHidlTest, configureStreamsConstrainedOutputs) { stream = {streamId++, StreamType::OUTPUT, static_cast (UINT32_MAX), static_cast (UINT32_MAX), - static_cast (hfrStream.format), 0, 0, + static_cast (hfrStream.format), + GRALLOC1_CONSUMER_USAGE_VIDEO_ENCODER, 0, StreamRotation::ROTATION_0}; streams[0] = stream; config = {streams, @@ -2796,7 +2808,8 @@ TEST_F(CameraHidlTest, configureStreamsConstrainedOutputs) { stream = {streamId++, StreamType::OUTPUT, static_cast (hfrStream.width), static_cast (hfrStream.height), - static_cast (UINT32_MAX), 0, 0, + static_cast (UINT32_MAX), + GRALLOC1_CONSUMER_USAGE_VIDEO_ENCODER, 0, StreamRotation::ROTATION_0}; streams[0] = stream; config = {streams, @@ -2854,12 +2867,13 @@ TEST_F(CameraHidlTest, configureStreamsVideoStillOutputs) { static_cast (videoIter.width), static_cast (videoIter.height), static_cast (videoIter.format), - 0, 0, StreamRotation::ROTATION_0}; + GRALLOC1_CONSUMER_USAGE_VIDEO_ENCODER, 0, + StreamRotation::ROTATION_0}; Stream blobStream = {streamId++, StreamType::OUTPUT, static_cast (blobIter.width), static_cast (blobIter.height), static_cast (blobIter.format), - GRALLOC_USAGE_HW_VIDEO_ENCODER, 0, + GRALLOC1_CONSUMER_USAGE_CPU_READ, 0, StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = { videoStream, blobStream}; @@ -3588,7 +3602,7 @@ void CameraHidlTest::configurePreviewStream(const std::string &name, static_cast (outputPreviewStreams[0].width), static_cast (outputPreviewStreams[0].height), static_cast (outputPreviewStreams[0].format), - 0, 0, StreamRotation::ROTATION_0}; + GRALLOC1_CONSUMER_USAGE_HWCOMPOSER, 0, StreamRotation::ROTATION_0}; ::android::hardware::hidl_vec streams = {*previewStream}; StreamConfiguration config = {streams, StreamConfigurationMode::NORMAL_MODE};