blob: c695e0a452804a85743cbe830a3f1357ac64bac0 [file] [log] [blame]
scroggo6f5e6192015-06-18 12:53:43 -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
Hal Canaryc640d0d2018-06-13 09:59:02 -04008#include "SkWebpCodec.h"
9
Leon Scroggins III557fbbe2017-05-23 09:37:21 -040010#include "SkBitmap.h"
11#include "SkCanvas.h"
Leon Scroggins III33deb7e2017-06-07 12:31:51 -040012#include "SkCodecAnimation.h"
13#include "SkCodecAnimationPriv.h"
scroggocc2feb12015-08-14 08:32:46 -070014#include "SkCodecPriv.h"
Mike Reedede7bac2017-07-23 15:30:02 -040015#include "SkMakeUnique.h"
Leon Scroggins III557fbbe2017-05-23 09:37:21 -040016#include "SkRasterPipeline.h"
Matt Sarett5c496172017-02-07 17:01:16 -050017#include "SkSampler.h"
msarettff2a6c82016-09-07 11:23:28 -070018#include "SkStreamPriv.h"
scroggo6f5e6192015-06-18 12:53:43 -070019#include "SkTemplates.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040020#include "SkTo.h"
scroggo6f5e6192015-06-18 12:53:43 -070021
22// A WebP decoder on top of (subset of) libwebp
23// For more information on WebP image format, and libwebp library, see:
24// https://code.google.com/speed/webp/
25// http://www.webmproject.org/code/#libwebp-webp-image-library
26// https://chromium.googlesource.com/webm/libwebp
27
28// If moving libwebp out of skia source tree, path for webp headers must be
29// updated accordingly. Here, we enforce using local copy in webp sub-directory.
30#include "webp/decode.h"
msarett9d15dab2016-08-24 07:36:06 -070031#include "webp/demux.h"
scroggo6f5e6192015-06-18 12:53:43 -070032#include "webp/encode.h"
33
scroggodb30be22015-12-08 18:54:13 -080034bool SkWebpCodec::IsWebp(const void* buf, size_t bytesRead) {
scroggo6f5e6192015-06-18 12:53:43 -070035 // WEBP starts with the following:
36 // RIFFXXXXWEBPVP
37 // Where XXXX is unspecified.
scroggodb30be22015-12-08 18:54:13 -080038 const char* bytes = static_cast<const char*>(buf);
39 return bytesRead >= 14 && !memcmp(bytes, "RIFF", 4) && !memcmp(&bytes[8], "WEBPVP", 6);
scroggo6f5e6192015-06-18 12:53:43 -070040}
41
scroggo6f5e6192015-06-18 12:53:43 -070042// Parse headers of RIFF container, and check for valid Webp (VP8) content.
Leon Scroggins III557fbbe2017-05-23 09:37:21 -040043// Returns an SkWebpCodec on success
Mike Reedede7bac2017-07-23 15:30:02 -040044std::unique_ptr<SkCodec> SkWebpCodec::MakeFromStream(std::unique_ptr<SkStream> stream,
45 Result* result) {
msarettff2a6c82016-09-07 11:23:28 -070046 // Webp demux needs a contiguous data buffer.
47 sk_sp<SkData> data = nullptr;
48 if (stream->getMemoryBase()) {
49 // It is safe to make without copy because we'll hold onto the stream.
50 data = SkData::MakeWithoutCopy(stream->getMemoryBase(), stream->getLength());
51 } else {
Mike Reedede7bac2017-07-23 15:30:02 -040052 data = SkCopyStreamToData(stream.get());
scroggodb30be22015-12-08 18:54:13 -080053
msarettff2a6c82016-09-07 11:23:28 -070054 // If we are forced to copy the stream to a data, we can go ahead and delete the stream.
Mike Reedede7bac2017-07-23 15:30:02 -040055 stream.reset(nullptr);
msarettff2a6c82016-09-07 11:23:28 -070056 }
57
58 // It's a little strange that the |demux| will outlive |webpData|, though it needs the
59 // pointer in |webpData| to remain valid. This works because the pointer remains valid
60 // until the SkData is freed.
61 WebPData webpData = { data->bytes(), data->size() };
Leon Scroggins III588fb042017-07-14 16:32:31 -040062 WebPDemuxState state;
63 SkAutoTCallVProc<WebPDemuxer, WebPDemuxDelete> demux(WebPDemuxPartial(&webpData, &state));
64 switch (state) {
65 case WEBP_DEMUX_PARSE_ERROR:
66 *result = kInvalidInput;
67 return nullptr;
68 case WEBP_DEMUX_PARSING_HEADER:
69 *result = kIncompleteInput;
70 return nullptr;
71 case WEBP_DEMUX_PARSED_HEADER:
72 case WEBP_DEMUX_DONE:
73 SkASSERT(demux);
74 break;
scroggo6f5e6192015-06-18 12:53:43 -070075 }
76
Matt Sarett5c496172017-02-07 17:01:16 -050077 const int width = WebPDemuxGetI(demux, WEBP_FF_CANVAS_WIDTH);
78 const int height = WebPDemuxGetI(demux, WEBP_FF_CANVAS_HEIGHT);
79
80 // Sanity check for image size that's about to be decoded.
81 {
82 const int64_t size = sk_64_mul(width, height);
Matt Sarett5c496172017-02-07 17:01:16 -050083 // now check that if we are 4-bytes per pixel, we also don't overflow
Herb Derbyc402b772017-09-20 11:56:00 -040084 if (!SkTFitsIn<int32_t>(size) || SkTo<int32_t>(size) > (0x7FFFFFFF >> 2)) {
Leon Scroggins III588fb042017-07-14 16:32:31 -040085 *result = kInvalidInput;
Matt Sarett5c496172017-02-07 17:01:16 -050086 return nullptr;
87 }
88 }
89
Leon Scroggins III36f7e322018-08-27 11:55:46 -040090 std::unique_ptr<SkEncodedInfo::ICCProfile> profile = nullptr;
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -050091 {
92 WebPChunkIterator chunkIterator;
93 SkAutoTCallVProc<WebPChunkIterator, WebPDemuxReleaseChunkIterator> autoCI(&chunkIterator);
94 if (WebPDemuxGetChunk(demux, "ICCP", 1, &chunkIterator)) {
Leon Scroggins III36f7e322018-08-27 11:55:46 -040095 // FIXME: I think this could be MakeWithoutCopy
96 auto chunk = SkData::MakeWithCopy(chunkIterator.chunk.bytes, chunkIterator.chunk.size);
97 profile = SkEncodedInfo::ICCProfile::Make(std::move(chunk));
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -050098 }
Leon Scroggins III5dd47e42018-09-27 15:26:48 -040099 if (profile && profile->profile()->data_color_space != skcms_Signature_RGB) {
100 profile = nullptr;
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500101 }
scroggo6f5e6192015-06-18 12:53:43 -0700102 }
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500103
104 SkEncodedOrigin origin = kDefault_SkEncodedOrigin;
105 {
106 WebPChunkIterator chunkIterator;
107 SkAutoTCallVProc<WebPChunkIterator, WebPDemuxReleaseChunkIterator> autoCI(&chunkIterator);
108 if (WebPDemuxGetChunk(demux, "EXIF", 1, &chunkIterator)) {
109 is_orientation_marker(chunkIterator.chunk.bytes, chunkIterator.chunk.size, &origin);
110 }
msarettff2a6c82016-09-07 11:23:28 -0700111 }
112
Matt Sarett5c496172017-02-07 17:01:16 -0500113 // Get the first frame and its "features" to determine the color and alpha types.
msarettff2a6c82016-09-07 11:23:28 -0700114 WebPIterator frame;
115 SkAutoTCallVProc<WebPIterator, WebPDemuxReleaseIterator> autoFrame(&frame);
116 if (!WebPDemuxGetFrame(demux, 1, &frame)) {
Leon Scroggins III588fb042017-07-14 16:32:31 -0400117 *result = kIncompleteInput;
msarettff2a6c82016-09-07 11:23:28 -0700118 return nullptr;
119 }
120
msarettff2a6c82016-09-07 11:23:28 -0700121 WebPBitstreamFeatures features;
Leon Scroggins III588fb042017-07-14 16:32:31 -0400122 switch (WebPGetFeatures(frame.fragment.bytes, frame.fragment.size, &features)) {
123 case VP8_STATUS_OK:
124 break;
125 case VP8_STATUS_SUSPENDED:
126 case VP8_STATUS_NOT_ENOUGH_DATA:
127 *result = kIncompleteInput;
128 return nullptr;
129 default:
130 *result = kInvalidInput;
131 return nullptr;
msarettff2a6c82016-09-07 11:23:28 -0700132 }
133
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400134 const bool hasAlpha = SkToBool(frame.has_alpha)
135 || frame.width != width || frame.height != height;
msarettac6c7502016-04-25 09:30:24 -0700136 SkEncodedInfo::Color color;
137 SkEncodedInfo::Alpha alpha;
138 switch (features.format) {
139 case 0:
Matt Sarett5c496172017-02-07 17:01:16 -0500140 // This indicates a "mixed" format. We could see this for
141 // animated webps (multiple fragments).
msarettac6c7502016-04-25 09:30:24 -0700142 // We could also guess kYUV here, but I think it makes more
143 // sense to guess kBGRA which is likely closer to the final
144 // output. Otherwise, we might end up converting
145 // BGRA->YUVA->BGRA.
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400146 // Fallthrough:
147 case 2:
148 // This is the lossless format (BGRA).
149 if (hasAlpha) {
150 color = SkEncodedInfo::kBGRA_Color;
151 alpha = SkEncodedInfo::kUnpremul_Alpha;
152 } else {
153 color = SkEncodedInfo::kBGRX_Color;
154 alpha = SkEncodedInfo::kOpaque_Alpha;
155 }
msarettac6c7502016-04-25 09:30:24 -0700156 break;
157 case 1:
158 // This is the lossy format (YUV).
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400159 if (hasAlpha) {
msarettac6c7502016-04-25 09:30:24 -0700160 color = SkEncodedInfo::kYUVA_Color;
msarettc30c4182016-04-20 11:53:35 -0700161 alpha = SkEncodedInfo::kUnpremul_Alpha;
msarettac6c7502016-04-25 09:30:24 -0700162 } else {
163 color = SkEncodedInfo::kYUV_Color;
164 alpha = SkEncodedInfo::kOpaque_Alpha;
165 }
166 break;
msarettac6c7502016-04-25 09:30:24 -0700167 default:
Leon Scroggins III588fb042017-07-14 16:32:31 -0400168 *result = kInvalidInput;
msarettac6c7502016-04-25 09:30:24 -0700169 return nullptr;
scroggo6f5e6192015-06-18 12:53:43 -0700170 }
scroggo6f5e6192015-06-18 12:53:43 -0700171
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500172
Leon Scroggins III588fb042017-07-14 16:32:31 -0400173 *result = kSuccess;
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400174 SkEncodedInfo info = SkEncodedInfo::Make(width, height, color, alpha, 8, std::move(profile));
175 return std::unique_ptr<SkCodec>(new SkWebpCodec(std::move(info), std::move(stream),
176 demux.release(), std::move(data), origin));
scroggo6f5e6192015-06-18 12:53:43 -0700177}
178
scroggo6f5e6192015-06-18 12:53:43 -0700179SkISize SkWebpCodec::onGetScaledDimensions(float desiredScale) const {
Leon Scroggins III712476e2018-10-03 15:47:00 -0400180 SkISize dim = this->dimensions();
msaretta0c414d2015-06-19 07:34:30 -0700181 // SkCodec treats zero dimensional images as errors, so the minimum size
182 // that we will recommend is 1x1.
183 dim.fWidth = SkTMax(1, SkScalarRoundToInt(desiredScale * dim.fWidth));
184 dim.fHeight = SkTMax(1, SkScalarRoundToInt(desiredScale * dim.fHeight));
scroggo6f5e6192015-06-18 12:53:43 -0700185 return dim;
186}
187
scroggoe7fc14b2015-10-02 13:14:46 -0700188bool SkWebpCodec::onDimensionsSupported(const SkISize& dim) {
Leon Scroggins III712476e2018-10-03 15:47:00 -0400189 const SkEncodedInfo& info = this->getEncodedInfo();
scroggoe7fc14b2015-10-02 13:14:46 -0700190 return dim.width() >= 1 && dim.width() <= info.width()
191 && dim.height() >= 1 && dim.height() <= info.height();
192}
193
Leon Scroggins III03588412017-11-17 08:07:32 -0500194static WEBP_CSP_MODE webp_decode_mode(SkColorType dstCT, bool premultiply) {
195 switch (dstCT) {
scroggo6f5e6192015-06-18 12:53:43 -0700196 case kBGRA_8888_SkColorType:
197 return premultiply ? MODE_bgrA : MODE_BGRA;
198 case kRGBA_8888_SkColorType:
199 return premultiply ? MODE_rgbA : MODE_RGBA;
scroggo74992b52015-08-06 13:50:15 -0700200 case kRGB_565_SkColorType:
201 return MODE_RGB_565;
scroggo6f5e6192015-06-18 12:53:43 -0700202 default:
203 return MODE_LAST;
204 }
205}
206
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400207SkWebpCodec::Frame* SkWebpCodec::FrameHolder::appendNewFrame(bool hasAlpha) {
208 const int i = this->size();
Leon Scroggins IIIc8037dc2017-12-05 13:55:24 -0500209 fFrames.emplace_back(i, hasAlpha ? SkEncodedInfo::kUnpremul_Alpha
210 : SkEncodedInfo::kOpaque_Alpha);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400211 return &fFrames[i];
212}
213
scroggob636b452015-07-22 07:16:20 -0700214bool SkWebpCodec::onGetValidSubset(SkIRect* desiredSubset) const {
215 if (!desiredSubset) {
216 return false;
217 }
218
Leon Scroggins III712476e2018-10-03 15:47:00 -0400219 if (!this->bounds().contains(*desiredSubset)) {
scroggob636b452015-07-22 07:16:20 -0700220 return false;
221 }
222
223 // As stated below, libwebp snaps to even left and top. Make sure top and left are even, so we
224 // decode this exact subset.
225 // Leave right and bottom unmodified, so we suggest a slightly larger subset than requested.
226 desiredSubset->fLeft = (desiredSubset->fLeft >> 1) << 1;
227 desiredSubset->fTop = (desiredSubset->fTop >> 1) << 1;
228 return true;
229}
230
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400231int SkWebpCodec::onGetRepetitionCount() {
232 auto flags = WebPDemuxGetI(fDemux.get(), WEBP_FF_FORMAT_FLAGS);
233 if (!(flags & ANIMATION_FLAG)) {
234 return 0;
235 }
236
237 const int repCount = WebPDemuxGetI(fDemux.get(), WEBP_FF_LOOP_COUNT);
238 if (0 == repCount) {
239 return kRepetitionCountInfinite;
240 }
241
242 return repCount;
243}
244
245int SkWebpCodec::onGetFrameCount() {
246 auto flags = WebPDemuxGetI(fDemux.get(), WEBP_FF_FORMAT_FLAGS);
247 if (!(flags & ANIMATION_FLAG)) {
248 return 1;
249 }
250
251 const uint32_t oldFrameCount = fFrameHolder.size();
252 if (fFailed) {
253 return oldFrameCount;
254 }
255
256 const uint32_t frameCount = WebPDemuxGetI(fDemux, WEBP_FF_FRAME_COUNT);
257 if (oldFrameCount == frameCount) {
258 // We have already parsed this.
259 return frameCount;
260 }
261
262 fFrameHolder.reserve(frameCount);
263
264 for (uint32_t i = oldFrameCount; i < frameCount; i++) {
265 WebPIterator iter;
266 SkAutoTCallVProc<WebPIterator, WebPDemuxReleaseIterator> autoIter(&iter);
267
268 if (!WebPDemuxGetFrame(fDemux.get(), i + 1, &iter)) {
269 fFailed = true;
270 break;
271 }
272
273 // libwebp only reports complete frames of an animated image.
274 SkASSERT(iter.complete);
275
276 Frame* frame = fFrameHolder.appendNewFrame(iter.has_alpha);
277 frame->setXYWH(iter.x_offset, iter.y_offset, iter.width, iter.height);
278 frame->setDisposalMethod(iter.dispose_method == WEBP_MUX_DISPOSE_BACKGROUND ?
Leon Scroggins III33deb7e2017-06-07 12:31:51 -0400279 SkCodecAnimation::DisposalMethod::kRestoreBGColor :
280 SkCodecAnimation::DisposalMethod::kKeep);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400281 frame->setDuration(iter.duration);
282 if (WEBP_MUX_BLEND != iter.blend_method) {
283 frame->setBlend(SkCodecAnimation::Blend::kBG);
284 }
285 fFrameHolder.setAlphaAndRequiredFrame(frame);
286 }
287
288 return fFrameHolder.size();
289
290}
291
292const SkFrame* SkWebpCodec::FrameHolder::onGetFrame(int i) const {
293 return static_cast<const SkFrame*>(this->frame(i));
294}
295
296const SkWebpCodec::Frame* SkWebpCodec::FrameHolder::frame(int i) const {
297 SkASSERT(i >= 0 && i < this->size());
298 return &fFrames[i];
299}
300
301bool SkWebpCodec::onGetFrameInfo(int i, FrameInfo* frameInfo) const {
302 if (i >= fFrameHolder.size()) {
303 return false;
304 }
305
306 const Frame* frame = fFrameHolder.frame(i);
307 if (!frame) {
308 return false;
309 }
310
311 if (frameInfo) {
312 frameInfo->fRequiredFrame = frame->getRequiredFrame();
313 frameInfo->fDuration = frame->getDuration();
314 // libwebp only reports fully received frames for an
315 // animated image.
316 frameInfo->fFullyReceived = true;
Leon Scroggins IIIc8037dc2017-12-05 13:55:24 -0500317 frameInfo->fAlphaType = frame->hasAlpha() ? kUnpremul_SkAlphaType
318 : kOpaque_SkAlphaType;
Leon Scroggins III33deb7e2017-06-07 12:31:51 -0400319 frameInfo->fDisposalMethod = frame->getDisposalMethod();
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400320 }
321
322 return true;
323}
324
325static bool is_8888(SkColorType colorType) {
326 switch (colorType) {
327 case kRGBA_8888_SkColorType:
328 case kBGRA_8888_SkColorType:
329 return true;
330 default:
331 return false;
332 }
333}
334
Leon Scroggins III03588412017-11-17 08:07:32 -0500335// Requires that the src input be unpremultiplied (or opaque).
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400336static void blend_line(SkColorType dstCT, void* dst,
Mike Klein45c16fa2017-07-18 18:15:13 -0400337 SkColorType srcCT, const void* src,
Leon Scroggins III03588412017-11-17 08:07:32 -0500338 SkAlphaType dstAt,
339 bool srcHasAlpha,
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400340 int width) {
Mike Kleinb11ab572018-10-24 06:42:14 -0400341 SkRasterPipeline_MemoryCtx dst_ctx = { (void*)dst, 0 },
342 src_ctx = { (void*)src, 0 };
Mike Klein45c16fa2017-07-18 18:15:13 -0400343
Mike Kleinb24704d2017-05-24 07:53:00 -0400344 SkRasterPipeline_<256> p;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400345
Mike Klein1a3eb522018-10-18 10:11:00 -0400346 p.append_load_dst(dstCT, &dst_ctx);
Leon Scroggins III03588412017-11-17 08:07:32 -0500347 if (kUnpremul_SkAlphaType == dstAt) {
Mike Klein1a3eb522018-10-18 10:11:00 -0400348 p.append(SkRasterPipeline::premul_dst);
Leon Scroggins III03588412017-11-17 08:07:32 -0500349 }
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400350
Mike Klein1a3eb522018-10-18 10:11:00 -0400351 p.append_load(srcCT, &src_ctx);
Leon Scroggins III03588412017-11-17 08:07:32 -0500352 if (srcHasAlpha) {
353 p.append(SkRasterPipeline::premul);
354 }
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400355
356 p.append(SkRasterPipeline::srcover);
357
Leon Scroggins III03588412017-11-17 08:07:32 -0500358 if (kUnpremul_SkAlphaType == dstAt) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400359 p.append(SkRasterPipeline::unpremul);
360 }
Mike Klein1a3eb522018-10-18 10:11:00 -0400361 p.append_store(dstCT, &dst_ctx);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400362
Mike Klein45c16fa2017-07-18 18:15:13 -0400363 p.run(0,0, width,1);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400364}
365
scroggoeb602a52015-07-09 08:16:03 -0700366SkCodec::Result SkWebpCodec::onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t rowBytes,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000367 const Options& options, int* rowsDecodedPtr) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400368 const int index = options.fFrameIndex;
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400369 SkASSERT(0 == index || index < fFrameHolder.size());
Leon Scroggins III42ee2842018-01-14 14:46:51 -0500370 SkASSERT(0 == index || !options.fSubset);
scroggo6f5e6192015-06-18 12:53:43 -0700371
372 WebPDecoderConfig config;
373 if (0 == WebPInitDecoderConfig(&config)) {
374 // ABI mismatch.
375 // FIXME: New enum for this?
376 return kInvalidInput;
377 }
378
379 // Free any memory associated with the buffer. Must be called last, so we declare it first.
380 SkAutoTCallVProc<WebPDecBuffer, WebPFreeDecBuffer> autoFree(&(config.output));
381
Matt Sarett5c496172017-02-07 17:01:16 -0500382 WebPIterator frame;
383 SkAutoTCallVProc<WebPIterator, WebPDemuxReleaseIterator> autoFrame(&frame);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400384 // If this succeeded in onGetFrameCount(), it should succeed again here.
385 SkAssertResult(WebPDemuxGetFrame(fDemux, index + 1, &frame));
Matt Sarett604971e2017-02-06 09:51:48 -0500386
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400387 const bool independent = index == 0 ? true :
Nigel Tao66bc5242018-08-22 10:56:03 +1000388 (fFrameHolder.frame(index)->getRequiredFrame() == kNoFrame);
Matt Sarett5c496172017-02-07 17:01:16 -0500389 // Get the frameRect. libwebp will have already signaled an error if this is not fully
390 // contained by the canvas.
391 auto frameRect = SkIRect::MakeXYWH(frame.x_offset, frame.y_offset, frame.width, frame.height);
Leon Scroggins III712476e2018-10-03 15:47:00 -0400392 SkASSERT(this->bounds().contains(frameRect));
393 const bool frameIsSubset = frameRect != this->bounds();
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400394 if (independent && frameIsSubset) {
Leon Scroggins IIIe643a9e2018-08-03 16:15:04 -0400395 SkSampler::Fill(dstInfo, dst, rowBytes, options.fZeroInitialized);
Matt Sarett604971e2017-02-06 09:51:48 -0500396 }
397
Matt Sarett5c496172017-02-07 17:01:16 -0500398 int dstX = frameRect.x();
399 int dstY = frameRect.y();
400 int subsetWidth = frameRect.width();
401 int subsetHeight = frameRect.height();
402 if (options.fSubset) {
403 SkIRect subset = *options.fSubset;
Leon Scroggins III712476e2018-10-03 15:47:00 -0400404 SkASSERT(this->bounds().contains(subset));
Matt Sarett5c496172017-02-07 17:01:16 -0500405 SkASSERT(SkIsAlign2(subset.fLeft) && SkIsAlign2(subset.fTop));
406 SkASSERT(this->getValidSubset(&subset) && subset == *options.fSubset);
407
408 if (!SkIRect::IntersectsNoEmptyCheck(subset, frameRect)) {
409 return kSuccess;
410 }
411
412 int minXOffset = SkTMin(dstX, subset.x());
413 int minYOffset = SkTMin(dstY, subset.y());
414 dstX -= minXOffset;
415 dstY -= minYOffset;
416 frameRect.offset(-minXOffset, -minYOffset);
417 subset.offset(-minXOffset, -minYOffset);
418
419 // Just like we require that the requested subset x and y offset are even, libwebp
420 // guarantees that the frame x and y offset are even (it's actually impossible to specify
421 // an odd frame offset). So we can still guarantee that the adjusted offsets are even.
422 SkASSERT(SkIsAlign2(subset.fLeft) && SkIsAlign2(subset.fTop));
423
424 SkIRect intersection;
425 SkAssertResult(intersection.intersect(frameRect, subset));
426 subsetWidth = intersection.width();
427 subsetHeight = intersection.height();
428
429 config.options.use_cropping = 1;
430 config.options.crop_left = subset.x();
431 config.options.crop_top = subset.y();
432 config.options.crop_width = subsetWidth;
433 config.options.crop_height = subsetHeight;
434 }
435
436 // Ignore the frame size and offset when determining if scaling is necessary.
437 int scaledWidth = subsetWidth;
438 int scaledHeight = subsetHeight;
Leon Scroggins III712476e2018-10-03 15:47:00 -0400439 SkISize srcSize = options.fSubset ? options.fSubset->size() : this->dimensions();
Matt Sarett5c496172017-02-07 17:01:16 -0500440 if (srcSize != dstInfo.dimensions()) {
scroggo6f5e6192015-06-18 12:53:43 -0700441 config.options.use_scaling = 1;
Matt Sarett5c496172017-02-07 17:01:16 -0500442
443 if (frameIsSubset) {
444 float scaleX = ((float) dstInfo.width()) / srcSize.width();
445 float scaleY = ((float) dstInfo.height()) / srcSize.height();
446
447 // We need to be conservative here and floor rather than round.
448 // Otherwise, we may find ourselves decoding off the end of memory.
449 dstX = scaleX * dstX;
450 scaledWidth = scaleX * scaledWidth;
451 dstY = scaleY * dstY;
452 scaledHeight = scaleY * scaledHeight;
453 if (0 == scaledWidth || 0 == scaledHeight) {
454 return kSuccess;
455 }
456 } else {
457 scaledWidth = dstInfo.width();
458 scaledHeight = dstInfo.height();
459 }
460
461 config.options.scaled_width = scaledWidth;
462 config.options.scaled_height = scaledHeight;
scroggo6f5e6192015-06-18 12:53:43 -0700463 }
464
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400465 const bool blendWithPrevFrame = !independent && frame.blend_method == WEBP_MUX_BLEND
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400466 && frame.has_alpha;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400467
468 SkBitmap webpDst;
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400469 auto webpInfo = dstInfo;
470 if (!frame.has_alpha) {
471 webpInfo = webpInfo.makeAlphaType(kOpaque_SkAlphaType);
472 }
473 if (this->colorXform()) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400474 // Swizzling between RGBA and BGRA is zero cost in a color transform. So when we have a
475 // color transform, we should decode to whatever is easiest for libwebp, and then let the
476 // color transform swizzle if necessary.
477 // Lossy webp is encoded as YUV (so RGBA and BGRA are the same cost). Lossless webp is
478 // encoded as BGRA. This means decoding to BGRA is either faster or the same cost as RGBA.
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400479 webpInfo = webpInfo.makeColorType(kBGRA_8888_SkColorType);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400480
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400481 if (webpInfo.alphaType() == kPremul_SkAlphaType) {
482 webpInfo = webpInfo.makeAlphaType(kUnpremul_SkAlphaType);
483 }
484 }
485
486 if ((this->colorXform() && !is_8888(dstInfo.colorType())) || blendWithPrevFrame) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400487 // We will decode the entire image and then perform the color transform. libwebp
488 // does not provide a row-by-row API. This is a shame particularly when we do not want
489 // 8888, since we will need to create another image sized buffer.
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400490 webpDst.allocPixels(webpInfo);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400491 } else {
492 // libwebp can decode directly into the output memory.
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400493 webpDst.installPixels(webpInfo, dst, rowBytes);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400494 }
495
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400496 config.output.colorspace = webp_decode_mode(webpInfo.colorType(),
497 frame.has_alpha && dstInfo.alphaType() == kPremul_SkAlphaType && !this->colorXform());
scroggo6f5e6192015-06-18 12:53:43 -0700498 config.output.is_external_memory = 1;
499
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400500 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY));
501 config.output.u.RGBA.stride = static_cast<int>(webpDst.rowBytes());
Mike Reedf0ffb892017-10-03 14:47:21 -0400502 config.output.u.RGBA.size = webpDst.computeByteSize();
msarettff2a6c82016-09-07 11:23:28 -0700503
halcanary96fcdcc2015-08-27 07:41:13 -0700504 SkAutoTCallVProc<WebPIDecoder, WebPIDelete> idec(WebPIDecode(nullptr, 0, &config));
scroggo6f5e6192015-06-18 12:53:43 -0700505 if (!idec) {
506 return kInvalidInput;
507 }
508
Leon Scroggins IIIe5677462017-09-27 16:31:08 -0400509 int rowsDecoded = 0;
msarette99883f2016-09-08 06:05:35 -0700510 SkCodec::Result result;
msarettff2a6c82016-09-07 11:23:28 -0700511 switch (WebPIUpdate(idec, frame.fragment.bytes, frame.fragment.size)) {
512 case VP8_STATUS_OK:
Matt Sarett5c496172017-02-07 17:01:16 -0500513 rowsDecoded = scaledHeight;
msarette99883f2016-09-08 06:05:35 -0700514 result = kSuccess;
515 break;
msarettff2a6c82016-09-07 11:23:28 -0700516 case VP8_STATUS_SUSPENDED:
Leon Scroggins IIIe5677462017-09-27 16:31:08 -0400517 if (!WebPIDecGetRGB(idec, &rowsDecoded, nullptr, nullptr, nullptr)
518 || rowsDecoded <= 0) {
519 return kInvalidInput;
520 }
Matt Sarett5c496172017-02-07 17:01:16 -0500521 *rowsDecodedPtr = rowsDecoded + dstY;
msarette99883f2016-09-08 06:05:35 -0700522 result = kIncompleteInput;
523 break;
msarettff2a6c82016-09-07 11:23:28 -0700524 default:
525 return kInvalidInput;
scroggo6f5e6192015-06-18 12:53:43 -0700526 }
msarette99883f2016-09-08 06:05:35 -0700527
Mike Reed7fcfb622018-02-09 13:26:46 -0500528 const size_t dstBpp = dstInfo.bytesPerPixel();
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400529 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
530 const size_t srcRowBytes = config.output.u.RGBA.stride;
531
532 const auto dstCT = dstInfo.colorType();
Matt Sarett313c4632016-10-20 12:35:23 -0400533 if (this->colorXform()) {
Matt Sarett5c496172017-02-07 17:01:16 -0500534 uint32_t* xformSrc = (uint32_t*) config.output.u.RGBA.rgba;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400535 SkBitmap tmp;
536 void* xformDst;
537
538 if (blendWithPrevFrame) {
539 // Xform into temporary bitmap big enough for one row.
540 tmp.allocPixels(dstInfo.makeWH(scaledWidth, 1));
541 xformDst = tmp.getPixels();
542 } else {
543 xformDst = dst;
544 }
Leon Scroggins III03588412017-11-17 08:07:32 -0500545
Robert Phillipsb3050b92017-02-06 13:12:18 +0000546 for (int y = 0; y < rowsDecoded; y++) {
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400547 this->applyColorXform(xformDst, xformSrc, scaledWidth);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400548 if (blendWithPrevFrame) {
Mike Klein76f57062018-06-08 14:00:19 -0400549 blend_line(dstCT, dst, dstCT, xformDst,
Leon Scroggins III03588412017-11-17 08:07:32 -0500550 dstInfo.alphaType(), frame.has_alpha, scaledWidth);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400551 dst = SkTAddOffset<void>(dst, rowBytes);
552 } else {
553 xformDst = SkTAddOffset<void>(xformDst, rowBytes);
554 }
Matt Sarett5c496172017-02-07 17:01:16 -0500555 xformSrc = SkTAddOffset<uint32_t>(xformSrc, srcRowBytes);
msarette99883f2016-09-08 06:05:35 -0700556 }
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400557 } else if (blendWithPrevFrame) {
558 const uint8_t* src = config.output.u.RGBA.rgba;
559
560 for (int y = 0; y < rowsDecoded; y++) {
Mike Klein76f57062018-06-08 14:00:19 -0400561 blend_line(dstCT, dst, webpDst.colorType(), src,
Leon Scroggins III03588412017-11-17 08:07:32 -0500562 dstInfo.alphaType(), frame.has_alpha, scaledWidth);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400563 src = SkTAddOffset<const uint8_t>(src, srcRowBytes);
564 dst = SkTAddOffset<void>(dst, rowBytes);
565 }
msarette99883f2016-09-08 06:05:35 -0700566 }
567
568 return result;
scroggo6f5e6192015-06-18 12:53:43 -0700569}
570
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400571SkWebpCodec::SkWebpCodec(SkEncodedInfo&& info, std::unique_ptr<SkStream> stream,
Leon Scroggins IIIda3e9ad2018-01-26 15:48:26 -0500572 WebPDemuxer* demux, sk_sp<SkData> data, SkEncodedOrigin origin)
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400573 : INHERITED(std::move(info), skcms_PixelFormat_BGRA_8888, std::move(stream),
574 origin)
msarettff2a6c82016-09-07 11:23:28 -0700575 , fDemux(demux)
576 , fData(std::move(data))
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400577 , fFailed(false)
578{
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400579 const auto& eInfo = this->getEncodedInfo();
580 fFrameHolder.setScreenSize(eInfo.width(), eInfo.height());
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400581}