blob: 6fe68ab6ebad86d4b236e051e64d83dc258a2ea8 [file] [log] [blame]
msarett3d9d7a72015-10-21 10:27:10 -07001/*
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 Kleinc0bd9f92019-04-23 12:05:21 -05008#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 Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/core/SkPixmapPriv.h"
msarett3d9d7a72015-10-21 10:27:10 -070015
16static 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 Sarett2ae3a2e2017-02-15 08:48:02 -050021/**
22 * Loads the gamut as a set of three points (triangle).
23 */
Leon Scroggins III36f7e322018-08-27 11:55:46 -040024static void load_gamut(SkPoint rgb[], const skcms_Matrix3x3& xyz) {
Matt Sarett2ae3a2e2017-02-15 08:48:02 -050025 // rx = rX / (rX + rY + rZ)
26 // ry = rY / (rX + rY + rZ)
27 // gx, gy, bx, and gy are calulcated similarly.
nagarajan.n6e17b6f2017-07-10 15:02:00 +053028 for (int rgbIdx = 0; rgbIdx < 3; rgbIdx++) {
Leon Scroggins III36f7e322018-08-27 11:55:46 -040029 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.n6e17b6f2017-07-10 15:02:00 +053032 }
Matt Sarett2ae3a2e2017-02-15 08:48:02 -050033}
34
35/**
36 * Calculates the area of the triangular gamut.
37 */
38static 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 III862c1962017-10-02 16:28:49 -040045static constexpr float kSRGB_D50_GamutArea = 0.084f;
Matt Sarett2ae3a2e2017-02-15 08:48:02 -050046
Leon Scroggins III36f7e322018-08-27 11:55:46 -040047static bool is_wide_gamut(const skcms_ICCProfile& profile) {
Matt Sarett2ae3a2e2017-02-15 08:48:02 -050048 // 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 III36f7e322018-08-27 11:55:46 -040050 if (profile.has_toXYZD50) {
Matt Sarett2ae3a2e2017-02-15 08:48:02 -050051 SkPoint rgb[3];
Leon Scroggins III36f7e322018-08-27 11:55:46 -040052 load_gamut(rgb, profile.toXYZD50);
Matt Sarett2ae3a2e2017-02-15 08:48:02 -050053 return calculate_area(rgb) > kSRGB_D50_GamutArea;
54 }
55
56 return false;
57}
58
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -050059static 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
69SkAndroidCodec::SkAndroidCodec(SkCodec* codec, ExifOrientationBehavior orientationBehavior)
70 : fInfo(adjust_info(codec, orientationBehavior))
71 , fOrientationBehavior(orientationBehavior)
msarett90c4d5f2015-12-10 13:09:24 -080072 , fCodec(codec)
msarett3d9d7a72015-10-21 10:27:10 -070073{}
74
Leon Scroggins III07418182017-08-15 12:24:02 -040075SkAndroidCodec::~SkAndroidCodec() {}
76
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -050077std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromStream(std::unique_ptr<SkStream> stream,
78 SkPngChunkReader* chunkReader) {
Mike Reedede7bac2017-07-23 15:30:02 -040079 auto codec = SkCodec::MakeFromStream(std::move(stream), nullptr, chunkReader);
Leon Scroggins III7397d7a2018-01-04 13:26:30 -050080 return MakeFromCodec(std::move(codec));
81}
82
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -050083std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromCodec(std::unique_ptr<SkCodec> codec,
84 ExifOrientationBehavior orientationBehavior) {
msarett3d9d7a72015-10-21 10:27:10 -070085 if (nullptr == codec) {
86 return nullptr;
87 }
88
Hal Canarydb683012016-11-23 08:55:18 -070089 switch ((SkEncodedImageFormat)codec->getEncodedFormat()) {
Hal Canarydb683012016-11-23 08:55:18 -070090 case SkEncodedImageFormat::kPNG:
91 case SkEncodedImageFormat::kICO:
Hal Canarydb683012016-11-23 08:55:18 -070092 case SkEncodedImageFormat::kJPEG:
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -040093#ifndef SK_HAS_WUFFS_LIBRARY
Hal Canarydb683012016-11-23 08:55:18 -070094 case SkEncodedImageFormat::kGIF:
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -040095#endif
Hal Canarydb683012016-11-23 08:55:18 -070096 case SkEncodedImageFormat::kBMP:
97 case SkEncodedImageFormat::kWBMP:
Leon Scroggins III04be2b52017-08-17 15:13:20 -040098 case SkEncodedImageFormat::kHEIF:
Mike Kleinf46d5ca2019-12-11 10:45:01 -050099 return std::make_unique<SkSampledCodec>(codec.release(), orientationBehavior);
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400100#ifdef SK_HAS_WUFFS_LIBRARY
101 case SkEncodedImageFormat::kGIF:
102#endif
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -0400103#ifdef SK_CODEC_DECODES_WEBP
Hal Canarydb683012016-11-23 08:55:18 -0700104 case SkEncodedImageFormat::kWEBP:
Mike Klein0af99292019-05-15 22:02:05 +0000105#endif
106#ifdef SK_CODEC_DECODES_RAW
Hal Canarydb683012016-11-23 08:55:18 -0700107 case SkEncodedImageFormat::kDNG:
Mike Klein0af99292019-05-15 22:02:05 +0000108#endif
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -0400109#if defined(SK_CODEC_DECODES_WEBP) || defined(SK_CODEC_DECODES_RAW) || defined(SK_HAS_WUFFS_LIBRARY)
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500110 return std::make_unique<SkAndroidCodecAdapter>(codec.release(), orientationBehavior);
Mike Klein0af99292019-05-15 22:02:05 +0000111#endif
Nigel Tao612a65d2018-11-09 10:10:31 +1100112
msarett3d9d7a72015-10-21 10:27:10 -0700113 default:
msarett3d9d7a72015-10-21 10:27:10 -0700114 return nullptr;
115 }
116}
117
Mike Reedede7bac2017-07-23 15:30:02 -0400118std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromData(sk_sp<SkData> data,
119 SkPngChunkReader* chunkReader) {
msarett3d9d7a72015-10-21 10:27:10 -0700120 if (!data) {
121 return nullptr;
122 }
123
Mike Reed847068c2017-07-26 11:35:53 -0400124 return MakeFromStream(SkMemoryStream::Make(std::move(data)), chunkReader);
msarett3d9d7a72015-10-21 10:27:10 -0700125}
126
msarett9a0e3462015-12-11 07:38:50 -0800127SkColorType SkAndroidCodec::computeOutputColorType(SkColorType requestedColorType) {
Leon Scroggins1793e7b2017-12-05 15:38:14 +0000128 bool highPrecision = fCodec->getEncodedInfo().bitsPerComponent() > 8;
msarett9a0e3462015-12-11 07:38:50 -0800129 switch (requestedColorType) {
130 case kARGB_4444_SkColorType:
msarett9a0e3462015-12-11 07:38:50 -0800131 return kN32_SkColorType;
Matt Sarett8dcc84f2016-12-14 10:23:41 -0500132 case kN32_SkColorType:
msarett9a0e3462015-12-11 07:38:50 -0800133 break;
134 case kAlpha_8_SkColorType:
135 // Fall through to kGray_8. Before kGray_8_SkColorType existed,
136 // we allowed clients to request kAlpha_8 when they wanted a
137 // grayscale decode.
138 case kGray_8_SkColorType:
Matt Sarett8db74f12017-06-14 13:02:05 +0000139 if (kGray_8_SkColorType == this->getInfo().colorType()) {
msarett9a0e3462015-12-11 07:38:50 -0800140 return kGray_8_SkColorType;
141 }
142 break;
143 case kRGB_565_SkColorType:
144 if (kOpaque_SkAlphaType == this->getInfo().alphaType()) {
145 return kRGB_565_SkColorType;
146 }
147 break;
Matt Sarett8dcc84f2016-12-14 10:23:41 -0500148 case kRGBA_F16_SkColorType:
149 return kRGBA_F16_SkColorType;
msarett9a0e3462015-12-11 07:38:50 -0800150 default:
151 break;
152 }
153
Leon Scroggins1793e7b2017-12-05 15:38:14 +0000154 // F16 is the Android default for high precision images.
155 return highPrecision ? kRGBA_F16_SkColorType : kN32_SkColorType;
msarett9a0e3462015-12-11 07:38:50 -0800156}
157
158SkAlphaType SkAndroidCodec::computeOutputAlphaType(bool requestedUnpremul) {
159 if (kOpaque_SkAlphaType == this->getInfo().alphaType()) {
160 return kOpaque_SkAlphaType;
161 }
162 return requestedUnpremul ? kUnpremul_SkAlphaType : kPremul_SkAlphaType;
163}
164
Matt Sarett68feef42017-04-11 09:51:32 -0400165sk_sp<SkColorSpace> SkAndroidCodec::computeOutputColorSpace(SkColorType outputColorType,
166 sk_sp<SkColorSpace> prefColorSpace) {
Matt Sarett966bb342016-12-12 16:30:13 -0500167 switch (outputColorType) {
Derek Sollenberger1be431f2019-01-30 11:21:33 -0500168 case kRGBA_F16_SkColorType:
169 case kRGB_565_SkColorType:
Leon Scroggins IIIc20b5f82017-07-13 08:05:29 -0400170 case kRGBA_8888_SkColorType:
171 case kBGRA_8888_SkColorType: {
Brian Osman82ebe042019-01-04 17:03:00 -0500172 // If |prefColorSpace| is supplied, choose it.
173 if (prefColorSpace) {
Matt Sarett68feef42017-04-11 09:51:32 -0400174 return prefColorSpace;
175 }
176
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400177 const skcms_ICCProfile* encodedProfile = fCodec->getEncodedInfo().profile();
Leon Scroggins III227d4e12018-09-27 08:30:22 -0400178 if (encodedProfile) {
179 if (auto encodedSpace = SkColorSpace::Make(*encodedProfile)) {
180 // Leave the pixels in the encoded color space. Color space conversion
181 // will be handled after decode time.
182 return encodedSpace;
183 }
Matt Sarett9341c982017-02-28 15:36:42 -0500184
Leon Scroggins III227d4e12018-09-27 08:30:22 -0400185 if (is_wide_gamut(*encodedProfile)) {
Mike Kleinb147ace2020-01-16 11:11:06 -0600186 return SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDisplayP3);
Leon Scroggins III227d4e12018-09-27 08:30:22 -0400187 }
Matt Sarett2ae3a2e2017-02-15 08:48:02 -0500188 }
189
Matt Sarettcf3f2342017-03-23 15:32:25 -0400190 return SkColorSpace::MakeSRGB();
Matt Sarett9341c982017-02-28 15:36:42 -0500191 }
Matt Sarett966bb342016-12-12 16:30:13 -0500192 default:
Matt Sarett3725f0a2017-03-28 14:34:20 -0400193 // Color correction not supported for kGray.
Matt Sarett966bb342016-12-12 16:30:13 -0500194 return nullptr;
195 }
196}
197
Leon Scroggins III07a722c2018-01-16 15:01:17 -0500198static bool supports_any_down_scale(const SkCodec* codec) {
199 return codec->getEncodedFormat() == SkEncodedImageFormat::kWEBP;
200}
201
202// There are a variety of ways two SkISizes could be compared. This method
203// returns true if either dimensions of a is < that of b.
204// computeSampleSize also uses the opposite, which means that both
205// dimensions of a >= b.
206static inline bool smaller_than(const SkISize& a, const SkISize& b) {
207 return a.width() < b.width() || a.height() < b.height();
208}
209
210// Both dimensions of a > that of b.
211static inline bool strictly_bigger_than(const SkISize& a, const SkISize& b) {
212 return a.width() > b.width() && a.height() > b.height();
213}
214
215int SkAndroidCodec::computeSampleSize(SkISize* desiredSize) const {
216 SkASSERT(desiredSize);
217
218 if (!desiredSize || *desiredSize == fInfo.dimensions()) {
219 return 1;
220 }
221
222 if (smaller_than(fInfo.dimensions(), *desiredSize)) {
223 *desiredSize = fInfo.dimensions();
224 return 1;
225 }
226
227 // Handle bad input:
228 if (desiredSize->width() < 1 || desiredSize->height() < 1) {
229 *desiredSize = SkISize::Make(std::max(1, desiredSize->width()),
230 std::max(1, desiredSize->height()));
231 }
232
233 if (supports_any_down_scale(fCodec.get())) {
234 return 1;
235 }
236
237 int sampleX = fInfo.width() / desiredSize->width();
238 int sampleY = fInfo.height() / desiredSize->height();
239 int sampleSize = std::min(sampleX, sampleY);
240 auto computedSize = this->getSampledDimensions(sampleSize);
241 if (computedSize == *desiredSize) {
242 return sampleSize;
243 }
244
245 if (computedSize == fInfo.dimensions() || sampleSize == 1) {
246 // Cannot downscale
247 *desiredSize = computedSize;
248 return 1;
249 }
250
251 if (strictly_bigger_than(computedSize, *desiredSize)) {
252 // See if there is a tighter fit.
253 while (true) {
254 auto smaller = this->getSampledDimensions(sampleSize + 1);
255 if (smaller == *desiredSize) {
256 return sampleSize + 1;
257 }
258 if (smaller == computedSize || smaller_than(smaller, *desiredSize)) {
259 // Cannot get any smaller without being smaller than desired.
260 *desiredSize = computedSize;
261 return sampleSize;
262 }
263
264 sampleSize++;
265 computedSize = smaller;
266 }
267
268 SkASSERT(false);
269 }
270
271 if (!smaller_than(computedSize, *desiredSize)) {
272 // This means one of the computed dimensions is equal to desired, and
273 // the other is bigger. This is as close as we can get.
274 *desiredSize = computedSize;
275 return sampleSize;
276 }
277
278 // computedSize is too small. Make it larger.
279 while (sampleSize > 2) {
280 auto bigger = this->getSampledDimensions(sampleSize - 1);
281 if (bigger == *desiredSize || !smaller_than(bigger, *desiredSize)) {
282 *desiredSize = bigger;
283 return sampleSize - 1;
284 }
285 sampleSize--;
286 }
287
288 *desiredSize = fInfo.dimensions();
289 return 1;
290}
291
msarett3d9d7a72015-10-21 10:27:10 -0700292SkISize SkAndroidCodec::getSampledDimensions(int sampleSize) const {
293 if (!is_valid_sample_size(sampleSize)) {
Hal Canaryfafe1352017-04-11 12:12:02 -0400294 return {0, 0};
msarett3d9d7a72015-10-21 10:27:10 -0700295 }
296
scroggo501b7342015-11-03 07:55:11 -0800297 // Fast path for when we are not scaling.
298 if (1 == sampleSize) {
299 return fInfo.dimensions();
300 }
301
Leon Scroggins III95d0c8d2019-01-30 15:33:09 -0500302 auto dims = this->onGetSampledDimensions(sampleSize);
303 if (fOrientationBehavior == SkAndroidCodec::ExifOrientationBehavior::kIgnore
304 || !SkPixmapPriv::ShouldSwapWidthHeight(fCodec->getOrigin())) {
305 return dims;
306 }
307
308 return { dims.height(), dims.width() };
msarett3d9d7a72015-10-21 10:27:10 -0700309}
310
311bool SkAndroidCodec::getSupportedSubset(SkIRect* desiredSubset) const {
312 if (!desiredSubset || !is_valid_subset(*desiredSubset, fInfo.dimensions())) {
313 return false;
314 }
315
316 return this->onGetSupportedSubset(desiredSubset);
317}
318
319SkISize SkAndroidCodec::getSampledSubsetDimensions(int sampleSize, const SkIRect& subset) const {
320 if (!is_valid_sample_size(sampleSize)) {
Hal Canaryfafe1352017-04-11 12:12:02 -0400321 return {0, 0};
msarett3d9d7a72015-10-21 10:27:10 -0700322 }
323
324 // We require that the input subset is a subset that is supported by SkAndroidCodec.
325 // We test this by calling getSupportedSubset() and verifying that no modifications
326 // are made to the subset.
327 SkIRect copySubset = subset;
328 if (!this->getSupportedSubset(&copySubset) || copySubset != subset) {
Hal Canaryfafe1352017-04-11 12:12:02 -0400329 return {0, 0};
msarett3d9d7a72015-10-21 10:27:10 -0700330 }
331
scroggo501b7342015-11-03 07:55:11 -0800332 // If the subset is the entire image, for consistency, use getSampledDimensions().
msarett3d9d7a72015-10-21 10:27:10 -0700333 if (fInfo.dimensions() == subset.size()) {
scroggo501b7342015-11-03 07:55:11 -0800334 return this->getSampledDimensions(sampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700335 }
336
337 // This should perhaps call a virtual function, but currently both of our subclasses
338 // want the same implementation.
Hal Canaryfafe1352017-04-11 12:12:02 -0400339 return {get_scaled_dimension(subset.width(), sampleSize),
340 get_scaled_dimension(subset.height(), sampleSize)};
msarett3d9d7a72015-10-21 10:27:10 -0700341}
342
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500343static bool acceptable_result(SkCodec::Result result) {
344 switch (result) {
345 // These results mean a partial or complete image. They should be considered
346 // a success by SkPixmapPriv.
347 case SkCodec::kSuccess:
348 case SkCodec::kIncompleteInput:
349 case SkCodec::kErrorInInput:
350 return true;
351 default:
352 return false;
353 }
354}
355
356SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& requestInfo,
357 void* requestPixels, size_t requestRowBytes, const AndroidOptions* options) {
358 if (!requestPixels) {
msarett3d9d7a72015-10-21 10:27:10 -0700359 return SkCodec::kInvalidParameters;
360 }
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500361 if (requestRowBytes < requestInfo.minRowBytes()) {
msarett3d9d7a72015-10-21 10:27:10 -0700362 return SkCodec::kInvalidParameters;
363 }
364
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500365 SkImageInfo adjustedInfo = fInfo;
366 if (ExifOrientationBehavior::kRespect == fOrientationBehavior
367 && SkPixmapPriv::ShouldSwapWidthHeight(fCodec->getOrigin())) {
368 adjustedInfo = SkPixmapPriv::SwapWidthHeight(adjustedInfo);
369 }
370
msarett3d9d7a72015-10-21 10:27:10 -0700371 AndroidOptions defaultOptions;
372 if (!options) {
373 options = &defaultOptions;
374 } else if (options->fSubset) {
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500375 if (!is_valid_subset(*options->fSubset, adjustedInfo.dimensions())) {
msarett3d9d7a72015-10-21 10:27:10 -0700376 return SkCodec::kInvalidParameters;
377 }
scroggo501b7342015-11-03 07:55:11 -0800378
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500379 if (SkIRect::MakeSize(adjustedInfo.dimensions()) == *options->fSubset) {
scroggo501b7342015-11-03 07:55:11 -0800380 // The caller wants the whole thing, rather than a subset. Modify
381 // the AndroidOptions passed to onGetAndroidPixels to not specify
382 // a subset.
383 defaultOptions = *options;
384 defaultOptions.fSubset = nullptr;
385 options = &defaultOptions;
386 }
msarett3d9d7a72015-10-21 10:27:10 -0700387 }
388
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500389 if (ExifOrientationBehavior::kIgnore == fOrientationBehavior) {
390 return this->onGetAndroidPixels(requestInfo, requestPixels, requestRowBytes, *options);
391 }
392
393 SkCodec::Result result;
394 auto decode = [this, options, &result](const SkPixmap& pm) {
395 result = this->onGetAndroidPixels(pm.info(), pm.writable_addr(), pm.rowBytes(), *options);
396 return acceptable_result(result);
397 };
398
399 SkPixmap dst(requestInfo, requestPixels, requestRowBytes);
400 if (SkPixmapPriv::Orient(dst, fCodec->getOrigin(), decode)) {
401 return result;
402 }
403
404 // Orient returned false. If onGetAndroidPixels succeeded, then Orient failed internally.
405 if (acceptable_result(result)) {
406 return SkCodec::kInternalError;
407 }
408
409 return result;
msarett3d9d7a72015-10-21 10:27:10 -0700410}
411
412SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels,
413 size_t rowBytes) {
414 return this->getAndroidPixels(info, pixels, rowBytes, nullptr);
415}