1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "gpu/ipc/client/image_decode_accelerator_proxy.h"
#include <memory>
#include <utility>
#include <vector>
#include "base/memory/raw_ref.h"
#include "base/test/task_environment.h"
#include "cc/paint/paint_image.h"
#include "gpu/ipc/client/gpu_channel_host.h"
#include "gpu/ipc/common/command_buffer_id.h"
#include "gpu/ipc/common/mock_gpu_channel.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/color_space.h"
using ::testing::DeleteArg;
using ::testing::DoAll;
using ::testing::Eq;
using ::testing::Return;
namespace gpu {
namespace {
constexpr int kChannelId = 5;
constexpr int32_t kRasterCmdBufferRouteId = 3;
constexpr gfx::Size kOutputSize(2, 2);
MATCHER_P(ImageDecodeParamsEqualTo, expected_params, "") {
return arg->Equals(expected_params);
}
class TestGpuChannelHost : public GpuChannelHost {
public:
explicit TestGpuChannelHost(mojom::GpuChannel& gpu_channel)
: TestGpuChannelHost(gpu_channel, GPUInfo()) {}
TestGpuChannelHost(mojom::GpuChannel& gpu_channel, const GPUInfo& info)
: GpuChannelHost(kChannelId,
info,
GpuFeatureInfo(),
SharedImageCapabilities(),
mojo::ScopedMessagePipeHandle(
mojo::MessagePipeHandle(mojo::kInvalidHandleValue))),
gpu_channel_(gpu_channel) {}
mojom::GpuChannel& GetGpuChannel() override { return *gpu_channel_; }
protected:
~TestGpuChannelHost() override = default;
private:
const raw_ref<mojom::GpuChannel> gpu_channel_;
};
class ImageDecodeAcceleratorProxyTest : public ::testing::Test {
public:
ImageDecodeAcceleratorProxyTest()
: gpu_channel_host_(
base::MakeRefCounted<TestGpuChannelHost>(mock_gpu_channel_)),
proxy_(gpu_channel_host_.get(),
static_cast<int32_t>(
GpuChannelReservedRoutes::kImageDecodeAccelerator)) {}
~ImageDecodeAcceleratorProxyTest() override = default;
protected:
base::test::SingleThreadTaskEnvironment task_environment_;
MockGpuChannel mock_gpu_channel_;
scoped_refptr<TestGpuChannelHost> gpu_channel_host_;
ImageDecodeAcceleratorProxy proxy_;
};
TEST_F(ImageDecodeAcceleratorProxyTest, ScheduleImageDecodeSendsMessage) {
const uint8_t image[4] = {1, 2, 3, 4};
base::span<const uint8_t> encoded_data =
base::span<const uint8_t>(image, std::size(image));
const gfx::ColorSpace color_space = gfx::ColorSpace::CreateSRGB();
mojom::ScheduleImageDecodeParams expected_params;
expected_params.encoded_data.assign(encoded_data.begin(), encoded_data.end());
expected_params.output_size = kOutputSize;
expected_params.raster_decoder_route_id = kRasterCmdBufferRouteId;
expected_params.transfer_cache_entry_id = 1u;
expected_params.discardable_handle_shm_id = 2;
expected_params.discardable_handle_shm_offset = 3u;
expected_params.discardable_handle_release_count = 4u;
expected_params.target_color_space = color_space;
expected_params.needs_mips = false;
const uint64_t kExpectedReleaseCount = 1u;
EXPECT_CALL(mock_gpu_channel_,
ScheduleImageDecode(ImageDecodeParamsEqualTo(expected_params),
Eq(kExpectedReleaseCount)))
.Times(1);
SyncToken token = proxy_.ScheduleImageDecode(
encoded_data, kOutputSize,
CommandBufferIdFromChannelAndRoute(kChannelId, kRasterCmdBufferRouteId),
/*transfer_cache_entry_id=*/1u,
/*discardable_handle_shm_id=*/2,
/*discardable_handle_shm_offset=*/3u,
/*discardable_handle_release_count=*/4u, color_space,
/*needs_mips=*/false);
task_environment_.RunUntilIdle();
testing::Mock::VerifyAndClearExpectations(gpu_channel_host_.get());
EXPECT_EQ(ChannelIdFromCommandBufferId(token.command_buffer_id()),
kChannelId);
EXPECT_EQ(
RouteIdFromCommandBufferId(token.command_buffer_id()),
static_cast<int32_t>(GpuChannelReservedRoutes::kImageDecodeAccelerator));
EXPECT_EQ(token.release_count(), 1u);
}
class ImageDecodeAcceleratorProxySubsamplingTest
: public testing::TestWithParam<cc::YUVSubsampling> {
public:
ImageDecodeAcceleratorProxySubsamplingTest() = default;
~ImageDecodeAcceleratorProxySubsamplingTest() override = default;
protected:
base::test::SingleThreadTaskEnvironment task_environment_;
MockGpuChannel mock_gpu_channel_;
};
TEST_P(ImageDecodeAcceleratorProxySubsamplingTest, JPEGSubsamplingIsSupported) {
cc::ImageHeaderMetadata image_metadata;
image_metadata.yuv_subsampling = GetParam();
image_metadata.image_type = cc::ImageType::kJPEG;
image_metadata.all_data_received_prior_to_decode = true;
image_metadata.has_embedded_color_profile = false;
image_metadata.image_size = gfx::Size(100, 200);
image_metadata.jpeg_is_progressive = false;
ImageDecodeAcceleratorSupportedProfile profile;
profile.image_type = ImageDecodeAcceleratorType::kJpeg;
profile.min_encoded_dimensions = gfx::Size(0, 0);
profile.max_encoded_dimensions = gfx::Size(1920, 1080);
static_assert(
// TODO(andrescj): refactor to instead have a static_assert at the
// declaration site of ImageDecodeAcceleratorSubsampling to make sure it
// has the same number of entries as cc::YUVSubsampling.
static_cast<int>(ImageDecodeAcceleratorSubsampling::kMaxValue) == 2,
"ImageDecodeAcceleratorProxySubsamplingTest.JPEGSubsamplingIsSupported "
"must be adapted to support all subsampling factors in "
"ImageDecodeAcceleratorSubsampling");
switch (GetParam()) {
case cc::YUVSubsampling::k420:
profile.subsamplings.push_back(ImageDecodeAcceleratorSubsampling::k420);
break;
case cc::YUVSubsampling::k422:
profile.subsamplings.push_back(ImageDecodeAcceleratorSubsampling::k422);
break;
case cc::YUVSubsampling::k444:
profile.subsamplings.push_back(ImageDecodeAcceleratorSubsampling::k444);
break;
default:
return;
}
GPUInfo gpu_info;
gpu_info.image_decode_accelerator_supported_profiles.push_back(profile);
auto gpu_channel_host =
base::MakeRefCounted<TestGpuChannelHost>(mock_gpu_channel_, gpu_info);
ImageDecodeAcceleratorProxy proxy(
gpu_channel_host.get(),
static_cast<int32_t>(GpuChannelReservedRoutes::kImageDecodeAccelerator));
EXPECT_TRUE(proxy.IsImageSupported(&image_metadata));
}
TEST_P(ImageDecodeAcceleratorProxySubsamplingTest,
JPEGSubsamplingIsNotSupported) {
cc::ImageHeaderMetadata image_metadata;
image_metadata.yuv_subsampling = GetParam();
image_metadata.image_type = cc::ImageType::kJPEG;
image_metadata.all_data_received_prior_to_decode = true;
image_metadata.has_embedded_color_profile = false;
image_metadata.image_size = gfx::Size(100, 200);
image_metadata.jpeg_is_progressive = false;
ImageDecodeAcceleratorSupportedProfile profile;
profile.image_type = ImageDecodeAcceleratorType::kJpeg;
profile.min_encoded_dimensions = gfx::Size(0, 0);
profile.max_encoded_dimensions = gfx::Size(1920, 1080);
static_assert(
// TODO(andrescj): refactor to instead have a static_assert at the
// declaration site of ImageDecodeAcceleratorSubsampling to make sure it
// has the same number of entries as cc::YUVSubsampling.
static_cast<int>(ImageDecodeAcceleratorSubsampling::kMaxValue) == 2,
"ImageDecodeAcceleratorProxySubsamplingTest.JPEGSubsamplingIsNotSupported"
"must be adapted to support all subsampling factors in "
"ImageDecodeAcceleratorSubsampling");
// Advertise support for all subsamplings except the GetParam() one.
if (GetParam() != cc::YUVSubsampling::k420)
profile.subsamplings.push_back(ImageDecodeAcceleratorSubsampling::k420);
if (GetParam() != cc::YUVSubsampling::k422)
profile.subsamplings.push_back(ImageDecodeAcceleratorSubsampling::k422);
if (GetParam() != cc::YUVSubsampling::k444)
profile.subsamplings.push_back(ImageDecodeAcceleratorSubsampling::k444);
GPUInfo gpu_info;
gpu_info.image_decode_accelerator_supported_profiles.push_back(profile);
auto gpu_channel_host =
base::MakeRefCounted<TestGpuChannelHost>(mock_gpu_channel_, gpu_info);
ImageDecodeAcceleratorProxy proxy(
gpu_channel_host.get(),
static_cast<int32_t>(GpuChannelReservedRoutes::kImageDecodeAccelerator));
EXPECT_FALSE(proxy.IsImageSupported(&image_metadata));
}
INSTANTIATE_TEST_SUITE_P(ImageDecodeAcceleratorProxySubsample,
ImageDecodeAcceleratorProxySubsamplingTest,
testing::Values(cc::YUVSubsampling::k410,
cc::YUVSubsampling::k411,
cc::YUVSubsampling::k420,
cc::YUVSubsampling::k422,
cc::YUVSubsampling::k440,
cc::YUVSubsampling::k444,
cc::YUVSubsampling::kUnknown));
} // namespace
} // namespace gpu
|