msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
Hal Canary | 03a7f5f | 2017-02-10 09:06:38 -0500 | [diff] [blame] | 7 | #ifndef SkGifCodec_DEFINED |
| 8 | #define SkGifCodec_DEFINED |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 9 | |
| 10 | #include "SkCodec.h" |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 11 | #include "SkCodecAnimation.h" |
msarett | ad8bcfe | 2016-03-07 07:09:03 -0800 | [diff] [blame] | 12 | #include "SkColorSpace.h" |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 13 | #include "SkColorTable.h" |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 14 | #include "SkImageInfo.h" |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 15 | #include "SkSwizzler.h" |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 16 | |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 17 | #include "SkGifImageReader.h" |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 18 | |
| 19 | /* |
| 20 | * |
| 21 | * This class implements the decoding for gif images |
| 22 | * |
| 23 | */ |
| 24 | class SkGifCodec : public SkCodec { |
| 25 | public: |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 26 | static bool IsGif(const void*, size_t); |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Assumes IsGif was called and returned true |
| 30 | * Creates a gif decoder |
| 31 | * Reads enough of the stream to determine the image format |
| 32 | */ |
| 33 | static SkCodec* NewFromStream(SkStream*); |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 34 | |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 35 | // Callback for SkGifImageReader when a row is available. |
Leon Scroggins III | 249b8e3 | 2017-04-17 12:46:33 -0400 | [diff] [blame] | 36 | bool haveDecodedRow(int frameIndex, const unsigned char* rowBegin, |
| 37 | int rowNumber, int repeatCount, bool writeTransparentPixels); |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 38 | protected: |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 39 | /* |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 40 | * Performs the full gif decode |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 41 | */ |
| 42 | Result onGetPixels(const SkImageInfo&, void*, size_t, const Options&, |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 43 | SkPMColor*, int*, int*) override; |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 44 | |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 45 | SkEncodedImageFormat onGetEncodedFormat() const override { |
| 46 | return SkEncodedImageFormat::kGIF; |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 47 | } |
| 48 | |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 49 | bool onRewind() override; |
| 50 | |
msarett | f7eb6fc | 2016-09-13 09:04:11 -0700 | [diff] [blame] | 51 | uint64_t onGetFillValue(const SkImageInfo&) const override; |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 52 | |
Leon Scroggins III | 249b8e3 | 2017-04-17 12:46:33 -0400 | [diff] [blame] | 53 | int onGetFrameCount() override; |
| 54 | bool onGetFrameInfo(int, FrameInfo*) const override; |
scroggo | e71b1a1 | 2016-11-01 08:28:28 -0700 | [diff] [blame] | 55 | int onGetRepetitionCount() override; |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 56 | |
| 57 | Result onStartIncrementalDecode(const SkImageInfo& /*dstInfo*/, void*, size_t, |
| 58 | const SkCodec::Options&, SkPMColor*, int*) override; |
| 59 | |
| 60 | Result onIncrementalDecode(int*) override; |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 61 | |
Leon Scroggins III | 1f6af6b | 2017-06-12 16:41:09 -0400 | [diff] [blame] | 62 | const SkFrameHolder* getFrameHolder() const override { |
| 63 | return fReader.get(); |
| 64 | } |
| 65 | |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 66 | private: |
| 67 | |
| 68 | /* |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 69 | * Initializes the color table that we will use for decoding. |
| 70 | * |
| 71 | * @param dstInfo Contains the requested dst color type. |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 72 | * @param frameIndex Frame whose color table to use. |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 73 | */ |
Leon Scroggins III | 249b8e3 | 2017-04-17 12:46:33 -0400 | [diff] [blame] | 74 | void initializeColorTable(const SkImageInfo& dstInfo, int frameIndex); |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 75 | |
| 76 | /* |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 77 | * Does necessary setup, including setting up the color table and swizzler, |
| 78 | * and reports color info to the client. |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 79 | */ |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 80 | Result prepareToDecode(const SkImageInfo& dstInfo, SkPMColor* inputColorPtr, |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 81 | int* inputColorCount, const Options& opts); |
| 82 | |
| 83 | /* |
| 84 | * Initializes the swizzler. |
| 85 | * |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 86 | * @param dstInfo Output image information. Dimensions may have been |
| 87 | * adjusted if the image frame size does not match the size |
| 88 | * indicated in the header. |
| 89 | * @param frameIndex Which frame we are decoding. This determines the frameRect |
| 90 | * to use. |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 91 | */ |
Leon Scroggins III | 249b8e3 | 2017-04-17 12:46:33 -0400 | [diff] [blame] | 92 | void initializeSwizzler(const SkImageInfo& dstInfo, int frameIndex); |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 93 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 94 | SkSampler* getSampler(bool createIfNecessary) override { |
| 95 | SkASSERT(fSwizzler); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 96 | return fSwizzler.get(); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 97 | } |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 98 | |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 99 | /* |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 100 | * Recursive function to decode a frame. |
msarett | 72261c0 | 2015-11-19 15:29:26 -0800 | [diff] [blame] | 101 | * |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 102 | * @param firstAttempt Whether this is the first call to decodeFrame since |
| 103 | * starting. e.g. true in onGetPixels, and true in the |
| 104 | * first call to onIncrementalDecode after calling |
| 105 | * onStartIncrementalDecode. |
| 106 | * When true, this method may have to initialize the |
| 107 | * frame, for example by filling or decoding the prior |
| 108 | * frame. |
| 109 | * @param opts Options for decoding. May be different from |
| 110 | * this->options() for decoding prior frames. Specifies |
| 111 | * the frame to decode and whether the prior frame has |
| 112 | * already been decoded to fDst. If not, and the frame |
| 113 | * is not independent, this method will recursively |
| 114 | * decode the frame it depends on. |
| 115 | * @param rowsDecoded Out-parameter to report the total number of rows |
| 116 | * that have been decoded (or at least written to, if |
| 117 | * it had to fill), including rows decoded by prior |
| 118 | * calls to onIncrementalDecode. |
| 119 | * @return kSuccess if the frame is complete, kIncompleteInput |
| 120 | * otherwise. |
msarett | 72261c0 | 2015-11-19 15:29:26 -0800 | [diff] [blame] | 121 | */ |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 122 | Result decodeFrame(bool firstAttempt, const Options& opts, int* rowsDecoded); |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 123 | |
| 124 | /* |
Matt Sarett | 61eedeb | 2016-11-04 13:19:48 -0400 | [diff] [blame] | 125 | * Swizzles and color xforms (if necessary) into dst. |
| 126 | */ |
| 127 | void applyXformRow(const SkImageInfo& dstInfo, void* dst, const uint8_t* src) const; |
| 128 | |
| 129 | /* |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 130 | * Creates an instance of the decoder |
| 131 | * Called only by NewFromStream |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 132 | * Takes ownership of the SkGifImageReader |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 133 | */ |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 134 | SkGifCodec(const SkEncodedInfo&, const SkImageInfo&, SkGifImageReader*); |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 135 | |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 136 | std::unique_ptr<SkGifImageReader> fReader; |
| 137 | std::unique_ptr<uint8_t[]> fTmpBuffer; |
| 138 | std::unique_ptr<SkSwizzler> fSwizzler; |
| 139 | sk_sp<SkColorTable> fCurrColorTable; |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 140 | // We may create a dummy table if there is not a Map in the input data. In |
| 141 | // that case, we set this value to false, and we can skip a lot of decoding |
| 142 | // work (which would not be meaningful anyway). We create a "fake"/"dummy" |
| 143 | // one in that case, so the client and the swizzler have something to draw. |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 144 | bool fCurrColorTableIsReal; |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 145 | // Whether the background was filled. |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 146 | bool fFilledBackground; |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 147 | // True on the first call to onIncrementalDecode. This value is passed to |
| 148 | // decodeFrame. |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 149 | bool fFirstCallToIncrementalDecode; |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 150 | |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 151 | void* fDst; |
| 152 | size_t fDstRowBytes; |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 153 | |
| 154 | // Updated inside haveDecodedRow when rows are decoded, unless we filled |
| 155 | // the background, in which case it is set once and left alone. |
scroggo | 3d3a65c | 2016-10-24 12:28:30 -0700 | [diff] [blame] | 156 | int fRowsDecoded; |
Matt Sarett | 61eedeb | 2016-11-04 13:19:48 -0400 | [diff] [blame] | 157 | std::unique_ptr<uint32_t[]> fXformBuffer; |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 158 | |
msarett | 8c8f22a | 2015-04-01 06:58:48 -0700 | [diff] [blame] | 159 | typedef SkCodec INHERITED; |
| 160 | }; |
Hal Canary | 03a7f5f | 2017-02-10 09:06:38 -0500 | [diff] [blame] | 161 | #endif // SkGifCodec_DEFINED |