blob: a196e607bfeb017c8c7bca9053e7519569ef3888 [file] [log] [blame]
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001/*
2 * Copyright 2018 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 "src/codec/SkWuffsCodec.h"
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04009
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkBitmap.h"
11#include "include/core/SkMatrix.h"
12#include "include/core/SkPaint.h"
13#include "include/private/SkMalloc.h"
14#include "src/codec/SkFrameHolder.h"
15#include "src/codec/SkSampler.h"
16#include "src/codec/SkScalingCodec.h"
17#include "src/core/SkDraw.h"
18#include "src/core/SkRasterClip.h"
19#include "src/core/SkUtils.h"
Nigel Taoa6766482019-01-07 13:41:53 +110020
Ben Wagner666a9f92019-05-02 17:45:00 -040021#include <limits.h>
22
Nigel Taoa6766482019-01-07 13:41:53 +110023// Wuffs ships as a "single file C library" or "header file library" as per
24// https://github.com/nothings/stb/blob/master/docs/stb_howto.txt
25//
26// As we have not #define'd WUFFS_IMPLEMENTATION, the #include here is
27// including a header file, even though that file name ends in ".c".
Nigel Taoe66a0b22019-03-09 15:03:14 +110028#if defined(WUFFS_IMPLEMENTATION)
29#error "SkWuffsCodec should not #define WUFFS_IMPLEMENTATION"
30#endif
Nigel Taoa6766482019-01-07 13:41:53 +110031#include "wuffs-v0.2.c"
Nigel Tao477f2212019-10-09 10:07:11 +110032#if WUFFS_VERSION_BUILD_METADATA_COMMIT_COUNT < 1942
Nigel Taoa6766482019-01-07 13:41:53 +110033#error "Wuffs version is too old. Upgrade to the latest version."
34#endif
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -040035
36#define SK_WUFFS_CODEC_BUFFER_SIZE 4096
37
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -040038static bool fill_buffer(wuffs_base__io_buffer* b, SkStream* s) {
39 b->compact();
40 size_t num_read = s->read(b->data.ptr + b->meta.wi, b->data.len - b->meta.wi);
41 b->meta.wi += num_read;
42 b->meta.closed = s->isAtEnd();
43 return num_read > 0;
44}
45
46static bool seek_buffer(wuffs_base__io_buffer* b, SkStream* s, uint64_t pos) {
47 // Try to re-position the io_buffer's meta.ri read-index first, which is
48 // cheaper than seeking in the backing SkStream.
49 if ((pos >= b->meta.pos) && (pos - b->meta.pos <= b->meta.wi)) {
50 b->meta.ri = pos - b->meta.pos;
51 return true;
52 }
53 // Seek in the backing SkStream.
54 if ((pos > SIZE_MAX) || (!s->seek(pos))) {
55 return false;
56 }
57 b->meta.wi = 0;
58 b->meta.ri = 0;
59 b->meta.pos = pos;
60 b->meta.closed = false;
61 return true;
62}
63
64static SkEncodedInfo::Alpha wuffs_blend_to_skia_alpha(wuffs_base__animation_blend w) {
65 return (w == WUFFS_BASE__ANIMATION_BLEND__OPAQUE) ? SkEncodedInfo::kOpaque_Alpha
66 : SkEncodedInfo::kUnpremul_Alpha;
67}
68
69static SkCodecAnimation::Blend wuffs_blend_to_skia_blend(wuffs_base__animation_blend w) {
70 return (w == WUFFS_BASE__ANIMATION_BLEND__SRC) ? SkCodecAnimation::Blend::kBG
71 : SkCodecAnimation::Blend::kPriorFrame;
72}
73
74static SkCodecAnimation::DisposalMethod wuffs_disposal_to_skia_disposal(
75 wuffs_base__animation_disposal w) {
76 switch (w) {
77 case WUFFS_BASE__ANIMATION_DISPOSAL__RESTORE_BACKGROUND:
78 return SkCodecAnimation::DisposalMethod::kRestoreBGColor;
79 case WUFFS_BASE__ANIMATION_DISPOSAL__RESTORE_PREVIOUS:
80 return SkCodecAnimation::DisposalMethod::kRestorePrevious;
81 default:
82 return SkCodecAnimation::DisposalMethod::kKeep;
83 }
84}
85
Nigel Tao4f32a292019-11-13 15:41:55 +110086static SkAlphaType to_alpha_type(bool opaque) {
87 return opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
88}
89
Nigel Tao2777cd32019-10-29 11:10:25 +110090static SkCodec::Result reset_and_decode_image_config(wuffs_gif__decoder* decoder,
91 wuffs_base__image_config* imgcfg,
92 wuffs_base__io_buffer* b,
Nigel Tao4f32a292019-11-13 15:41:55 +110093 SkStream* s) {
94 // Calling decoder->initialize will memset it to zero.
95 const char* status = decoder->initialize(sizeof__wuffs_gif__decoder(), WUFFS_VERSION, 0);
96 if (status != nullptr) {
97 SkCodecPrintf("initialize: %s", status);
98 return SkCodec::kInternalError;
99 }
100 while (true) {
101 status = decoder->decode_image_config(imgcfg, b);
102 if (status == nullptr) {
103 break;
104 } else if (status != wuffs_base__suspension__short_read) {
105 SkCodecPrintf("decode_image_config: %s", status);
106 return SkCodec::kErrorInInput;
107 } else if (!fill_buffer(b, s)) {
108 return SkCodec::kIncompleteInput;
109 }
110 }
111
112 // A GIF image's natural color model is indexed color: 1 byte per pixel,
113 // indexing a 256-element palette.
114 //
115 // For Skia, we override that to decode to 4 bytes per pixel, BGRA or RGBA.
116 wuffs_base__pixel_format pixfmt = 0;
117 switch (kN32_SkColorType) {
118 case kBGRA_8888_SkColorType:
119 pixfmt = WUFFS_BASE__PIXEL_FORMAT__BGRA_NONPREMUL;
120 break;
121 case kRGBA_8888_SkColorType:
122 pixfmt = WUFFS_BASE__PIXEL_FORMAT__RGBA_NONPREMUL;
123 break;
124 default:
125 return SkCodec::kInternalError;
126 }
127 if (imgcfg) {
128 imgcfg->pixcfg.set(pixfmt, WUFFS_BASE__PIXEL_SUBSAMPLING__NONE, imgcfg->pixcfg.width(),
129 imgcfg->pixcfg.height());
130 }
131
132 return SkCodec::kSuccess;
133}
134
Nigel Tao2777cd32019-10-29 11:10:25 +1100135
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400136// -------------------------------- Class definitions
137
138class SkWuffsCodec;
139
140class SkWuffsFrame final : public SkFrame {
141public:
142 SkWuffsFrame(wuffs_base__frame_config* fc);
143
144 SkCodec::FrameInfo frameInfo(bool fullyReceived) const;
145 uint64_t ioPosition() const;
146
147 // SkFrame overrides.
148 SkEncodedInfo::Alpha onReportedAlpha() const override;
149
150private:
151 uint64_t fIOPosition;
152 SkEncodedInfo::Alpha fReportedAlpha;
153
154 typedef SkFrame INHERITED;
155};
156
157// SkWuffsFrameHolder is a trivial indirector that forwards its calls onto a
158// SkWuffsCodec. It is a separate class as SkWuffsCodec would otherwise
159// inherit from both SkCodec and SkFrameHolder, and Skia style discourages
160// multiple inheritance (e.g. with its "typedef Foo INHERITED" convention).
161class SkWuffsFrameHolder final : public SkFrameHolder {
162public:
163 SkWuffsFrameHolder() : INHERITED() {}
164
165 void init(SkWuffsCodec* codec, int width, int height);
166
167 // SkFrameHolder overrides.
168 const SkFrame* onGetFrame(int i) const override;
169
170private:
171 const SkWuffsCodec* fCodec;
172
173 typedef SkFrameHolder INHERITED;
174};
175
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400176class SkWuffsCodec final : public SkScalingCodec {
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400177public:
178 SkWuffsCodec(SkEncodedInfo&& encodedInfo,
179 std::unique_ptr<SkStream> stream,
180 std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)> dec,
181 std::unique_ptr<uint8_t, decltype(&sk_free)> pixbuf_ptr,
182 std::unique_ptr<uint8_t, decltype(&sk_free)> workbuf_ptr,
183 size_t workbuf_len,
184 wuffs_base__image_config imgcfg,
185 wuffs_base__pixel_buffer pixbuf,
186 wuffs_base__io_buffer iobuf);
187
188 const SkWuffsFrame* frame(int i) const;
189
190private:
Nigel Tao2777cd32019-10-29 11:10:25 +1100191 // It is valid, in terms of the SkCodec API, to call SkCodec::getFrameCount
192 // while in an incremental decode (after onStartIncrementalDecode returns
193 // and before the rest of the image is decoded). Some Skia users expect
194 // getFrameCount to increase, and the SkStream to advance, when given more
195 // data.
196 //
197 // On the other hand, while in an incremental decode, the underlying Wuffs
198 // object is suspended in a coroutine. To keep its internal proof-of-safety
199 // invariants consistent, there's only two things you can safely do with a
200 // suspended Wuffs object: resume the coroutine, or reset all state (memset
201 // to zero and start again).
202 //
203 // The Wuffs API provides a limited, optional form of seeking, to the start
204 // of an animation frame's data, but does not provide arbitrary save and
205 // load of its internal state whilst in the middle of an animation frame.
206 //
207 // SkWuffsCodec therefore uses two Wuffs decoders: a primary decoder
208 // (kIncrDecode) to support startIncrementalDecode / incrementalDecode, and
209 // a secondary decoder (kFrameCount) to support getFrameCount. The two
210 // decoders' states can change independently.
211 //
212 // As of Wuffs version 0.2, both of these decoders have the same type. A
213 // future Wuffs version might let us use a different type for kFrameCount,
214 // one that is much lighter weight (in terms of memory requirements), as it
215 // doesn't have to handle decompressing pixel data.
216 enum WhichDecoder {
217 kIncrDecode,
218 kFrameCount,
219 kNumDecoders,
220 };
221
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400222 // SkCodec overrides.
223 SkEncodedImageFormat onGetEncodedFormat() const override;
224 Result onGetPixels(const SkImageInfo&, void*, size_t, const Options&, int*) override;
225 const SkFrameHolder* getFrameHolder() const override;
226 Result onStartIncrementalDecode(const SkImageInfo& dstInfo,
227 void* dst,
228 size_t rowBytes,
229 const SkCodec::Options& options) override;
230 Result onIncrementalDecode(int* rowsDecoded) override;
231 int onGetFrameCount() override;
232 bool onGetFrameInfo(int, FrameInfo*) const override;
233 int onGetRepetitionCount() override;
234
Nigel Tao2777cd32019-10-29 11:10:25 +1100235 Result seekFrame(WhichDecoder which, int frameIndex);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400236
Nigel Tao2777cd32019-10-29 11:10:25 +1100237 void onGetFrameCountInternal();
238 Result onIncrementalDecodeInternal(int* rowsDecoded);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400239
Nigel Tao2777cd32019-10-29 11:10:25 +1100240 Result resetDecoder(WhichDecoder which);
241 const char* decodeFrameConfig(WhichDecoder which);
242 const char* decodeFrame(WhichDecoder which);
243 void updateNumFullyReceivedFrames(WhichDecoder which);
244
245 SkWuffsFrameHolder fFrameHolder;
246 std::unique_ptr<SkStream> fStream;
247 std::unique_ptr<uint8_t, decltype(&sk_free)> fPixbufPtr;
248 std::unique_ptr<uint8_t, decltype(&sk_free)> fWorkbufPtr;
249 size_t fWorkbufLen;
250
251 std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)> fDecoders[WhichDecoder::kNumDecoders];
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400252
253 const uint64_t fFirstFrameIOPosition;
Nigel Tao2777cd32019-10-29 11:10:25 +1100254 wuffs_base__frame_config fFrameConfigs[WhichDecoder::kNumDecoders];
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400255 wuffs_base__pixel_buffer fPixelBuffer;
256 wuffs_base__io_buffer fIOBuffer;
257
258 // Incremental decoding state.
Nigel Tao0185b952018-11-08 10:47:24 +1100259 uint8_t* fIncrDecDst;
Nigel Tao2777cd32019-10-29 11:10:25 +1100260 uint64_t fIncrDecReaderIOPosition;
Nigel Tao0185b952018-11-08 10:47:24 +1100261 size_t fIncrDecRowBytes;
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400262 bool fFirstCallToIncrementalDecode;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400263
Nigel Tao3876a9f2019-11-14 09:04:45 +1100264 uint64_t fFrameCountReaderIOPosition;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400265 uint64_t fNumFullyReceivedFrames;
266 std::vector<SkWuffsFrame> fFrames;
267 bool fFramesComplete;
268
Nigel Tao2777cd32019-10-29 11:10:25 +1100269 // If calling an fDecoders[which] method returns an incomplete status, then
270 // fDecoders[which] is suspended in a coroutine (i.e. waiting on I/O or
271 // halted on a non-recoverable error). To keep its internal proof-of-safety
272 // invariants consistent, there's only two things you can safely do with a
273 // suspended Wuffs object: resume the coroutine, or reset all state (memset
274 // to zero and start again).
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400275 //
Nigel Tao2777cd32019-10-29 11:10:25 +1100276 // If fDecoderIsSuspended[which], and we aren't sure that we're going to
277 // resume the coroutine, then we will need to call this->resetDecoder
278 // before calling other fDecoders[which] methods.
279 bool fDecoderIsSuspended[WhichDecoder::kNumDecoders];
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400280
281 uint8_t fBuffer[SK_WUFFS_CODEC_BUFFER_SIZE];
282
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400283 typedef SkScalingCodec INHERITED;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400284};
285
286// -------------------------------- SkWuffsFrame implementation
287
288SkWuffsFrame::SkWuffsFrame(wuffs_base__frame_config* fc)
289 : INHERITED(fc->index()),
290 fIOPosition(fc->io_position()),
291 fReportedAlpha(wuffs_blend_to_skia_alpha(fc->blend())) {
292 wuffs_base__rect_ie_u32 r = fc->bounds();
293 this->setXYWH(r.min_incl_x, r.min_incl_y, r.width(), r.height());
294 this->setDisposalMethod(wuffs_disposal_to_skia_disposal(fc->disposal()));
295 this->setDuration(fc->duration() / WUFFS_BASE__FLICKS_PER_MILLISECOND);
296 this->setBlend(wuffs_blend_to_skia_blend(fc->blend()));
297}
298
299SkCodec::FrameInfo SkWuffsFrame::frameInfo(bool fullyReceived) const {
Nigel Taoef40e332019-04-05 10:28:40 +1100300 SkCodec::FrameInfo ret;
301 ret.fRequiredFrame = getRequiredFrame();
302 ret.fDuration = getDuration();
303 ret.fFullyReceived = fullyReceived;
304 ret.fAlphaType = hasAlpha() ? kUnpremul_SkAlphaType : kOpaque_SkAlphaType;
305 ret.fDisposalMethod = getDisposalMethod();
306 return ret;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400307}
308
309uint64_t SkWuffsFrame::ioPosition() const {
310 return fIOPosition;
311}
312
313SkEncodedInfo::Alpha SkWuffsFrame::onReportedAlpha() const {
314 return fReportedAlpha;
315}
316
317// -------------------------------- SkWuffsFrameHolder implementation
318
319void SkWuffsFrameHolder::init(SkWuffsCodec* codec, int width, int height) {
320 fCodec = codec;
321 // Initialize SkFrameHolder's (the superclass) fields.
322 fScreenWidth = width;
323 fScreenHeight = height;
324}
325
326const SkFrame* SkWuffsFrameHolder::onGetFrame(int i) const {
327 return fCodec->frame(i);
328};
329
330// -------------------------------- SkWuffsCodec implementation
331
332SkWuffsCodec::SkWuffsCodec(SkEncodedInfo&& encodedInfo,
333 std::unique_ptr<SkStream> stream,
334 std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)> dec,
335 std::unique_ptr<uint8_t, decltype(&sk_free)> pixbuf_ptr,
336 std::unique_ptr<uint8_t, decltype(&sk_free)> workbuf_ptr,
337 size_t workbuf_len,
338 wuffs_base__image_config imgcfg,
339 wuffs_base__pixel_buffer pixbuf,
340 wuffs_base__io_buffer iobuf)
341 : INHERITED(std::move(encodedInfo),
342 skcms_PixelFormat_RGBA_8888,
343 // Pass a nullptr SkStream to the SkCodec constructor. We
344 // manage the stream ourselves, as the default SkCodec behavior
345 // is too trigger-happy on rewinding the stream.
346 nullptr),
Nigel Tao0185b952018-11-08 10:47:24 +1100347 fFrameHolder(),
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400348 fStream(std::move(stream)),
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400349 fPixbufPtr(std::move(pixbuf_ptr)),
350 fWorkbufPtr(std::move(workbuf_ptr)),
351 fWorkbufLen(workbuf_len),
Nigel Tao2777cd32019-10-29 11:10:25 +1100352 fDecoders{
353 std::move(dec),
354 std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)>(nullptr, sk_free),
355 },
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400356 fFirstFrameIOPosition(imgcfg.first_frame_io_position()),
Nigel Tao2777cd32019-10-29 11:10:25 +1100357 fFrameConfigs{
358 wuffs_base__null_frame_config(),
359 wuffs_base__null_frame_config(),
360 },
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400361 fPixelBuffer(pixbuf),
Nigel Tao96c10a02019-09-25 11:08:42 +1000362 fIOBuffer(wuffs_base__empty_io_buffer()),
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400363 fIncrDecDst(nullptr),
Nigel Tao2777cd32019-10-29 11:10:25 +1100364 fIncrDecReaderIOPosition(0),
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400365 fIncrDecRowBytes(0),
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400366 fFirstCallToIncrementalDecode(false),
Nigel Tao3876a9f2019-11-14 09:04:45 +1100367 fFrameCountReaderIOPosition(0),
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400368 fNumFullyReceivedFrames(0),
369 fFramesComplete(false),
Nigel Tao2777cd32019-10-29 11:10:25 +1100370 fDecoderIsSuspended{
371 false,
372 false,
373 } {
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400374 fFrameHolder.init(this, imgcfg.pixcfg.width(), imgcfg.pixcfg.height());
375
376 // Initialize fIOBuffer's fields, copying any outstanding data from iobuf to
377 // fIOBuffer, as iobuf's backing array may not be valid for the lifetime of
378 // this SkWuffsCodec object, but fIOBuffer's backing array (fBuffer) is.
379 SkASSERT(iobuf.data.len == SK_WUFFS_CODEC_BUFFER_SIZE);
380 memmove(fBuffer, iobuf.data.ptr, iobuf.meta.wi);
Nigel Tao48aa2212019-03-09 14:59:11 +1100381 fIOBuffer.data = wuffs_base__make_slice_u8(fBuffer, SK_WUFFS_CODEC_BUFFER_SIZE);
382 fIOBuffer.meta = iobuf.meta;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400383}
384
385const SkWuffsFrame* SkWuffsCodec::frame(int i) const {
386 if ((0 <= i) && (static_cast<size_t>(i) < fFrames.size())) {
387 return &fFrames[i];
388 }
389 return nullptr;
390}
391
392SkEncodedImageFormat SkWuffsCodec::onGetEncodedFormat() const {
393 return SkEncodedImageFormat::kGIF;
394}
395
396SkCodec::Result SkWuffsCodec::onGetPixels(const SkImageInfo& dstInfo,
397 void* dst,
398 size_t rowBytes,
399 const Options& options,
400 int* rowsDecoded) {
401 SkCodec::Result result = this->onStartIncrementalDecode(dstInfo, dst, rowBytes, options);
402 if (result != kSuccess) {
403 return result;
404 }
405 return this->onIncrementalDecode(rowsDecoded);
406}
407
408const SkFrameHolder* SkWuffsCodec::getFrameHolder() const {
409 return &fFrameHolder;
410}
411
412SkCodec::Result SkWuffsCodec::onStartIncrementalDecode(const SkImageInfo& dstInfo,
413 void* dst,
414 size_t rowBytes,
415 const SkCodec::Options& options) {
Nigel Tao1f1cd1f2019-06-22 17:35:38 +1000416 if (!dst) {
417 return SkCodec::kInvalidParameters;
418 }
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400419 if (options.fSubset) {
420 return SkCodec::kUnimplemented;
421 }
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400422 if (options.fFrameIndex > 0 && SkColorTypeIsAlwaysOpaque(dstInfo.colorType())) {
423 return SkCodec::kInvalidConversion;
424 }
Nigel Tao2777cd32019-10-29 11:10:25 +1100425 SkCodec::Result result = this->seekFrame(WhichDecoder::kIncrDecode, options.fFrameIndex);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400426 if (result != SkCodec::kSuccess) {
427 return result;
428 }
429
Nigel Tao2777cd32019-10-29 11:10:25 +1100430 const char* status = this->decodeFrameConfig(WhichDecoder::kIncrDecode);
Nigel Taob7a1b512019-02-10 12:19:50 +1100431 if (status == wuffs_base__suspension__short_read) {
Leon Scroggins IIIcb6b8842018-12-04 13:55:13 -0500432 return SkCodec::kIncompleteInput;
Nigel Taob7a1b512019-02-10 12:19:50 +1100433 } else if (status != nullptr) {
Leon Scroggins IIIcb6b8842018-12-04 13:55:13 -0500434 SkCodecPrintf("decodeFrameConfig: %s", status);
435 return SkCodec::kErrorInInput;
436 }
Nigel Taob7a1b512019-02-10 12:19:50 +1100437
Nigel Tao490e6472019-02-14 14:50:53 +1100438 uint32_t src_bits_per_pixel =
439 wuffs_base__pixel_format__bits_per_pixel(fPixelBuffer.pixcfg.pixel_format());
440 if ((src_bits_per_pixel == 0) || (src_bits_per_pixel % 8 != 0)) {
441 return SkCodec::kInternalError;
442 }
443 size_t src_bytes_per_pixel = src_bits_per_pixel / 8;
Nigel Taob7a1b512019-02-10 12:19:50 +1100444
445 // Zero-initialize Wuffs' buffer covering the frame rect.
Nigel Tao2777cd32019-10-29 11:10:25 +1100446 wuffs_base__rect_ie_u32 frame_rect = fFrameConfigs[WhichDecoder::kIncrDecode].bounds();
Nigel Taob7a1b512019-02-10 12:19:50 +1100447 wuffs_base__table_u8 pixels = fPixelBuffer.plane(0);
448 for (uint32_t y = frame_rect.min_incl_y; y < frame_rect.max_excl_y; y++) {
Nigel Tao490e6472019-02-14 14:50:53 +1100449 sk_bzero(pixels.ptr + (y * pixels.stride) + (frame_rect.min_incl_x * src_bytes_per_pixel),
450 frame_rect.width() * src_bytes_per_pixel);
Nigel Taob7a1b512019-02-10 12:19:50 +1100451 }
452
453 fIncrDecDst = static_cast<uint8_t*>(dst);
Nigel Tao2777cd32019-10-29 11:10:25 +1100454 fIncrDecReaderIOPosition = fIOBuffer.reader_io_position();
Nigel Taob7a1b512019-02-10 12:19:50 +1100455 fIncrDecRowBytes = rowBytes;
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400456 fFirstCallToIncrementalDecode = true;
Nigel Taob7a1b512019-02-10 12:19:50 +1100457 return SkCodec::kSuccess;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400458}
459
460SkCodec::Result SkWuffsCodec::onIncrementalDecode(int* rowsDecoded) {
461 if (!fIncrDecDst) {
462 return SkCodec::kInternalError;
463 }
464
Nigel Tao2777cd32019-10-29 11:10:25 +1100465 // If multiple SkCodec::incrementalDecode calls are made consecutively (or
466 // if SkCodec::incrementalDecode is called immediately after
467 // SkCodec::startIncrementalDecode), then this seek should be a no-op.
468 // However, it is possible to interleave SkCodec::getFrameCount calls in
469 // between SkCodec::incrementalDecode calls, and those other calls may
470 // advance the stream. This seek restores the stream to where the last
471 // SkCodec::startIncrementalDecode or SkCodec::incrementalDecode stopped.
472 if (!seek_buffer(&fIOBuffer, fStream.get(), fIncrDecReaderIOPosition)) {
473 return SkCodec::kInternalError;
474 }
475
476 SkCodec::Result result = this->onIncrementalDecodeInternal(rowsDecoded);
477 if (result == SkCodec::kSuccess) {
478 fIncrDecDst = nullptr;
479 fIncrDecReaderIOPosition = 0;
480 fIncrDecRowBytes = 0;
481 } else {
482 fIncrDecReaderIOPosition = fIOBuffer.reader_io_position();
483 }
484 return result;
485}
486
487SkCodec::Result SkWuffsCodec::onIncrementalDecodeInternal(int* rowsDecoded) {
Leon Scroggins III699d41e2019-02-07 09:25:51 -0500488 SkCodec::Result result = SkCodec::kSuccess;
Nigel Tao2777cd32019-10-29 11:10:25 +1100489 const char* status = this->decodeFrame(WhichDecoder::kIncrDecode);
490 bool independent;
491 SkAlphaType alphaType;
492 const int index = options().fFrameIndex;
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400493 if (index == 0) {
494 independent = true;
495 alphaType = to_alpha_type(getEncodedInfo().opaque());
496 } else {
497 const SkWuffsFrame* f = this->frame(index);
498 independent = f->getRequiredFrame() == SkCodec::kNoFrame;
499 alphaType = to_alpha_type(f->reportedAlpha() == SkEncodedInfo::kOpaque_Alpha);
500 }
Leon Scroggins III699d41e2019-02-07 09:25:51 -0500501 if (status != nullptr) {
502 if (status == wuffs_base__suspension__short_read) {
503 result = SkCodec::kIncompleteInput;
504 } else {
505 SkCodecPrintf("decodeFrame: %s", status);
506 result = SkCodec::kErrorInInput;
507 }
508
509 if (!independent) {
510 // For a dependent frame, we cannot blend the partial result, since
511 // that will overwrite the contribution from prior frames.
512 return result;
513 }
514 }
515
Nigel Tao490e6472019-02-14 14:50:53 +1100516 uint32_t src_bits_per_pixel =
517 wuffs_base__pixel_format__bits_per_pixel(fPixelBuffer.pixcfg.pixel_format());
518 if ((src_bits_per_pixel == 0) || (src_bits_per_pixel % 8 != 0)) {
519 return SkCodec::kInternalError;
520 }
521 size_t src_bytes_per_pixel = src_bits_per_pixel / 8;
522
Nigel Tao2777cd32019-10-29 11:10:25 +1100523 wuffs_base__rect_ie_u32 frame_rect = fFrameConfigs[WhichDecoder::kIncrDecode].bounds();
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400524 if (fFirstCallToIncrementalDecode) {
Nigel Tao490e6472019-02-14 14:50:53 +1100525 if (frame_rect.width() > (SIZE_MAX / src_bytes_per_pixel)) {
526 return SkCodec::kInternalError;
527 }
528
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400529 auto bounds = SkIRect::MakeLTRB(frame_rect.min_incl_x, frame_rect.min_incl_y,
530 frame_rect.max_excl_x, frame_rect.max_excl_y);
531
Leon Scroggins IIIcb6b8842018-12-04 13:55:13 -0500532 // If the frame rect does not fill the output, ensure that those pixels are not
Nigel Taob7a1b512019-02-10 12:19:50 +1100533 // left uninitialized.
Leon Scroggins III44076362019-02-15 13:56:44 -0500534 if (independent && (bounds != this->bounds() || result != kSuccess)) {
Nigel Tao2777cd32019-10-29 11:10:25 +1100535 SkSampler::Fill(dstInfo(), fIncrDecDst, fIncrDecRowBytes, options().fZeroInitialized);
Leon Scroggins III9b0ba2c2018-11-19 14:52:37 -0500536 }
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400537 fFirstCallToIncrementalDecode = false;
538 } else {
539 // Existing clients intend to only show frames beyond the first if they
540 // are complete (based on FrameInfo::fFullyReceived), since it might
541 // look jarring to draw a partial frame over an existing frame. If they
542 // changed their behavior and expected to continue decoding a partial
543 // frame after the first one, we'll need to update our blending code.
544 // Otherwise, if the frame were interlaced and not independent, the
545 // second pass may have an overlapping dirty_rect with the first,
546 // resulting in blending with the first pass.
547 SkASSERT(index == 0);
Nigel Tao9859ef82019-02-13 13:20:02 +1100548 }
Nigel Tao0185b952018-11-08 10:47:24 +1100549
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400550 if (rowsDecoded) {
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400551 *rowsDecoded = dstInfo().height();
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400552 }
553
Leon Scroggins IIIdad4bfc2018-12-10 12:37:10 -0500554 // If the frame's dirty rect is empty, no need to swizzle.
Nigel Tao2777cd32019-10-29 11:10:25 +1100555 wuffs_base__rect_ie_u32 dirty_rect = fDecoders[WhichDecoder::kIncrDecode]->frame_dirty_rect();
Leon Scroggins IIIdad4bfc2018-12-10 12:37:10 -0500556 if (!dirty_rect.is_empty()) {
Nigel Tao490e6472019-02-14 14:50:53 +1100557 wuffs_base__table_u8 pixels = fPixelBuffer.plane(0);
Leon Scroggins III7a3805c2018-12-07 09:21:30 -0500558
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400559 // The Wuffs model is that the dst buffer is the image, not the frame.
560 // The expectation is that you allocate the buffer once, but re-use it
561 // for the N frames, regardless of each frame's top-left co-ordinate.
562 //
563 // To get from the start (in the X-direction) of the image to the start
564 // of the dirty_rect, we adjust s by (dirty_rect.min_incl_x * src_bytes_per_pixel).
Nigel Tao2777cd32019-10-29 11:10:25 +1100565 uint8_t* s = pixels.ptr + (dirty_rect.min_incl_y * pixels.stride) +
566 (dirty_rect.min_incl_x * src_bytes_per_pixel);
Leon Scroggins III7a3805c2018-12-07 09:21:30 -0500567
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400568 // Currently, this is only used for GIF, which will never have an ICC profile. When it is
569 // used for other formats that might have one, we will need to transform from profiles that
570 // do not have corresponding SkColorSpaces.
571 SkASSERT(!getEncodedInfo().profile());
572
Nigel Tao2777cd32019-10-29 11:10:25 +1100573 auto srcInfo =
574 getInfo().makeWH(dirty_rect.width(), dirty_rect.height()).makeAlphaType(alphaType);
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400575 SkBitmap src;
576 src.installPixels(srcInfo, s, pixels.stride);
577 SkPaint paint;
578 if (independent) {
579 paint.setBlendMode(SkBlendMode::kSrc);
Leon Scroggins III7a3805c2018-12-07 09:21:30 -0500580 }
Leon Scroggins III70d8f4f2019-04-01 12:57:46 -0400581
582 SkDraw draw;
583 draw.fDst.reset(dstInfo(), fIncrDecDst, fIncrDecRowBytes);
584 SkMatrix matrix = SkMatrix::MakeRectToRect(SkRect::Make(this->dimensions()),
585 SkRect::Make(this->dstInfo().dimensions()),
586 SkMatrix::kFill_ScaleToFit);
587 draw.fMatrix = &matrix;
588 SkRasterClip rc(SkIRect::MakeSize(this->dstInfo().dimensions()));
589 draw.fRC = &rc;
590
591 SkMatrix translate = SkMatrix::MakeTrans(dirty_rect.min_incl_x, dirty_rect.min_incl_y);
592 draw.drawBitmap(src, translate, nullptr, paint);
Leon Scroggins III7a3805c2018-12-07 09:21:30 -0500593 }
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400594 return result;
595}
596
597int SkWuffsCodec::onGetFrameCount() {
Nigel Tao3876a9f2019-11-14 09:04:45 +1100598 if (!fFramesComplete && seek_buffer(&fIOBuffer, fStream.get(), fFrameCountReaderIOPosition)) {
Nigel Tao2777cd32019-10-29 11:10:25 +1100599 this->onGetFrameCountInternal();
Nigel Tao3876a9f2019-11-14 09:04:45 +1100600 fFrameCountReaderIOPosition =
601 fDecoders[WhichDecoder::kFrameCount] ? fIOBuffer.reader_io_position() : 0;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400602 }
603 return fFrames.size();
604}
605
Nigel Tao2777cd32019-10-29 11:10:25 +1100606void SkWuffsCodec::onGetFrameCountInternal() {
Nigel Tao2777cd32019-10-29 11:10:25 +1100607 if (!fDecoders[WhichDecoder::kFrameCount]) {
608 void* decoder_raw = sk_malloc_canfail(sizeof__wuffs_gif__decoder());
609 if (!decoder_raw) {
610 return;
611 }
612 std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)> decoder(
613 reinterpret_cast<wuffs_gif__decoder*>(decoder_raw), &sk_free);
Nigel Tao3876a9f2019-11-14 09:04:45 +1100614 reset_and_decode_image_config(decoder.get(), nullptr, &fIOBuffer, fStream.get());
Nigel Tao2777cd32019-10-29 11:10:25 +1100615 fDecoders[WhichDecoder::kFrameCount] = std::move(decoder);
616 }
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400617
618 // Iterate through the frames, converting from Wuffs'
619 // wuffs_base__frame_config type to Skia's SkWuffsFrame type.
Nigel Tao3876a9f2019-11-14 09:04:45 +1100620 while (true) {
Nigel Tao2777cd32019-10-29 11:10:25 +1100621 const char* status = this->decodeFrameConfig(WhichDecoder::kFrameCount);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400622 if (status == nullptr) {
623 // No-op.
624 } else if (status == wuffs_base__warning__end_of_data) {
625 break;
626 } else {
627 return;
628 }
629
Nigel Tao3876a9f2019-11-14 09:04:45 +1100630 uint64_t i = fDecoders[WhichDecoder::kFrameCount]->num_decoded_frame_configs();
631 if (i > INT_MAX) {
632 break;
633 }
634 if ((i == 0) || (static_cast<size_t>(i - 1) != fFrames.size())) {
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400635 continue;
636 }
Nigel Tao2777cd32019-10-29 11:10:25 +1100637 fFrames.emplace_back(&fFrameConfigs[WhichDecoder::kFrameCount]);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400638 SkWuffsFrame* f = &fFrames[fFrames.size() - 1];
639 fFrameHolder.setAlphaAndRequiredFrame(f);
640 }
641
642 fFramesComplete = true;
Nigel Tao5b271462019-11-12 21:02:20 +1100643
644 // We've seen the end of the animation. There'll be no more frames, so we
645 // no longer need the kFrameCount decoder. Releasing it earlier than the
646 // SkWuffsCodec destructor might help peak memory use.
647 fDecoders[WhichDecoder::kFrameCount].reset(nullptr);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400648}
649
Nigel Taocdc92382019-10-31 08:36:53 +1100650bool SkWuffsCodec::onGetFrameInfo(int i, SkCodec::FrameInfo* frameInfo) const {
651 const SkWuffsFrame* f = this->frame(i);
652 if (!f) {
653 return false;
654 }
655 if (frameInfo) {
656 *frameInfo = f->frameInfo(static_cast<uint64_t>(i) < this->fNumFullyReceivedFrames);
657 }
658 return true;
659}
660
661int SkWuffsCodec::onGetRepetitionCount() {
662 // Convert from Wuffs's loop count to Skia's repeat count. Wuffs' uint32_t
663 // number is how many times to play the loop. Skia's int number is how many
664 // times to play the loop *after the first play*. Wuffs and Skia use 0 and
665 // kRepetitionCountInfinite respectively to mean loop forever.
666 uint32_t n = fDecoders[WhichDecoder::kIncrDecode]->num_animation_loops();
667 if (n == 0) {
668 return SkCodec::kRepetitionCountInfinite;
669 }
670 n--;
671 return n < INT_MAX ? n : INT_MAX;
672}
673
Nigel Tao2777cd32019-10-29 11:10:25 +1100674SkCodec::Result SkWuffsCodec::seekFrame(WhichDecoder which, int frameIndex) {
675 if (fDecoderIsSuspended[which]) {
676 SkCodec::Result res = this->resetDecoder(which);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400677 if (res != SkCodec::kSuccess) {
678 return res;
679 }
680 }
681
682 uint64_t pos = 0;
683 if (frameIndex < 0) {
684 return SkCodec::kInternalError;
685 } else if (frameIndex == 0) {
686 pos = fFirstFrameIOPosition;
687 } else if (static_cast<size_t>(frameIndex) < fFrames.size()) {
688 pos = fFrames[frameIndex].ioPosition();
689 } else {
690 return SkCodec::kInternalError;
691 }
692
693 if (!seek_buffer(&fIOBuffer, fStream.get(), pos)) {
694 return SkCodec::kInternalError;
695 }
Nigel Tao2777cd32019-10-29 11:10:25 +1100696 const char* status =
697 fDecoders[which]->restart_frame(frameIndex, fIOBuffer.reader_io_position());
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400698 if (status != nullptr) {
699 return SkCodec::kInternalError;
700 }
701 return SkCodec::kSuccess;
702}
703
704// An overview of the Wuffs decoding API:
705//
706// An animated image (such as GIF) has an image header and then N frames. The
707// image header gives e.g. the overall image's width and height. Each frame
708// consists of a frame header (e.g. frame rectangle bounds, display duration)
709// and a payload (the pixels).
710//
711// In Wuffs terminology, there is one image config and then N pairs of
712// (frame_config, frame). To decode everything (without knowing N in advance)
713// sequentially:
714// - call wuffs_gif__decoder::decode_image_config
715// - while (true) {
716// - call wuffs_gif__decoder::decode_frame_config
717// - if that returned wuffs_base__warning__end_of_data, break
718// - call wuffs_gif__decoder::decode_frame
719// - }
720//
721// The first argument to each decode_foo method is the destination struct to
722// store the decoded information.
723//
724// For random (instead of sequential) access to an image's frames, call
725// wuffs_gif__decoder::restart_frame to prepare to decode the i'th frame.
726// Essentially, it restores the state to be at the top of the while loop above.
727// The wuffs_base__io_buffer's reader position will also need to be set at the
728// right point in the source data stream. The position for the i'th frame is
729// calculated by the i'th decode_frame_config call. You can only call
730// restart_frame after decode_image_config is called, explicitly or implicitly
731// (see below), as decoding a single frame might require for-all-frames
732// information like the overall image dimensions and the global palette.
733//
734// All of those decode_xxx calls are optional. For example, if
735// decode_image_config is not called, then the first decode_frame_config call
736// will implicitly parse and verify the image header, before parsing the first
737// frame's header. Similarly, you can call only decode_frame N times, without
738// calling decode_image_config or decode_frame_config, if you already know
739// metadata like N and each frame's rectangle bounds by some other means (e.g.
740// this is a first party, statically known image).
741//
742// Specifically, starting with an unknown (but re-windable) GIF image, if you
743// want to just find N (i.e. count the number of frames), you can loop calling
744// only the decode_frame_config method and avoid calling the more expensive
745// decode_frame method. In terms of the underlying GIF image format, this will
746// skip over the LZW-encoded pixel data, avoiding the costly LZW decompression.
747//
748// Those decode_xxx methods are also suspendible. They will return early (with
749// a status code that is_suspendible and therefore isn't is_complete) if there
750// isn't enough source data to complete the operation: an incremental decode.
751// Calling decode_xxx again with additional source data will resume the
752// previous operation, instead of starting a new operation. Calling decode_yyy
753// whilst decode_xxx is suspended will result in an error.
754//
755// Once an error is encountered, whether from invalid source data or from a
756// programming error such as calling decode_yyy while suspended in decode_xxx,
757// all subsequent calls will be no-ops that return an error. To reset the
758// decoder into something that does productive work, memset the entire struct
759// to zero, check the Wuffs version and then, in order to be able to call
760// restart_frame, call decode_image_config. The io_buffer and its associated
761// stream will also need to be rewound.
762
Nigel Tao2777cd32019-10-29 11:10:25 +1100763SkCodec::Result SkWuffsCodec::resetDecoder(WhichDecoder which) {
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400764 if (!fStream->rewind()) {
765 return SkCodec::kInternalError;
766 }
Nigel Tao96c10a02019-09-25 11:08:42 +1000767 fIOBuffer.meta = wuffs_base__empty_io_buffer_meta();
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400768
769 SkCodec::Result result =
Nigel Tao2777cd32019-10-29 11:10:25 +1100770 reset_and_decode_image_config(fDecoders[which].get(), nullptr, &fIOBuffer, fStream.get());
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400771 if (result == SkCodec::kIncompleteInput) {
772 return SkCodec::kInternalError;
773 } else if (result != SkCodec::kSuccess) {
774 return result;
775 }
776
Nigel Tao2777cd32019-10-29 11:10:25 +1100777 fDecoderIsSuspended[which] = false;
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400778 return SkCodec::kSuccess;
779}
780
Nigel Tao2777cd32019-10-29 11:10:25 +1100781const char* SkWuffsCodec::decodeFrameConfig(WhichDecoder which) {
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400782 while (true) {
Nigel Tao48aa2212019-03-09 14:59:11 +1100783 const char* status =
Nigel Tao2777cd32019-10-29 11:10:25 +1100784 fDecoders[which]->decode_frame_config(&fFrameConfigs[which], &fIOBuffer);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400785 if ((status == wuffs_base__suspension__short_read) &&
786 fill_buffer(&fIOBuffer, fStream.get())) {
787 continue;
788 }
Nigel Tao2777cd32019-10-29 11:10:25 +1100789 fDecoderIsSuspended[which] = !wuffs_base__status__is_complete(status);
790 this->updateNumFullyReceivedFrames(which);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400791 return status;
792 }
793}
794
Nigel Tao2777cd32019-10-29 11:10:25 +1100795const char* SkWuffsCodec::decodeFrame(WhichDecoder which) {
796 while (true) {
797 const char* status = fDecoders[which]->decode_frame(
798 &fPixelBuffer, &fIOBuffer, wuffs_base__make_slice_u8(fWorkbufPtr.get(), fWorkbufLen),
799 NULL);
800 if ((status == wuffs_base__suspension__short_read) &&
801 fill_buffer(&fIOBuffer, fStream.get())) {
802 continue;
803 }
804 fDecoderIsSuspended[which] = !wuffs_base__status__is_complete(status);
805 this->updateNumFullyReceivedFrames(which);
806 return status;
807 }
808}
809
810void SkWuffsCodec::updateNumFullyReceivedFrames(WhichDecoder which) {
Nigel Tao6af1edc2019-01-19 15:12:39 +1100811 // num_decoded_frames's return value, n, can change over time, both up and
812 // down, as we seek back and forth in the underlying stream.
813 // fNumFullyReceivedFrames is the highest n we've seen.
Nigel Tao2777cd32019-10-29 11:10:25 +1100814 uint64_t n = fDecoders[which]->num_decoded_frames();
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400815 if (fNumFullyReceivedFrames < n) {
816 fNumFullyReceivedFrames = n;
817 }
818}
819
820// -------------------------------- SkWuffsCodec.h functions
821
822bool SkWuffsCodec_IsFormat(const void* buf, size_t bytesRead) {
823 constexpr const char* gif_ptr = "GIF8";
824 constexpr size_t gif_len = 4;
825 return (bytesRead >= gif_len) && (memcmp(buf, gif_ptr, gif_len) == 0);
826}
827
828std::unique_ptr<SkCodec> SkWuffsCodec_MakeFromStream(std::unique_ptr<SkStream> stream,
829 SkCodec::Result* result) {
Nigel Tao48aa2212019-03-09 14:59:11 +1100830 uint8_t buffer[SK_WUFFS_CODEC_BUFFER_SIZE];
831 wuffs_base__io_buffer iobuf =
832 wuffs_base__make_io_buffer(wuffs_base__make_slice_u8(buffer, SK_WUFFS_CODEC_BUFFER_SIZE),
Nigel Tao96c10a02019-09-25 11:08:42 +1000833 wuffs_base__empty_io_buffer_meta());
Nigel Tao48aa2212019-03-09 14:59:11 +1100834 wuffs_base__image_config imgcfg = wuffs_base__null_image_config();
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400835
836 // Wuffs is primarily a C library, not a C++ one. Furthermore, outside of
837 // the wuffs_base__etc types, the sizeof a file format specific type like
838 // GIF's wuffs_gif__decoder can vary between Wuffs versions. If p is of
839 // type wuffs_gif__decoder*, then the supported API treats p as a pointer
840 // to an opaque type: a private implementation detail. The API is always
841 // "set_foo(p, etc)" and not "p->foo = etc".
842 //
843 // See https://en.wikipedia.org/wiki/Opaque_pointer#C
844 //
845 // Thus, we don't use C++'s new operator (which requires knowing the sizeof
846 // the struct at compile time). Instead, we use sk_malloc_canfail, with
847 // sizeof__wuffs_gif__decoder returning the appropriate value for the
848 // (statically or dynamically) linked version of the Wuffs library.
849 //
850 // As a C (not C++) library, none of the Wuffs types have constructors or
851 // destructors.
852 //
853 // In RAII style, we can still use std::unique_ptr with these pointers, but
854 // we pair the pointer with sk_free instead of C++'s delete.
855 void* decoder_raw = sk_malloc_canfail(sizeof__wuffs_gif__decoder());
856 if (!decoder_raw) {
857 *result = SkCodec::kInternalError;
858 return nullptr;
859 }
860 std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)> decoder(
861 reinterpret_cast<wuffs_gif__decoder*>(decoder_raw), &sk_free);
862
863 SkCodec::Result reset_result =
864 reset_and_decode_image_config(decoder.get(), &imgcfg, &iobuf, stream.get());
865 if (reset_result != SkCodec::kSuccess) {
866 *result = reset_result;
867 return nullptr;
868 }
869
870 uint32_t width = imgcfg.pixcfg.width();
871 uint32_t height = imgcfg.pixcfg.height();
872 if ((width == 0) || (width > INT_MAX) || (height == 0) || (height > INT_MAX)) {
873 *result = SkCodec::kInvalidInput;
874 return nullptr;
875 }
876
Nigel Tao6af1edc2019-01-19 15:12:39 +1100877 uint64_t workbuf_len = decoder->workbuf_len().max_incl;
Nigel Tao22e86242019-01-26 16:04:01 +1100878 void* workbuf_ptr_raw = nullptr;
879 if (workbuf_len) {
880 workbuf_ptr_raw = workbuf_len <= SIZE_MAX ? sk_malloc_canfail(workbuf_len) : nullptr;
881 if (!workbuf_ptr_raw) {
882 *result = SkCodec::kInternalError;
883 return nullptr;
884 }
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400885 }
886 std::unique_ptr<uint8_t, decltype(&sk_free)> workbuf_ptr(
887 reinterpret_cast<uint8_t*>(workbuf_ptr_raw), &sk_free);
888
889 uint64_t pixbuf_len = imgcfg.pixcfg.pixbuf_len();
890 void* pixbuf_ptr_raw = pixbuf_len <= SIZE_MAX ? sk_malloc_canfail(pixbuf_len) : nullptr;
891 if (!pixbuf_ptr_raw) {
892 *result = SkCodec::kInternalError;
893 return nullptr;
894 }
895 std::unique_ptr<uint8_t, decltype(&sk_free)> pixbuf_ptr(
896 reinterpret_cast<uint8_t*>(pixbuf_ptr_raw), &sk_free);
Nigel Tao48aa2212019-03-09 14:59:11 +1100897 wuffs_base__pixel_buffer pixbuf = wuffs_base__null_pixel_buffer();
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400898
Nigel Tao48aa2212019-03-09 14:59:11 +1100899 const char* status = pixbuf.set_from_slice(
900 &imgcfg.pixcfg, wuffs_base__make_slice_u8(pixbuf_ptr.get(), SkToSizeT(pixbuf_len)));
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400901 if (status != nullptr) {
902 SkCodecPrintf("set_from_slice: %s", status);
903 *result = SkCodec::kInternalError;
904 return nullptr;
905 }
906
Nigel Tao490e6472019-02-14 14:50:53 +1100907 SkEncodedInfo::Color color =
908 (imgcfg.pixcfg.pixel_format() == WUFFS_BASE__PIXEL_FORMAT__BGRA_NONPREMUL)
909 ? SkEncodedInfo::kBGRA_Color
910 : SkEncodedInfo::kRGBA_Color;
911
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400912 // In Skia's API, the alpha we calculate here and return is only for the
913 // first frame.
914 SkEncodedInfo::Alpha alpha = imgcfg.first_frame_is_opaque() ? SkEncodedInfo::kOpaque_Alpha
915 : SkEncodedInfo::kBinary_Alpha;
916
Nigel Tao490e6472019-02-14 14:50:53 +1100917 SkEncodedInfo encodedInfo = SkEncodedInfo::Make(width, height, color, alpha, 8);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400918
919 *result = SkCodec::kSuccess;
920 return std::unique_ptr<SkCodec>(new SkWuffsCodec(
921 std::move(encodedInfo), std::move(stream), std::move(decoder), std::move(pixbuf_ptr),
922 std::move(workbuf_ptr), workbuf_len, imgcfg, pixbuf, iobuf));
923}