msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/codec/SkAndroidCodec.h" |
| 9 | #include "include/codec/SkCodec.h" |
| 10 | #include "include/core/SkPixmap.h" |
| 11 | #include "src/codec/SkAndroidCodecAdapter.h" |
| 12 | #include "src/codec/SkCodecPriv.h" |
| 13 | #include "src/codec/SkSampledCodec.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 14 | #include "src/core/SkPixmapPriv.h" |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 15 | |
| 16 | static bool is_valid_sample_size(int sampleSize) { |
| 17 | // FIXME: As Leon has mentioned elsewhere, surely there is also a maximum sampleSize? |
| 18 | return sampleSize > 0; |
| 19 | } |
| 20 | |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 21 | /** |
| 22 | * Loads the gamut as a set of three points (triangle). |
| 23 | */ |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 24 | static void load_gamut(SkPoint rgb[], const skcms_Matrix3x3& xyz) { |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 25 | // rx = rX / (rX + rY + rZ) |
| 26 | // ry = rY / (rX + rY + rZ) |
| 27 | // gx, gy, bx, and gy are calulcated similarly. |
nagarajan.n | 6e17b6f | 2017-07-10 15:02:00 +0530 | [diff] [blame] | 28 | for (int rgbIdx = 0; rgbIdx < 3; rgbIdx++) { |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 29 | float sum = xyz.vals[rgbIdx][0] + xyz.vals[rgbIdx][1] + xyz.vals[rgbIdx][2]; |
| 30 | rgb[rgbIdx].fX = xyz.vals[rgbIdx][0] / sum; |
| 31 | rgb[rgbIdx].fY = xyz.vals[rgbIdx][1] / sum; |
nagarajan.n | 6e17b6f | 2017-07-10 15:02:00 +0530 | [diff] [blame] | 32 | } |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Calculates the area of the triangular gamut. |
| 37 | */ |
| 38 | static float calculate_area(SkPoint abc[]) { |
| 39 | SkPoint a = abc[0]; |
| 40 | SkPoint b = abc[1]; |
| 41 | SkPoint c = abc[2]; |
| 42 | return 0.5f * SkTAbs(a.fX*b.fY + b.fX*c.fY - a.fX*c.fY - c.fX*b.fY - b.fX*a.fY); |
| 43 | } |
| 44 | |
Leon Scroggins III | 862c196 | 2017-10-02 16:28:49 -0400 | [diff] [blame] | 45 | static constexpr float kSRGB_D50_GamutArea = 0.084f; |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 46 | |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 47 | static bool is_wide_gamut(const skcms_ICCProfile& profile) { |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 48 | // Determine if the source image has a gamut that is wider than sRGB. If so, we |
| 49 | // will use P3 as the output color space to avoid clipping the gamut. |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 50 | if (profile.has_toXYZD50) { |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 51 | SkPoint rgb[3]; |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 52 | load_gamut(rgb, profile.toXYZD50); |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 53 | return calculate_area(rgb) > kSRGB_D50_GamutArea; |
| 54 | } |
| 55 | |
| 56 | return false; |
| 57 | } |
| 58 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 59 | static inline SkImageInfo adjust_info(SkCodec* codec, |
| 60 | SkAndroidCodec::ExifOrientationBehavior orientationBehavior) { |
| 61 | auto info = codec->getInfo(); |
| 62 | if (orientationBehavior == SkAndroidCodec::ExifOrientationBehavior::kIgnore |
| 63 | || !SkPixmapPriv::ShouldSwapWidthHeight(codec->getOrigin())) { |
| 64 | return info; |
| 65 | } |
| 66 | return SkPixmapPriv::SwapWidthHeight(info); |
| 67 | } |
| 68 | |
| 69 | SkAndroidCodec::SkAndroidCodec(SkCodec* codec, ExifOrientationBehavior orientationBehavior) |
| 70 | : fInfo(adjust_info(codec, orientationBehavior)) |
| 71 | , fOrientationBehavior(orientationBehavior) |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 72 | , fCodec(codec) |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 73 | {} |
| 74 | |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 75 | SkAndroidCodec::~SkAndroidCodec() {} |
| 76 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 77 | std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromStream(std::unique_ptr<SkStream> stream, |
| 78 | SkPngChunkReader* chunkReader) { |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 79 | auto codec = SkCodec::MakeFromStream(std::move(stream), nullptr, chunkReader); |
Leon Scroggins III | 7397d7a | 2018-01-04 13:26:30 -0500 | [diff] [blame] | 80 | return MakeFromCodec(std::move(codec)); |
| 81 | } |
| 82 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 83 | std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromCodec(std::unique_ptr<SkCodec> codec, |
| 84 | ExifOrientationBehavior orientationBehavior) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 85 | if (nullptr == codec) { |
| 86 | return nullptr; |
| 87 | } |
| 88 | |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 89 | switch ((SkEncodedImageFormat)codec->getEncodedFormat()) { |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 90 | case SkEncodedImageFormat::kPNG: |
| 91 | case SkEncodedImageFormat::kICO: |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 92 | case SkEncodedImageFormat::kJPEG: |
Leon Scroggins III | 70d8f4f | 2019-04-01 12:57:46 -0400 | [diff] [blame] | 93 | #ifndef SK_HAS_WUFFS_LIBRARY |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 94 | case SkEncodedImageFormat::kGIF: |
Leon Scroggins III | 70d8f4f | 2019-04-01 12:57:46 -0400 | [diff] [blame] | 95 | #endif |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 96 | case SkEncodedImageFormat::kBMP: |
| 97 | case SkEncodedImageFormat::kWBMP: |
Leon Scroggins III | 04be2b5 | 2017-08-17 15:13:20 -0400 | [diff] [blame] | 98 | case SkEncodedImageFormat::kHEIF: |
Vignesh Venkatasubramanian | eb7f960 | 2020-11-04 14:13:39 -0800 | [diff] [blame] | 99 | case SkEncodedImageFormat::kAVIF: |
Mike Klein | f46d5ca | 2019-12-11 10:45:01 -0500 | [diff] [blame] | 100 | return std::make_unique<SkSampledCodec>(codec.release(), orientationBehavior); |
Leon Scroggins III | 70d8f4f | 2019-04-01 12:57:46 -0400 | [diff] [blame] | 101 | #ifdef SK_HAS_WUFFS_LIBRARY |
| 102 | case SkEncodedImageFormat::kGIF: |
| 103 | #endif |
Leon Scroggins III | a77f30c | 2020-03-09 14:23:30 -0400 | [diff] [blame] | 104 | #ifdef SK_CODEC_DECODES_WEBP |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 105 | case SkEncodedImageFormat::kWEBP: |
Mike Klein | 0af9929 | 2019-05-15 22:02:05 +0000 | [diff] [blame] | 106 | #endif |
| 107 | #ifdef SK_CODEC_DECODES_RAW |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 108 | case SkEncodedImageFormat::kDNG: |
Mike Klein | 0af9929 | 2019-05-15 22:02:05 +0000 | [diff] [blame] | 109 | #endif |
Leon Scroggins III | a77f30c | 2020-03-09 14:23:30 -0400 | [diff] [blame] | 110 | #if defined(SK_CODEC_DECODES_WEBP) || defined(SK_CODEC_DECODES_RAW) || defined(SK_HAS_WUFFS_LIBRARY) |
Mike Klein | f46d5ca | 2019-12-11 10:45:01 -0500 | [diff] [blame] | 111 | return std::make_unique<SkAndroidCodecAdapter>(codec.release(), orientationBehavior); |
Mike Klein | 0af9929 | 2019-05-15 22:02:05 +0000 | [diff] [blame] | 112 | #endif |
Nigel Tao | 612a65d | 2018-11-09 10:10:31 +1100 | [diff] [blame] | 113 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 114 | default: |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 115 | return nullptr; |
| 116 | } |
| 117 | } |
| 118 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 119 | std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromData(sk_sp<SkData> data, |
| 120 | SkPngChunkReader* chunkReader) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 121 | if (!data) { |
| 122 | return nullptr; |
| 123 | } |
| 124 | |
Mike Reed | 847068c | 2017-07-26 11:35:53 -0400 | [diff] [blame] | 125 | return MakeFromStream(SkMemoryStream::Make(std::move(data)), chunkReader); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 126 | } |
| 127 | |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 128 | SkColorType SkAndroidCodec::computeOutputColorType(SkColorType requestedColorType) { |
Leon Scroggins | 1793e7b | 2017-12-05 15:38:14 +0000 | [diff] [blame] | 129 | bool highPrecision = fCodec->getEncodedInfo().bitsPerComponent() > 8; |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 130 | switch (requestedColorType) { |
| 131 | case kARGB_4444_SkColorType: |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 132 | return kN32_SkColorType; |
Matt Sarett | 8dcc84f | 2016-12-14 10:23:41 -0500 | [diff] [blame] | 133 | case kN32_SkColorType: |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 134 | break; |
| 135 | case kAlpha_8_SkColorType: |
| 136 | // Fall through to kGray_8. Before kGray_8_SkColorType existed, |
| 137 | // we allowed clients to request kAlpha_8 when they wanted a |
| 138 | // grayscale decode. |
| 139 | case kGray_8_SkColorType: |
Matt Sarett | 8db74f1 | 2017-06-14 13:02:05 +0000 | [diff] [blame] | 140 | if (kGray_8_SkColorType == this->getInfo().colorType()) { |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 141 | return kGray_8_SkColorType; |
| 142 | } |
| 143 | break; |
| 144 | case kRGB_565_SkColorType: |
| 145 | if (kOpaque_SkAlphaType == this->getInfo().alphaType()) { |
| 146 | return kRGB_565_SkColorType; |
| 147 | } |
| 148 | break; |
Matt Sarett | 8dcc84f | 2016-12-14 10:23:41 -0500 | [diff] [blame] | 149 | case kRGBA_F16_SkColorType: |
| 150 | return kRGBA_F16_SkColorType; |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 151 | default: |
| 152 | break; |
| 153 | } |
| 154 | |
Leon Scroggins | 1793e7b | 2017-12-05 15:38:14 +0000 | [diff] [blame] | 155 | // F16 is the Android default for high precision images. |
| 156 | return highPrecision ? kRGBA_F16_SkColorType : kN32_SkColorType; |
msarett | 9a0e346 | 2015-12-11 07:38:50 -0800 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | SkAlphaType SkAndroidCodec::computeOutputAlphaType(bool requestedUnpremul) { |
| 160 | if (kOpaque_SkAlphaType == this->getInfo().alphaType()) { |
| 161 | return kOpaque_SkAlphaType; |
| 162 | } |
| 163 | return requestedUnpremul ? kUnpremul_SkAlphaType : kPremul_SkAlphaType; |
| 164 | } |
| 165 | |
Matt Sarett | 68feef4 | 2017-04-11 09:51:32 -0400 | [diff] [blame] | 166 | sk_sp<SkColorSpace> SkAndroidCodec::computeOutputColorSpace(SkColorType outputColorType, |
| 167 | sk_sp<SkColorSpace> prefColorSpace) { |
Matt Sarett | 966bb34 | 2016-12-12 16:30:13 -0500 | [diff] [blame] | 168 | switch (outputColorType) { |
Derek Sollenberger | 1be431f | 2019-01-30 11:21:33 -0500 | [diff] [blame] | 169 | case kRGBA_F16_SkColorType: |
| 170 | case kRGB_565_SkColorType: |
Leon Scroggins III | c20b5f8 | 2017-07-13 08:05:29 -0400 | [diff] [blame] | 171 | case kRGBA_8888_SkColorType: |
| 172 | case kBGRA_8888_SkColorType: { |
Brian Osman | 82ebe04 | 2019-01-04 17:03:00 -0500 | [diff] [blame] | 173 | // If |prefColorSpace| is supplied, choose it. |
| 174 | if (prefColorSpace) { |
Matt Sarett | 68feef4 | 2017-04-11 09:51:32 -0400 | [diff] [blame] | 175 | return prefColorSpace; |
| 176 | } |
| 177 | |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 178 | const skcms_ICCProfile* encodedProfile = fCodec->getEncodedInfo().profile(); |
Leon Scroggins III | 227d4e1 | 2018-09-27 08:30:22 -0400 | [diff] [blame] | 179 | if (encodedProfile) { |
| 180 | if (auto encodedSpace = SkColorSpace::Make(*encodedProfile)) { |
| 181 | // Leave the pixels in the encoded color space. Color space conversion |
| 182 | // will be handled after decode time. |
| 183 | return encodedSpace; |
| 184 | } |
Matt Sarett | 9341c98 | 2017-02-28 15:36:42 -0500 | [diff] [blame] | 185 | |
Leon Scroggins III | 227d4e1 | 2018-09-27 08:30:22 -0400 | [diff] [blame] | 186 | if (is_wide_gamut(*encodedProfile)) { |
Mike Klein | b147ace | 2020-01-16 11:11:06 -0600 | [diff] [blame] | 187 | return SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDisplayP3); |
Leon Scroggins III | 227d4e1 | 2018-09-27 08:30:22 -0400 | [diff] [blame] | 188 | } |
Matt Sarett | 2ae3a2e | 2017-02-15 08:48:02 -0500 | [diff] [blame] | 189 | } |
| 190 | |
Matt Sarett | cf3f234 | 2017-03-23 15:32:25 -0400 | [diff] [blame] | 191 | return SkColorSpace::MakeSRGB(); |
Matt Sarett | 9341c98 | 2017-02-28 15:36:42 -0500 | [diff] [blame] | 192 | } |
Matt Sarett | 966bb34 | 2016-12-12 16:30:13 -0500 | [diff] [blame] | 193 | default: |
Matt Sarett | 3725f0a | 2017-03-28 14:34:20 -0400 | [diff] [blame] | 194 | // Color correction not supported for kGray. |
Matt Sarett | 966bb34 | 2016-12-12 16:30:13 -0500 | [diff] [blame] | 195 | return nullptr; |
| 196 | } |
| 197 | } |
| 198 | |
Leon Scroggins III | 07a722c | 2018-01-16 15:01:17 -0500 | [diff] [blame] | 199 | static bool supports_any_down_scale(const SkCodec* codec) { |
| 200 | return codec->getEncodedFormat() == SkEncodedImageFormat::kWEBP; |
| 201 | } |
| 202 | |
| 203 | // There are a variety of ways two SkISizes could be compared. This method |
| 204 | // returns true if either dimensions of a is < that of b. |
| 205 | // computeSampleSize also uses the opposite, which means that both |
| 206 | // dimensions of a >= b. |
| 207 | static inline bool smaller_than(const SkISize& a, const SkISize& b) { |
| 208 | return a.width() < b.width() || a.height() < b.height(); |
| 209 | } |
| 210 | |
| 211 | // Both dimensions of a > that of b. |
| 212 | static inline bool strictly_bigger_than(const SkISize& a, const SkISize& b) { |
| 213 | return a.width() > b.width() && a.height() > b.height(); |
| 214 | } |
| 215 | |
| 216 | int SkAndroidCodec::computeSampleSize(SkISize* desiredSize) const { |
| 217 | SkASSERT(desiredSize); |
| 218 | |
| 219 | if (!desiredSize || *desiredSize == fInfo.dimensions()) { |
| 220 | return 1; |
| 221 | } |
| 222 | |
| 223 | if (smaller_than(fInfo.dimensions(), *desiredSize)) { |
| 224 | *desiredSize = fInfo.dimensions(); |
| 225 | return 1; |
| 226 | } |
| 227 | |
| 228 | // Handle bad input: |
| 229 | if (desiredSize->width() < 1 || desiredSize->height() < 1) { |
| 230 | *desiredSize = SkISize::Make(std::max(1, desiredSize->width()), |
| 231 | std::max(1, desiredSize->height())); |
| 232 | } |
| 233 | |
| 234 | if (supports_any_down_scale(fCodec.get())) { |
| 235 | return 1; |
| 236 | } |
| 237 | |
| 238 | int sampleX = fInfo.width() / desiredSize->width(); |
| 239 | int sampleY = fInfo.height() / desiredSize->height(); |
| 240 | int sampleSize = std::min(sampleX, sampleY); |
| 241 | auto computedSize = this->getSampledDimensions(sampleSize); |
| 242 | if (computedSize == *desiredSize) { |
| 243 | return sampleSize; |
| 244 | } |
| 245 | |
| 246 | if (computedSize == fInfo.dimensions() || sampleSize == 1) { |
| 247 | // Cannot downscale |
| 248 | *desiredSize = computedSize; |
| 249 | return 1; |
| 250 | } |
| 251 | |
| 252 | if (strictly_bigger_than(computedSize, *desiredSize)) { |
| 253 | // See if there is a tighter fit. |
| 254 | while (true) { |
| 255 | auto smaller = this->getSampledDimensions(sampleSize + 1); |
| 256 | if (smaller == *desiredSize) { |
| 257 | return sampleSize + 1; |
| 258 | } |
| 259 | if (smaller == computedSize || smaller_than(smaller, *desiredSize)) { |
| 260 | // Cannot get any smaller without being smaller than desired. |
| 261 | *desiredSize = computedSize; |
| 262 | return sampleSize; |
| 263 | } |
| 264 | |
| 265 | sampleSize++; |
| 266 | computedSize = smaller; |
| 267 | } |
| 268 | |
| 269 | SkASSERT(false); |
| 270 | } |
| 271 | |
| 272 | if (!smaller_than(computedSize, *desiredSize)) { |
| 273 | // This means one of the computed dimensions is equal to desired, and |
| 274 | // the other is bigger. This is as close as we can get. |
| 275 | *desiredSize = computedSize; |
| 276 | return sampleSize; |
| 277 | } |
| 278 | |
| 279 | // computedSize is too small. Make it larger. |
| 280 | while (sampleSize > 2) { |
| 281 | auto bigger = this->getSampledDimensions(sampleSize - 1); |
| 282 | if (bigger == *desiredSize || !smaller_than(bigger, *desiredSize)) { |
| 283 | *desiredSize = bigger; |
| 284 | return sampleSize - 1; |
| 285 | } |
| 286 | sampleSize--; |
| 287 | } |
| 288 | |
| 289 | *desiredSize = fInfo.dimensions(); |
| 290 | return 1; |
| 291 | } |
| 292 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 293 | SkISize SkAndroidCodec::getSampledDimensions(int sampleSize) const { |
| 294 | if (!is_valid_sample_size(sampleSize)) { |
Hal Canary | fafe135 | 2017-04-11 12:12:02 -0400 | [diff] [blame] | 295 | return {0, 0}; |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 296 | } |
| 297 | |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 298 | // Fast path for when we are not scaling. |
| 299 | if (1 == sampleSize) { |
| 300 | return fInfo.dimensions(); |
| 301 | } |
| 302 | |
Leon Scroggins III | 95d0c8d | 2019-01-30 15:33:09 -0500 | [diff] [blame] | 303 | auto dims = this->onGetSampledDimensions(sampleSize); |
| 304 | if (fOrientationBehavior == SkAndroidCodec::ExifOrientationBehavior::kIgnore |
| 305 | || !SkPixmapPriv::ShouldSwapWidthHeight(fCodec->getOrigin())) { |
| 306 | return dims; |
| 307 | } |
| 308 | |
| 309 | return { dims.height(), dims.width() }; |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | bool SkAndroidCodec::getSupportedSubset(SkIRect* desiredSubset) const { |
| 313 | if (!desiredSubset || !is_valid_subset(*desiredSubset, fInfo.dimensions())) { |
| 314 | return false; |
| 315 | } |
| 316 | |
| 317 | return this->onGetSupportedSubset(desiredSubset); |
| 318 | } |
| 319 | |
| 320 | SkISize SkAndroidCodec::getSampledSubsetDimensions(int sampleSize, const SkIRect& subset) const { |
| 321 | if (!is_valid_sample_size(sampleSize)) { |
Hal Canary | fafe135 | 2017-04-11 12:12:02 -0400 | [diff] [blame] | 322 | return {0, 0}; |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | // We require that the input subset is a subset that is supported by SkAndroidCodec. |
| 326 | // We test this by calling getSupportedSubset() and verifying that no modifications |
| 327 | // are made to the subset. |
| 328 | SkIRect copySubset = subset; |
| 329 | if (!this->getSupportedSubset(©Subset) || copySubset != subset) { |
Hal Canary | fafe135 | 2017-04-11 12:12:02 -0400 | [diff] [blame] | 330 | return {0, 0}; |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 331 | } |
| 332 | |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 333 | // If the subset is the entire image, for consistency, use getSampledDimensions(). |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 334 | if (fInfo.dimensions() == subset.size()) { |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 335 | return this->getSampledDimensions(sampleSize); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | // This should perhaps call a virtual function, but currently both of our subclasses |
| 339 | // want the same implementation. |
Hal Canary | fafe135 | 2017-04-11 12:12:02 -0400 | [diff] [blame] | 340 | return {get_scaled_dimension(subset.width(), sampleSize), |
| 341 | get_scaled_dimension(subset.height(), sampleSize)}; |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 344 | static bool acceptable_result(SkCodec::Result result) { |
| 345 | switch (result) { |
| 346 | // These results mean a partial or complete image. They should be considered |
| 347 | // a success by SkPixmapPriv. |
| 348 | case SkCodec::kSuccess: |
| 349 | case SkCodec::kIncompleteInput: |
| 350 | case SkCodec::kErrorInInput: |
| 351 | return true; |
| 352 | default: |
| 353 | return false; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& requestInfo, |
| 358 | void* requestPixels, size_t requestRowBytes, const AndroidOptions* options) { |
| 359 | if (!requestPixels) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 360 | return SkCodec::kInvalidParameters; |
| 361 | } |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 362 | if (requestRowBytes < requestInfo.minRowBytes()) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 363 | return SkCodec::kInvalidParameters; |
| 364 | } |
| 365 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 366 | SkImageInfo adjustedInfo = fInfo; |
| 367 | if (ExifOrientationBehavior::kRespect == fOrientationBehavior |
| 368 | && SkPixmapPriv::ShouldSwapWidthHeight(fCodec->getOrigin())) { |
| 369 | adjustedInfo = SkPixmapPriv::SwapWidthHeight(adjustedInfo); |
| 370 | } |
| 371 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 372 | AndroidOptions defaultOptions; |
| 373 | if (!options) { |
| 374 | options = &defaultOptions; |
Leon Scroggins | 1340dbd | 2020-11-09 14:18:12 -0500 | [diff] [blame^] | 375 | } else { |
| 376 | if (options->fSubset) { |
| 377 | if (!is_valid_subset(*options->fSubset, adjustedInfo.dimensions())) { |
| 378 | return SkCodec::kInvalidParameters; |
| 379 | } |
| 380 | |
| 381 | if (SkIRect::MakeSize(adjustedInfo.dimensions()) == *options->fSubset) { |
| 382 | // The caller wants the whole thing, rather than a subset. Modify |
| 383 | // the AndroidOptions passed to onGetAndroidPixels to not specify |
| 384 | // a subset. |
| 385 | defaultOptions = *options; |
| 386 | defaultOptions.fSubset = nullptr; |
| 387 | options = &defaultOptions; |
| 388 | } |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 389 | } |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 390 | |
Leon Scroggins | 1340dbd | 2020-11-09 14:18:12 -0500 | [diff] [blame^] | 391 | // To simplify frame compositing, force the client to use kIgnore and |
| 392 | // handle orientation themselves. |
| 393 | if (options->fFrameIndex != 0 && fOrientationBehavior == ExifOrientationBehavior::kRespect |
| 394 | && fCodec->getOrigin() != kDefault_SkEncodedOrigin) { |
| 395 | return SkCodec::kInvalidParameters; |
Leon Scroggins III | 267a858 | 2020-11-13 10:24:40 -0500 | [diff] [blame] | 396 | } |
Leon Scroggins | fc4fdc5 | 2020-11-09 14:18:12 -0500 | [diff] [blame] | 397 | } |
| 398 | |
Leon Scroggins | 1340dbd | 2020-11-09 14:18:12 -0500 | [diff] [blame^] | 399 | if (auto result = fCodec->handleFrameIndex(requestInfo, requestPixels, requestRowBytes, |
| 400 | *options, this); result != SkCodec::kSuccess) { |
| 401 | return result; |
| 402 | } |
| 403 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 404 | if (ExifOrientationBehavior::kIgnore == fOrientationBehavior) { |
| 405 | return this->onGetAndroidPixels(requestInfo, requestPixels, requestRowBytes, *options); |
| 406 | } |
| 407 | |
| 408 | SkCodec::Result result; |
| 409 | auto decode = [this, options, &result](const SkPixmap& pm) { |
| 410 | result = this->onGetAndroidPixels(pm.info(), pm.writable_addr(), pm.rowBytes(), *options); |
| 411 | return acceptable_result(result); |
| 412 | }; |
| 413 | |
| 414 | SkPixmap dst(requestInfo, requestPixels, requestRowBytes); |
| 415 | if (SkPixmapPriv::Orient(dst, fCodec->getOrigin(), decode)) { |
| 416 | return result; |
| 417 | } |
| 418 | |
| 419 | // Orient returned false. If onGetAndroidPixels succeeded, then Orient failed internally. |
| 420 | if (acceptable_result(result)) { |
| 421 | return SkCodec::kInternalError; |
| 422 | } |
| 423 | |
| 424 | return result; |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels, |
| 428 | size_t rowBytes) { |
| 429 | return this->getAndroidPixels(info, pixels, rowBytes, nullptr); |
| 430 | } |