blob: 6287617373d2c6d781498c9ff362ae0b9a6114f1 [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
Leon Scroggins III557fbbe2017-05-23 09:37:21 -04008#include "SkBitmap.h"
9#include "SkCanvas.h"
Leon Scroggins III33deb7e2017-06-07 12:31:51 -040010#include "SkCodecAnimation.h"
11#include "SkCodecAnimationPriv.h"
scroggocc2feb12015-08-14 08:32:46 -070012#include "SkCodecPriv.h"
msarette99883f2016-09-08 06:05:35 -070013#include "SkColorSpaceXform.h"
Mike Reedede7bac2017-07-23 15:30:02 -040014#include "SkMakeUnique.h"
Leon Scroggins III557fbbe2017-05-23 09:37:21 -040015#include "SkRasterPipeline.h"
Matt Sarett5c496172017-02-07 17:01:16 -050016#include "SkSampler.h"
msarettff2a6c82016-09-07 11:23:28 -070017#include "SkStreamPriv.h"
scroggo6f5e6192015-06-18 12:53:43 -070018#include "SkTemplates.h"
Matt Sarett5c496172017-02-07 17:01:16 -050019#include "SkWebpCodec.h"
Mike Klein45c16fa2017-07-18 18:15:13 -040020#include "../jumper/SkJumper.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
Leon Scroggins III557fbbe2017-05-23 09:37:21 -040042static SkAlphaType alpha_type(bool hasAlpha) {
43 return hasAlpha ? kUnpremul_SkAlphaType : kOpaque_SkAlphaType;
44}
45
scroggo6f5e6192015-06-18 12:53:43 -070046// Parse headers of RIFF container, and check for valid Webp (VP8) content.
Leon Scroggins III557fbbe2017-05-23 09:37:21 -040047// Returns an SkWebpCodec on success
Mike Reedede7bac2017-07-23 15:30:02 -040048std::unique_ptr<SkCodec> SkWebpCodec::MakeFromStream(std::unique_ptr<SkStream> stream,
49 Result* result) {
msarettff2a6c82016-09-07 11:23:28 -070050 // Webp demux needs a contiguous data buffer.
51 sk_sp<SkData> data = nullptr;
52 if (stream->getMemoryBase()) {
53 // It is safe to make without copy because we'll hold onto the stream.
54 data = SkData::MakeWithoutCopy(stream->getMemoryBase(), stream->getLength());
55 } else {
Mike Reedede7bac2017-07-23 15:30:02 -040056 data = SkCopyStreamToData(stream.get());
scroggodb30be22015-12-08 18:54:13 -080057
msarettff2a6c82016-09-07 11:23:28 -070058 // 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 -040059 stream.reset(nullptr);
msarettff2a6c82016-09-07 11:23:28 -070060 }
61
62 // It's a little strange that the |demux| will outlive |webpData|, though it needs the
63 // pointer in |webpData| to remain valid. This works because the pointer remains valid
64 // until the SkData is freed.
65 WebPData webpData = { data->bytes(), data->size() };
Leon Scroggins III588fb042017-07-14 16:32:31 -040066 WebPDemuxState state;
67 SkAutoTCallVProc<WebPDemuxer, WebPDemuxDelete> demux(WebPDemuxPartial(&webpData, &state));
68 switch (state) {
69 case WEBP_DEMUX_PARSE_ERROR:
70 *result = kInvalidInput;
71 return nullptr;
72 case WEBP_DEMUX_PARSING_HEADER:
73 *result = kIncompleteInput;
74 return nullptr;
75 case WEBP_DEMUX_PARSED_HEADER:
76 case WEBP_DEMUX_DONE:
77 SkASSERT(demux);
78 break;
scroggo6f5e6192015-06-18 12:53:43 -070079 }
80
Matt Sarett5c496172017-02-07 17:01:16 -050081 const int width = WebPDemuxGetI(demux, WEBP_FF_CANVAS_WIDTH);
82 const int height = WebPDemuxGetI(demux, WEBP_FF_CANVAS_HEIGHT);
83
84 // Sanity check for image size that's about to be decoded.
85 {
86 const int64_t size = sk_64_mul(width, height);
Matt Sarett5c496172017-02-07 17:01:16 -050087 // now check that if we are 4-bytes per pixel, we also don't overflow
Leon Scroggins III588fb042017-07-14 16:32:31 -040088 if (!sk_64_isS32(size) || sk_64_asS32(size) > (0x7FFFFFFF >> 2)) {
89 *result = kInvalidInput;
Matt Sarett5c496172017-02-07 17:01:16 -050090 return nullptr;
91 }
92 }
93
msarettff2a6c82016-09-07 11:23:28 -070094 WebPChunkIterator chunkIterator;
95 SkAutoTCallVProc<WebPChunkIterator, WebPDemuxReleaseChunkIterator> autoCI(&chunkIterator);
96 sk_sp<SkColorSpace> colorSpace = nullptr;
97 if (WebPDemuxGetChunk(demux, "ICCP", 1, &chunkIterator)) {
Brian Osman526972e2016-10-24 09:24:02 -040098 colorSpace = SkColorSpace::MakeICC(chunkIterator.chunk.bytes, chunkIterator.chunk.size);
scroggo6f5e6192015-06-18 12:53:43 -070099 }
Leon Scroggins IIIf78b55c2017-10-31 13:49:14 -0400100 if (!colorSpace || colorSpace->type() != SkColorSpace::kRGB_Type) {
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500101 colorSpace = SkColorSpace::MakeSRGB();
msarettff2a6c82016-09-07 11:23:28 -0700102 }
103
Matt Sarett5c496172017-02-07 17:01:16 -0500104 // Get the first frame and its "features" to determine the color and alpha types.
msarettff2a6c82016-09-07 11:23:28 -0700105 WebPIterator frame;
106 SkAutoTCallVProc<WebPIterator, WebPDemuxReleaseIterator> autoFrame(&frame);
107 if (!WebPDemuxGetFrame(demux, 1, &frame)) {
Leon Scroggins III588fb042017-07-14 16:32:31 -0400108 *result = kIncompleteInput;
msarettff2a6c82016-09-07 11:23:28 -0700109 return nullptr;
110 }
111
msarettff2a6c82016-09-07 11:23:28 -0700112 WebPBitstreamFeatures features;
Leon Scroggins III588fb042017-07-14 16:32:31 -0400113 switch (WebPGetFeatures(frame.fragment.bytes, frame.fragment.size, &features)) {
114 case VP8_STATUS_OK:
115 break;
116 case VP8_STATUS_SUSPENDED:
117 case VP8_STATUS_NOT_ENOUGH_DATA:
118 *result = kIncompleteInput;
119 return nullptr;
120 default:
121 *result = kInvalidInput;
122 return nullptr;
msarettff2a6c82016-09-07 11:23:28 -0700123 }
124
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400125 const bool hasAlpha = SkToBool(frame.has_alpha)
126 || frame.width != width || frame.height != height;
msarettac6c7502016-04-25 09:30:24 -0700127 SkEncodedInfo::Color color;
128 SkEncodedInfo::Alpha alpha;
129 switch (features.format) {
130 case 0:
Matt Sarett5c496172017-02-07 17:01:16 -0500131 // This indicates a "mixed" format. We could see this for
132 // animated webps (multiple fragments).
msarettac6c7502016-04-25 09:30:24 -0700133 // We could also guess kYUV here, but I think it makes more
134 // sense to guess kBGRA which is likely closer to the final
135 // output. Otherwise, we might end up converting
136 // BGRA->YUVA->BGRA.
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400137 // Fallthrough:
138 case 2:
139 // This is the lossless format (BGRA).
140 if (hasAlpha) {
141 color = SkEncodedInfo::kBGRA_Color;
142 alpha = SkEncodedInfo::kUnpremul_Alpha;
143 } else {
144 color = SkEncodedInfo::kBGRX_Color;
145 alpha = SkEncodedInfo::kOpaque_Alpha;
146 }
msarettac6c7502016-04-25 09:30:24 -0700147 break;
148 case 1:
149 // This is the lossy format (YUV).
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400150 if (hasAlpha) {
msarettac6c7502016-04-25 09:30:24 -0700151 color = SkEncodedInfo::kYUVA_Color;
msarettc30c4182016-04-20 11:53:35 -0700152 alpha = SkEncodedInfo::kUnpremul_Alpha;
msarettac6c7502016-04-25 09:30:24 -0700153 } else {
154 color = SkEncodedInfo::kYUV_Color;
155 alpha = SkEncodedInfo::kOpaque_Alpha;
156 }
157 break;
msarettac6c7502016-04-25 09:30:24 -0700158 default:
Leon Scroggins III588fb042017-07-14 16:32:31 -0400159 *result = kInvalidInput;
msarettac6c7502016-04-25 09:30:24 -0700160 return nullptr;
scroggo6f5e6192015-06-18 12:53:43 -0700161 }
scroggo6f5e6192015-06-18 12:53:43 -0700162
Leon Scroggins III588fb042017-07-14 16:32:31 -0400163 *result = kSuccess;
msarettac6c7502016-04-25 09:30:24 -0700164 SkEncodedInfo info = SkEncodedInfo::Make(color, alpha, 8);
Mike Reedede7bac2017-07-23 15:30:02 -0400165 return std::unique_ptr<SkCodec>(new SkWebpCodec(width, height, info, std::move(colorSpace),
166 std::move(stream), demux.release(), std::move(data)));
scroggo6f5e6192015-06-18 12:53:43 -0700167}
168
scroggo6f5e6192015-06-18 12:53:43 -0700169SkISize SkWebpCodec::onGetScaledDimensions(float desiredScale) const {
170 SkISize dim = this->getInfo().dimensions();
msaretta0c414d2015-06-19 07:34:30 -0700171 // SkCodec treats zero dimensional images as errors, so the minimum size
172 // that we will recommend is 1x1.
173 dim.fWidth = SkTMax(1, SkScalarRoundToInt(desiredScale * dim.fWidth));
174 dim.fHeight = SkTMax(1, SkScalarRoundToInt(desiredScale * dim.fHeight));
scroggo6f5e6192015-06-18 12:53:43 -0700175 return dim;
176}
177
scroggoe7fc14b2015-10-02 13:14:46 -0700178bool SkWebpCodec::onDimensionsSupported(const SkISize& dim) {
179 const SkImageInfo& info = this->getInfo();
180 return dim.width() >= 1 && dim.width() <= info.width()
181 && dim.height() >= 1 && dim.height() <= info.height();
182}
183
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400184static WEBP_CSP_MODE webp_decode_mode(const SkImageInfo& info) {
185 const bool premultiply = info.alphaType() == kPremul_SkAlphaType;
186 switch (info.colorType()) {
scroggo6f5e6192015-06-18 12:53:43 -0700187 case kBGRA_8888_SkColorType:
188 return premultiply ? MODE_bgrA : MODE_BGRA;
189 case kRGBA_8888_SkColorType:
190 return premultiply ? MODE_rgbA : MODE_RGBA;
scroggo74992b52015-08-06 13:50:15 -0700191 case kRGB_565_SkColorType:
192 return MODE_RGB_565;
scroggo6f5e6192015-06-18 12:53:43 -0700193 default:
194 return MODE_LAST;
195 }
196}
197
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400198SkWebpCodec::Frame* SkWebpCodec::FrameHolder::appendNewFrame(bool hasAlpha) {
199 const int i = this->size();
200 fFrames.emplace_back(i, hasAlpha);
201 return &fFrames[i];
202}
203
scroggob636b452015-07-22 07:16:20 -0700204bool SkWebpCodec::onGetValidSubset(SkIRect* desiredSubset) const {
205 if (!desiredSubset) {
206 return false;
207 }
208
msarettfdb47572015-10-13 12:50:14 -0700209 SkIRect dimensions = SkIRect::MakeSize(this->getInfo().dimensions());
210 if (!dimensions.contains(*desiredSubset)) {
scroggob636b452015-07-22 07:16:20 -0700211 return false;
212 }
213
214 // As stated below, libwebp snaps to even left and top. Make sure top and left are even, so we
215 // decode this exact subset.
216 // Leave right and bottom unmodified, so we suggest a slightly larger subset than requested.
217 desiredSubset->fLeft = (desiredSubset->fLeft >> 1) << 1;
218 desiredSubset->fTop = (desiredSubset->fTop >> 1) << 1;
219 return true;
220}
221
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400222int SkWebpCodec::onGetRepetitionCount() {
223 auto flags = WebPDemuxGetI(fDemux.get(), WEBP_FF_FORMAT_FLAGS);
224 if (!(flags & ANIMATION_FLAG)) {
225 return 0;
226 }
227
228 const int repCount = WebPDemuxGetI(fDemux.get(), WEBP_FF_LOOP_COUNT);
229 if (0 == repCount) {
230 return kRepetitionCountInfinite;
231 }
232
233 return repCount;
234}
235
236int SkWebpCodec::onGetFrameCount() {
237 auto flags = WebPDemuxGetI(fDemux.get(), WEBP_FF_FORMAT_FLAGS);
238 if (!(flags & ANIMATION_FLAG)) {
239 return 1;
240 }
241
242 const uint32_t oldFrameCount = fFrameHolder.size();
243 if (fFailed) {
244 return oldFrameCount;
245 }
246
247 const uint32_t frameCount = WebPDemuxGetI(fDemux, WEBP_FF_FRAME_COUNT);
248 if (oldFrameCount == frameCount) {
249 // We have already parsed this.
250 return frameCount;
251 }
252
253 fFrameHolder.reserve(frameCount);
254
255 for (uint32_t i = oldFrameCount; i < frameCount; i++) {
256 WebPIterator iter;
257 SkAutoTCallVProc<WebPIterator, WebPDemuxReleaseIterator> autoIter(&iter);
258
259 if (!WebPDemuxGetFrame(fDemux.get(), i + 1, &iter)) {
260 fFailed = true;
261 break;
262 }
263
264 // libwebp only reports complete frames of an animated image.
265 SkASSERT(iter.complete);
266
267 Frame* frame = fFrameHolder.appendNewFrame(iter.has_alpha);
268 frame->setXYWH(iter.x_offset, iter.y_offset, iter.width, iter.height);
269 frame->setDisposalMethod(iter.dispose_method == WEBP_MUX_DISPOSE_BACKGROUND ?
Leon Scroggins III33deb7e2017-06-07 12:31:51 -0400270 SkCodecAnimation::DisposalMethod::kRestoreBGColor :
271 SkCodecAnimation::DisposalMethod::kKeep);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400272 frame->setDuration(iter.duration);
273 if (WEBP_MUX_BLEND != iter.blend_method) {
274 frame->setBlend(SkCodecAnimation::Blend::kBG);
275 }
276 fFrameHolder.setAlphaAndRequiredFrame(frame);
277 }
278
279 return fFrameHolder.size();
280
281}
282
283const SkFrame* SkWebpCodec::FrameHolder::onGetFrame(int i) const {
284 return static_cast<const SkFrame*>(this->frame(i));
285}
286
287const SkWebpCodec::Frame* SkWebpCodec::FrameHolder::frame(int i) const {
288 SkASSERT(i >= 0 && i < this->size());
289 return &fFrames[i];
290}
291
292bool SkWebpCodec::onGetFrameInfo(int i, FrameInfo* frameInfo) const {
293 if (i >= fFrameHolder.size()) {
294 return false;
295 }
296
297 const Frame* frame = fFrameHolder.frame(i);
298 if (!frame) {
299 return false;
300 }
301
302 if (frameInfo) {
303 frameInfo->fRequiredFrame = frame->getRequiredFrame();
304 frameInfo->fDuration = frame->getDuration();
305 // libwebp only reports fully received frames for an
306 // animated image.
307 frameInfo->fFullyReceived = true;
Leon Scroggins IIIae79f322017-08-18 10:53:24 -0400308 frameInfo->fAlpha = frame->hasAlpha() ? SkEncodedInfo::kUnpremul_Alpha
309 : SkEncodedInfo::kOpaque_Alpha;
Leon Scroggins III33deb7e2017-06-07 12:31:51 -0400310 frameInfo->fDisposalMethod = frame->getDisposalMethod();
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400311 }
312
313 return true;
314}
315
316static bool is_8888(SkColorType colorType) {
317 switch (colorType) {
318 case kRGBA_8888_SkColorType:
319 case kBGRA_8888_SkColorType:
320 return true;
321 default:
322 return false;
323 }
324}
325
326static void pick_memory_stages(SkColorType ct, SkRasterPipeline::StockStage* load,
327 SkRasterPipeline::StockStage* store) {
328 switch(ct) {
329 case kUnknown_SkColorType:
330 case kAlpha_8_SkColorType:
331 case kARGB_4444_SkColorType:
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400332 case kGray_8_SkColorType:
333 SkASSERT(false);
334 break;
335 case kRGB_565_SkColorType:
336 if (load) *load = SkRasterPipeline::load_565;
337 if (store) *store = SkRasterPipeline::store_565;
338 break;
339 case kRGBA_8888_SkColorType:
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400340 if (load) *load = SkRasterPipeline::load_8888;
341 if (store) *store = SkRasterPipeline::store_8888;
342 break;
Mike Kleinc2d20762017-06-27 19:53:21 -0400343 case kBGRA_8888_SkColorType:
344 if (load) *load = SkRasterPipeline::load_bgra;
345 if (store) *store = SkRasterPipeline::store_bgra;
346 break;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400347 case kRGBA_F16_SkColorType:
348 if (load) *load = SkRasterPipeline::load_f16;
349 if (store) *store = SkRasterPipeline::store_f16;
350 break;
351 }
352}
353
354static void blend_line(SkColorType dstCT, void* dst,
Mike Klein45c16fa2017-07-18 18:15:13 -0400355 SkColorType srcCT, const void* src,
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400356 bool needsSrgbToLinear, SkAlphaType at,
357 int width) {
358 // Setup conversion from the source and dest, which will be the same.
Mike Kleinb24704d2017-05-24 07:53:00 -0400359 SkRasterPipeline_<256> convert_to_linear_premul;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400360 if (needsSrgbToLinear) {
361 convert_to_linear_premul.append_from_srgb(at);
362 }
363 if (kUnpremul_SkAlphaType == at) {
364 // srcover assumes premultiplied inputs.
365 convert_to_linear_premul.append(SkRasterPipeline::premul);
366 }
367
Mike Klein45c16fa2017-07-18 18:15:13 -0400368 SkJumper_MemoryCtx dst_ctx = { (void*)dst, 0 },
369 src_ctx = { (void*)src, 0 };
370
Mike Kleinb24704d2017-05-24 07:53:00 -0400371 SkRasterPipeline_<256> p;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400372 SkRasterPipeline::StockStage load_dst, store_dst;
373 pick_memory_stages(dstCT, &load_dst, &store_dst);
374
375 // Load the final dst.
Mike Klein45c16fa2017-07-18 18:15:13 -0400376 p.append(load_dst, &dst_ctx);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400377 p.extend(convert_to_linear_premul);
378 p.append(SkRasterPipeline::move_src_dst);
379
380 // Load the src.
381 SkRasterPipeline::StockStage load_src;
382 pick_memory_stages(srcCT, &load_src, nullptr);
Mike Klein45c16fa2017-07-18 18:15:13 -0400383 p.append(load_src, &src_ctx);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400384 p.extend(convert_to_linear_premul);
385
386 p.append(SkRasterPipeline::srcover);
387
388 // Convert back to dst.
389 if (kUnpremul_SkAlphaType == at) {
390 p.append(SkRasterPipeline::unpremul);
391 }
392 if (needsSrgbToLinear) {
393 p.append(SkRasterPipeline::to_srgb);
394 }
Mike Klein45c16fa2017-07-18 18:15:13 -0400395 p.append(store_dst, &dst_ctx);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400396
Mike Klein45c16fa2017-07-18 18:15:13 -0400397 p.run(0,0, width,1);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400398}
399
scroggoeb602a52015-07-09 08:16:03 -0700400SkCodec::Result SkWebpCodec::onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t rowBytes,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000401 const Options& options, int* rowsDecodedPtr) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400402 const int index = options.fFrameIndex;
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400403 SkASSERT(0 == index || index < fFrameHolder.size());
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400404
405 const auto& srcInfo = this->getInfo();
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400406 SkASSERT(0 == index || (!options.fSubset && dstInfo.dimensions() == srcInfo.dimensions()));
scroggo6f5e6192015-06-18 12:53:43 -0700407
408 WebPDecoderConfig config;
409 if (0 == WebPInitDecoderConfig(&config)) {
410 // ABI mismatch.
411 // FIXME: New enum for this?
412 return kInvalidInput;
413 }
414
415 // Free any memory associated with the buffer. Must be called last, so we declare it first.
416 SkAutoTCallVProc<WebPDecBuffer, WebPFreeDecBuffer> autoFree(&(config.output));
417
Matt Sarett5c496172017-02-07 17:01:16 -0500418 WebPIterator frame;
419 SkAutoTCallVProc<WebPIterator, WebPDemuxReleaseIterator> autoFrame(&frame);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400420 // If this succeeded in onGetFrameCount(), it should succeed again here.
421 SkAssertResult(WebPDemuxGetFrame(fDemux, index + 1, &frame));
Matt Sarett604971e2017-02-06 09:51:48 -0500422
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400423 const bool independent = index == 0 ? true :
424 (fFrameHolder.frame(index)->getRequiredFrame() == kNone);
Matt Sarett5c496172017-02-07 17:01:16 -0500425 // Get the frameRect. libwebp will have already signaled an error if this is not fully
426 // contained by the canvas.
427 auto frameRect = SkIRect::MakeXYWH(frame.x_offset, frame.y_offset, frame.width, frame.height);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400428 SkASSERT(srcInfo.bounds().contains(frameRect));
429 const bool frameIsSubset = frameRect != srcInfo.bounds();
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400430 if (independent && frameIsSubset) {
431 SkSampler::Fill(dstInfo, dst, rowBytes, 0, options.fZeroInitialized);
Matt Sarett604971e2017-02-06 09:51:48 -0500432 }
433
Matt Sarett5c496172017-02-07 17:01:16 -0500434 int dstX = frameRect.x();
435 int dstY = frameRect.y();
436 int subsetWidth = frameRect.width();
437 int subsetHeight = frameRect.height();
438 if (options.fSubset) {
439 SkIRect subset = *options.fSubset;
440 SkASSERT(this->getInfo().bounds().contains(subset));
441 SkASSERT(SkIsAlign2(subset.fLeft) && SkIsAlign2(subset.fTop));
442 SkASSERT(this->getValidSubset(&subset) && subset == *options.fSubset);
443
444 if (!SkIRect::IntersectsNoEmptyCheck(subset, frameRect)) {
445 return kSuccess;
446 }
447
448 int minXOffset = SkTMin(dstX, subset.x());
449 int minYOffset = SkTMin(dstY, subset.y());
450 dstX -= minXOffset;
451 dstY -= minYOffset;
452 frameRect.offset(-minXOffset, -minYOffset);
453 subset.offset(-minXOffset, -minYOffset);
454
455 // Just like we require that the requested subset x and y offset are even, libwebp
456 // guarantees that the frame x and y offset are even (it's actually impossible to specify
457 // an odd frame offset). So we can still guarantee that the adjusted offsets are even.
458 SkASSERT(SkIsAlign2(subset.fLeft) && SkIsAlign2(subset.fTop));
459
460 SkIRect intersection;
461 SkAssertResult(intersection.intersect(frameRect, subset));
462 subsetWidth = intersection.width();
463 subsetHeight = intersection.height();
464
465 config.options.use_cropping = 1;
466 config.options.crop_left = subset.x();
467 config.options.crop_top = subset.y();
468 config.options.crop_width = subsetWidth;
469 config.options.crop_height = subsetHeight;
470 }
471
472 // Ignore the frame size and offset when determining if scaling is necessary.
473 int scaledWidth = subsetWidth;
474 int scaledHeight = subsetHeight;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400475 SkISize srcSize = options.fSubset ? options.fSubset->size() : srcInfo.dimensions();
Matt Sarett5c496172017-02-07 17:01:16 -0500476 if (srcSize != dstInfo.dimensions()) {
scroggo6f5e6192015-06-18 12:53:43 -0700477 config.options.use_scaling = 1;
Matt Sarett5c496172017-02-07 17:01:16 -0500478
479 if (frameIsSubset) {
480 float scaleX = ((float) dstInfo.width()) / srcSize.width();
481 float scaleY = ((float) dstInfo.height()) / srcSize.height();
482
483 // We need to be conservative here and floor rather than round.
484 // Otherwise, we may find ourselves decoding off the end of memory.
485 dstX = scaleX * dstX;
486 scaledWidth = scaleX * scaledWidth;
487 dstY = scaleY * dstY;
488 scaledHeight = scaleY * scaledHeight;
489 if (0 == scaledWidth || 0 == scaledHeight) {
490 return kSuccess;
491 }
492 } else {
493 scaledWidth = dstInfo.width();
494 scaledHeight = dstInfo.height();
495 }
496
497 config.options.scaled_width = scaledWidth;
498 config.options.scaled_height = scaledHeight;
scroggo6f5e6192015-06-18 12:53:43 -0700499 }
500
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -0400501 const bool blendWithPrevFrame = !independent && frame.blend_method == WEBP_MUX_BLEND
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400502 && frame.has_alpha;
503 if (blendWithPrevFrame && options.fPremulBehavior == SkTransferFunctionBehavior::kRespect) {
504 // Blending is done with SkRasterPipeline, which requires a color space that is valid for
505 // rendering.
506 const auto* cs = dstInfo.colorSpace();
507 if (!cs || (!cs->gammaCloseToSRGB() && !cs->gammaIsLinear())) {
508 return kInvalidConversion;
509 }
510 }
511
512 SkBitmap webpDst;
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400513 auto webpInfo = dstInfo;
514 if (!frame.has_alpha) {
515 webpInfo = webpInfo.makeAlphaType(kOpaque_SkAlphaType);
516 }
517 if (this->colorXform()) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400518 // Swizzling between RGBA and BGRA is zero cost in a color transform. So when we have a
519 // color transform, we should decode to whatever is easiest for libwebp, and then let the
520 // color transform swizzle if necessary.
521 // Lossy webp is encoded as YUV (so RGBA and BGRA are the same cost). Lossless webp is
522 // 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 -0400523 webpInfo = webpInfo.makeColorType(kBGRA_8888_SkColorType);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400524
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400525 if (webpInfo.alphaType() == kPremul_SkAlphaType) {
526 webpInfo = webpInfo.makeAlphaType(kUnpremul_SkAlphaType);
527 }
528 }
529
530 if ((this->colorXform() && !is_8888(dstInfo.colorType())) || blendWithPrevFrame) {
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400531 // We will decode the entire image and then perform the color transform. libwebp
532 // does not provide a row-by-row API. This is a shame particularly when we do not want
533 // 8888, since we will need to create another image sized buffer.
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400534 webpDst.allocPixels(webpInfo);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400535 } else {
536 // libwebp can decode directly into the output memory.
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400537 webpDst.installPixels(webpInfo, dst, rowBytes);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400538 }
539
Leon Scroggins IIIee92f132017-05-23 15:28:46 -0400540 config.output.colorspace = webp_decode_mode(webpInfo);
scroggo6f5e6192015-06-18 12:53:43 -0700541 config.output.is_external_memory = 1;
542
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400543 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY));
544 config.output.u.RGBA.stride = static_cast<int>(webpDst.rowBytes());
Mike Reedf0ffb892017-10-03 14:47:21 -0400545 config.output.u.RGBA.size = webpDst.computeByteSize();
msarettff2a6c82016-09-07 11:23:28 -0700546
halcanary96fcdcc2015-08-27 07:41:13 -0700547 SkAutoTCallVProc<WebPIDecoder, WebPIDelete> idec(WebPIDecode(nullptr, 0, &config));
scroggo6f5e6192015-06-18 12:53:43 -0700548 if (!idec) {
549 return kInvalidInput;
550 }
551
Leon Scroggins IIIe5677462017-09-27 16:31:08 -0400552 int rowsDecoded = 0;
msarette99883f2016-09-08 06:05:35 -0700553 SkCodec::Result result;
msarettff2a6c82016-09-07 11:23:28 -0700554 switch (WebPIUpdate(idec, frame.fragment.bytes, frame.fragment.size)) {
555 case VP8_STATUS_OK:
Matt Sarett5c496172017-02-07 17:01:16 -0500556 rowsDecoded = scaledHeight;
msarette99883f2016-09-08 06:05:35 -0700557 result = kSuccess;
558 break;
msarettff2a6c82016-09-07 11:23:28 -0700559 case VP8_STATUS_SUSPENDED:
Leon Scroggins IIIe5677462017-09-27 16:31:08 -0400560 if (!WebPIDecGetRGB(idec, &rowsDecoded, nullptr, nullptr, nullptr)
561 || rowsDecoded <= 0) {
562 return kInvalidInput;
563 }
Matt Sarett5c496172017-02-07 17:01:16 -0500564 *rowsDecodedPtr = rowsDecoded + dstY;
msarette99883f2016-09-08 06:05:35 -0700565 result = kIncompleteInput;
566 break;
msarettff2a6c82016-09-07 11:23:28 -0700567 default:
568 return kInvalidInput;
scroggo6f5e6192015-06-18 12:53:43 -0700569 }
msarette99883f2016-09-08 06:05:35 -0700570
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400571 // We're only transforming the new part of the frame, so no need to worry about the
572 // final composited alpha.
573 const auto srcAlpha = 0 == index ? srcInfo.alphaType() : alpha_type(frame.has_alpha);
Leon Scroggins2009c202017-11-15 13:49:19 +0000574 const auto xformAlphaType = select_xform_alpha(dstInfo.alphaType(), srcAlpha);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400575 const bool needsSrgbToLinear = dstInfo.gammaCloseToSRGB() &&
576 options.fPremulBehavior == SkTransferFunctionBehavior::kRespect;
577
578 const size_t dstBpp = SkColorTypeBytesPerPixel(dstInfo.colorType());
579 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
580 const size_t srcRowBytes = config.output.u.RGBA.stride;
581
582 const auto dstCT = dstInfo.colorType();
Matt Sarett313c4632016-10-20 12:35:23 -0400583 if (this->colorXform()) {
Matt Sarett5c496172017-02-07 17:01:16 -0500584 uint32_t* xformSrc = (uint32_t*) config.output.u.RGBA.rgba;
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400585 SkBitmap tmp;
586 void* xformDst;
587
588 if (blendWithPrevFrame) {
589 // Xform into temporary bitmap big enough for one row.
590 tmp.allocPixels(dstInfo.makeWH(scaledWidth, 1));
591 xformDst = tmp.getPixels();
592 } else {
593 xformDst = dst;
594 }
Robert Phillipsb3050b92017-02-06 13:12:18 +0000595 for (int y = 0; y < rowsDecoded; y++) {
Leon Scroggins2009c202017-11-15 13:49:19 +0000596 this->applyColorXform(xformDst, xformSrc, scaledWidth, xformAlphaType);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400597 if (blendWithPrevFrame) {
Leon Scroggins2009c202017-11-15 13:49:19 +0000598 blend_line(dstCT, dst, dstCT, xformDst, needsSrgbToLinear, xformAlphaType,
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400599 scaledWidth);
600 dst = SkTAddOffset<void>(dst, rowBytes);
601 } else {
602 xformDst = SkTAddOffset<void>(xformDst, rowBytes);
603 }
Matt Sarett5c496172017-02-07 17:01:16 -0500604 xformSrc = SkTAddOffset<uint32_t>(xformSrc, srcRowBytes);
msarette99883f2016-09-08 06:05:35 -0700605 }
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400606 } else if (blendWithPrevFrame) {
607 const uint8_t* src = config.output.u.RGBA.rgba;
608
609 for (int y = 0; y < rowsDecoded; y++) {
Mike Klein45c16fa2017-07-18 18:15:13 -0400610 blend_line(dstCT, dst, webpDst.colorType(), src, needsSrgbToLinear,
Leon Scroggins2009c202017-11-15 13:49:19 +0000611 xformAlphaType, scaledWidth);
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400612 src = SkTAddOffset<const uint8_t>(src, srcRowBytes);
613 dst = SkTAddOffset<void>(dst, rowBytes);
614 }
msarette99883f2016-09-08 06:05:35 -0700615 }
616
617 return result;
scroggo6f5e6192015-06-18 12:53:43 -0700618}
619
msarett9d15dab2016-08-24 07:36:06 -0700620SkWebpCodec::SkWebpCodec(int width, int height, const SkEncodedInfo& info,
Mike Reedede7bac2017-07-23 15:30:02 -0400621 sk_sp<SkColorSpace> colorSpace, std::unique_ptr<SkStream> stream,
622 WebPDemuxer* demux, sk_sp<SkData> data)
623 : INHERITED(width, height, info, SkColorSpaceXform::kBGRA_8888_ColorFormat, std::move(stream),
Leon Scroggins IIIc6e6a5f2017-06-05 15:53:38 -0400624 std::move(colorSpace))
msarettff2a6c82016-09-07 11:23:28 -0700625 , fDemux(demux)
626 , fData(std::move(data))
Leon Scroggins III557fbbe2017-05-23 09:37:21 -0400627 , fFailed(false)
628{
629 fFrameHolder.setScreenSize(width, height);
630}