msarett | 9bde918 | 2015-03-25 05:27: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 | */ |
| 7 | |
msarett | b46e5e2 | 2015-07-30 11:36:40 -0700 | [diff] [blame] | 8 | #include "SkBmpCodec.h" |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 9 | #include "SkCodecPriv.h" |
Cary Clark | a4083c9 | 2017-09-15 11:59:23 -0400 | [diff] [blame] | 10 | #include "SkColorData.h" |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 11 | #include "SkData.h" |
msarett | 1a46467 | 2016-01-07 13:17:19 -0800 | [diff] [blame] | 12 | #include "SkIcoCodec.h" |
msarett | be1d555 | 2016-01-21 09:05:23 -0800 | [diff] [blame] | 13 | #include "SkPngCodec.h" |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 14 | #include "SkStream.h" |
| 15 | #include "SkTDArray.h" |
| 16 | #include "SkTSort.h" |
| 17 | |
| 18 | /* |
| 19 | * Checks the start of the stream to see if the image is an Ico or Cur |
| 20 | */ |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 21 | bool SkIcoCodec::IsIco(const void* buffer, size_t bytesRead) { |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 22 | const char icoSig[] = { '\x00', '\x00', '\x01', '\x00' }; |
| 23 | const char curSig[] = { '\x00', '\x00', '\x02', '\x00' }; |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 24 | return bytesRead >= sizeof(icoSig) && |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 25 | (!memcmp(buffer, icoSig, sizeof(icoSig)) || |
| 26 | !memcmp(buffer, curSig, sizeof(curSig))); |
| 27 | } |
| 28 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 29 | std::unique_ptr<SkCodec> SkIcoCodec::MakeFromStream(std::unique_ptr<SkStream> stream, |
| 30 | Result* result) { |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 31 | // Header size constants |
Leon Scroggins III | 862c196 | 2017-10-02 16:28:49 -0400 | [diff] [blame^] | 32 | constexpr uint32_t kIcoDirectoryBytes = 6; |
| 33 | constexpr uint32_t kIcoDirEntryBytes = 16; |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 34 | |
| 35 | // Read the directory header |
Ben Wagner | 7ecc596 | 2016-11-02 17:07:33 -0400 | [diff] [blame] | 36 | std::unique_ptr<uint8_t[]> dirBuffer(new uint8_t[kIcoDirectoryBytes]); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 37 | if (stream->read(dirBuffer.get(), kIcoDirectoryBytes) != kIcoDirectoryBytes) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 38 | SkCodecPrintf("Error: unable to read ico directory header.\n"); |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 39 | *result = kIncompleteInput; |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 40 | return nullptr; |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | // Process the directory header |
| 44 | const uint16_t numImages = get_short(dirBuffer.get(), 4); |
| 45 | if (0 == numImages) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 46 | SkCodecPrintf("Error: No images embedded in ico.\n"); |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 47 | *result = kInvalidInput; |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 48 | return nullptr; |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 49 | } |
| 50 | |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 51 | // This structure is used to represent the vital information about entries |
| 52 | // in the directory header. We will obtain this information for each |
| 53 | // directory entry. |
| 54 | struct Entry { |
| 55 | uint32_t offset; |
| 56 | uint32_t size; |
| 57 | }; |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 58 | SkAutoFree dirEntryBuffer(sk_malloc_flags(sizeof(Entry) * numImages, |
| 59 | SK_MALLOC_TEMP)); |
| 60 | if (!dirEntryBuffer) { |
| 61 | SkCodecPrintf("Error: OOM allocating ICO directory for %i images.\n", |
| 62 | numImages); |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 63 | *result = kInternalError; |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 64 | return nullptr; |
| 65 | } |
| 66 | auto* directoryEntries = reinterpret_cast<Entry*>(dirEntryBuffer.get()); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 67 | |
| 68 | // Iterate over directory entries |
| 69 | for (uint32_t i = 0; i < numImages; i++) { |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 70 | uint8_t entryBuffer[kIcoDirEntryBytes]; |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 71 | if (stream->read(entryBuffer, kIcoDirEntryBytes) != kIcoDirEntryBytes) { |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 72 | SkCodecPrintf("Error: Dir entries truncated in ico.\n"); |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 73 | *result = kIncompleteInput; |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 74 | return nullptr; |
| 75 | } |
| 76 | |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 77 | // The directory entry contains information such as width, height, |
| 78 | // bits per pixel, and number of colors in the color palette. We will |
| 79 | // ignore these fields since they are repeated in the header of the |
| 80 | // embedded image. In the event of an inconsistency, we would always |
| 81 | // defer to the value in the embedded header anyway. |
| 82 | |
| 83 | // Specifies the size of the embedded image, including the header |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 84 | uint32_t size = get_int(entryBuffer, 8); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 85 | |
| 86 | // Specifies the offset of the embedded image from the start of file. |
| 87 | // It does not indicate the start of the pixel data, but rather the |
| 88 | // start of the embedded image header. |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 89 | uint32_t offset = get_int(entryBuffer, 12); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 90 | |
| 91 | // Save the vital fields |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 92 | directoryEntries[i].offset = offset; |
| 93 | directoryEntries[i].size = size; |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 96 | // Default Result, if no valid embedded codecs are found. |
| 97 | *result = kInvalidInput; |
| 98 | |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 99 | // It is "customary" that the embedded images will be stored in order of |
| 100 | // increasing offset. However, the specification does not indicate that |
| 101 | // they must be stored in this order, so we will not trust that this is the |
| 102 | // case. Here we sort the embedded images by increasing offset. |
| 103 | struct EntryLessThan { |
| 104 | bool operator() (Entry a, Entry b) const { |
| 105 | return a.offset < b.offset; |
| 106 | } |
| 107 | }; |
| 108 | EntryLessThan lessThan; |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 109 | SkTQSort(directoryEntries, &directoryEntries[numImages - 1], lessThan); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 110 | |
| 111 | // Now will construct a candidate codec for each of the embedded images |
| 112 | uint32_t bytesRead = kIcoDirectoryBytes + numImages * kIcoDirEntryBytes; |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 113 | std::unique_ptr<SkTArray<std::unique_ptr<SkCodec>, true>> codecs( |
| 114 | new (SkTArray<std::unique_ptr<SkCodec>, true>)(numImages)); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 115 | for (uint32_t i = 0; i < numImages; i++) { |
Leon Scroggins III | 005a970 | 2017-06-29 15:41:32 -0400 | [diff] [blame] | 116 | uint32_t offset = directoryEntries[i].offset; |
| 117 | uint32_t size = directoryEntries[i].size; |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 118 | |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 119 | // Ensure that the offset is valid |
| 120 | if (offset < bytesRead) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 121 | SkCodecPrintf("Warning: invalid ico offset.\n"); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 122 | continue; |
| 123 | } |
| 124 | |
| 125 | // If we cannot skip, assume we have reached the end of the stream and |
| 126 | // stop trying to make codecs |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 127 | if (stream->skip(offset - bytesRead) != offset - bytesRead) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 128 | SkCodecPrintf("Warning: could not skip to ico offset.\n"); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 129 | break; |
| 130 | } |
| 131 | bytesRead = offset; |
| 132 | |
| 133 | // Create a new stream for the embedded codec |
Leon Scroggins III | 12a4dc9 | 2017-06-05 14:06:57 -0400 | [diff] [blame] | 134 | SkAutoFree buffer(sk_malloc_flags(size, 0)); |
| 135 | if (!buffer) { |
| 136 | SkCodecPrintf("Warning: OOM trying to create embedded stream.\n"); |
| 137 | break; |
| 138 | } |
| 139 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 140 | if (stream->read(buffer.get(), size) != size) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 141 | SkCodecPrintf("Warning: could not create embedded stream.\n"); |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 142 | *result = kIncompleteInput; |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 143 | break; |
| 144 | } |
Leon Scroggins III | 12a4dc9 | 2017-06-05 14:06:57 -0400 | [diff] [blame] | 145 | |
| 146 | sk_sp<SkData> data(SkData::MakeFromMalloc(buffer.release(), size)); |
Mike Reed | 847068c | 2017-07-26 11:35:53 -0400 | [diff] [blame] | 147 | auto embeddedStream = SkMemoryStream::Make(data); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 148 | bytesRead += size; |
| 149 | |
| 150 | // Check if the embedded codec is bmp or png and create the codec |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 151 | std::unique_ptr<SkCodec> codec; |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 152 | Result dummyResult; |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 153 | if (SkPngCodec::IsPng((const char*) data->bytes(), data->size())) { |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 154 | codec = SkPngCodec::MakeFromStream(std::move(embeddedStream), &dummyResult); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 155 | } else { |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 156 | codec = SkBmpCodec::MakeFromIco(std::move(embeddedStream), &dummyResult); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | // Save a valid codec |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 160 | if (nullptr != codec) { |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 161 | codecs->push_back().reset(codec.release()); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
| 165 | // Recognize if there are no valid codecs |
| 166 | if (0 == codecs->count()) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 167 | SkCodecPrintf("Error: could not find any valid embedded ico codecs.\n"); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 168 | return nullptr; |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | // Use the largest codec as a "suggestion" for image info |
Matt Sarett | 29121eb | 2016-10-17 14:32:46 -0400 | [diff] [blame] | 172 | size_t maxSize = 0; |
| 173 | int maxIndex = 0; |
| 174 | for (int i = 0; i < codecs->count(); i++) { |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 175 | SkImageInfo info = codecs->operator[](i)->getInfo(); |
Mike Reed | 5a2e50e | 2017-10-02 13:44:11 +0000 | [diff] [blame] | 176 | size_t size = info.getSafeSize(info.minRowBytes()); |
Matt Sarett | 29121eb | 2016-10-17 14:32:46 -0400 | [diff] [blame] | 177 | |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 178 | if (size > maxSize) { |
| 179 | maxSize = size; |
| 180 | maxIndex = i; |
| 181 | } |
| 182 | } |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 183 | int width = codecs->operator[](maxIndex)->getInfo().width(); |
| 184 | int height = codecs->operator[](maxIndex)->getInfo().height(); |
| 185 | SkEncodedInfo info = codecs->operator[](maxIndex)->getEncodedInfo(); |
Matt Sarett | 7f650bd | 2016-10-30 21:25:34 -0400 | [diff] [blame] | 186 | SkColorSpace* colorSpace = codecs->operator[](maxIndex)->getInfo().colorSpace(); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 187 | |
Leon Scroggins III | 588fb04 | 2017-07-14 16:32:31 -0400 | [diff] [blame] | 188 | *result = kSuccess; |
| 189 | // The original stream is no longer needed, because the embedded codecs own their |
| 190 | // own streams. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 191 | return std::unique_ptr<SkCodec>(new SkIcoCodec(width, height, info, codecs.release(), |
| 192 | sk_ref_sp(colorSpace))); |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /* |
| 196 | * Creates an instance of the decoder |
| 197 | * Called only by NewFromStream |
| 198 | */ |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 199 | SkIcoCodec::SkIcoCodec(int width, int height, const SkEncodedInfo& info, |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 200 | SkTArray<std::unique_ptr<SkCodec>, true>* codecs, |
Matt Sarett | 7f650bd | 2016-10-30 21:25:34 -0400 | [diff] [blame] | 201 | sk_sp<SkColorSpace> colorSpace) |
Leon Scroggins III | c6e6a5f | 2017-06-05 15:53:38 -0400 | [diff] [blame] | 202 | // The source SkColorSpaceXform::ColorFormat will not be used. The embedded |
| 203 | // codec's will be used instead. |
| 204 | : INHERITED(width, height, info, SkColorSpaceXform::ColorFormat(), nullptr, |
| 205 | std::move(colorSpace)) |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 206 | , fEmbeddedCodecs(codecs) |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 207 | , fCurrCodec(nullptr) |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 208 | {} |
| 209 | |
| 210 | /* |
| 211 | * Chooses the best dimensions given the desired scale |
| 212 | */ |
Chris Blume | 66f2332 | 2017-04-19 12:40:46 -0700 | [diff] [blame] | 213 | SkISize SkIcoCodec::onGetScaledDimensions(float desiredScale) const { |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 214 | // We set the dimensions to the largest candidate image by default. |
| 215 | // Regardless of the scale request, this is the largest image that we |
| 216 | // will decode. |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 217 | int origWidth = this->getInfo().width(); |
| 218 | int origHeight = this->getInfo().height(); |
| 219 | float desiredSize = desiredScale * origWidth * origHeight; |
| 220 | // At least one image will have smaller error than this initial value |
| 221 | float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f; |
| 222 | int32_t minIndex = -1; |
| 223 | for (int32_t i = 0; i < fEmbeddedCodecs->count(); i++) { |
| 224 | int width = fEmbeddedCodecs->operator[](i)->getInfo().width(); |
| 225 | int height = fEmbeddedCodecs->operator[](i)->getInfo().height(); |
| 226 | float error = SkTAbs(((float) (width * height)) - desiredSize); |
| 227 | if (error < minError) { |
| 228 | minError = error; |
| 229 | minIndex = i; |
| 230 | } |
| 231 | } |
| 232 | SkASSERT(minIndex >= 0); |
| 233 | |
| 234 | return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions(); |
| 235 | } |
| 236 | |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 237 | int SkIcoCodec::chooseCodec(const SkISize& requestedSize, int startIndex) { |
| 238 | SkASSERT(startIndex >= 0); |
| 239 | |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 240 | // FIXME: Cache the index from onGetScaledDimensions? |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 241 | for (int i = startIndex; i < fEmbeddedCodecs->count(); i++) { |
| 242 | if (fEmbeddedCodecs->operator[](i)->getInfo().dimensions() == requestedSize) { |
| 243 | return i; |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 247 | return -1; |
| 248 | } |
| 249 | |
| 250 | bool SkIcoCodec::onDimensionsSupported(const SkISize& dim) { |
| 251 | return this->chooseCodec(dim, 0) >= 0; |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 252 | } |
| 253 | |
msarett | 9bde918 | 2015-03-25 05:27:48 -0700 | [diff] [blame] | 254 | /* |
| 255 | * Initiates the Ico decode |
| 256 | */ |
| 257 | SkCodec::Result SkIcoCodec::onGetPixels(const SkImageInfo& dstInfo, |
| 258 | void* dst, size_t dstRowBytes, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 259 | const Options& opts, |
| 260 | int* rowsDecoded) { |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 261 | if (opts.fSubset) { |
| 262 | // Subsets are not supported. |
| 263 | return kUnimplemented; |
| 264 | } |
scroggo | cc2feb1 | 2015-08-14 08:32:46 -0700 | [diff] [blame] | 265 | |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 266 | int index = 0; |
| 267 | SkCodec::Result result = kInvalidScale; |
| 268 | while (true) { |
| 269 | index = this->chooseCodec(dstInfo.dimensions(), index); |
| 270 | if (index < 0) { |
| 271 | break; |
msarett | 1603e93 | 2015-12-04 05:43:09 -0800 | [diff] [blame] | 272 | } |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 273 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 274 | SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get(); |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 275 | result = embeddedCodec->getPixels(dstInfo, dst, dstRowBytes, &opts); |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 276 | switch (result) { |
| 277 | case kSuccess: |
| 278 | case kIncompleteInput: |
| 279 | // The embedded codec will handle filling incomplete images, so we will indicate |
| 280 | // that all of the rows are initialized. |
msarett | f4004f9 | 2016-02-11 10:49:31 -0800 | [diff] [blame] | 281 | *rowsDecoded = dstInfo.height(); |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 282 | return result; |
| 283 | default: |
| 284 | // Continue trying to find a valid embedded codec on a failed decode. |
| 285 | break; |
| 286 | } |
| 287 | |
| 288 | index++; |
msarett | 1603e93 | 2015-12-04 05:43:09 -0800 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | SkCodecPrintf("Error: No matching candidate image in ico.\n"); |
| 292 | return result; |
| 293 | } |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 294 | |
| 295 | SkCodec::Result SkIcoCodec::onStartScanlineDecode(const SkImageInfo& dstInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 296 | const SkCodec::Options& options) { |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 297 | int index = 0; |
| 298 | SkCodec::Result result = kInvalidScale; |
| 299 | while (true) { |
| 300 | index = this->chooseCodec(dstInfo.dimensions(), index); |
| 301 | if (index < 0) { |
| 302 | break; |
| 303 | } |
| 304 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 305 | SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get(); |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 306 | result = embeddedCodec->startScanlineDecode(dstInfo, &options); |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 307 | if (kSuccess == result) { |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 308 | fCurrCodec = embeddedCodec; |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 309 | return result; |
| 310 | } |
| 311 | |
| 312 | index++; |
| 313 | } |
| 314 | |
| 315 | SkCodecPrintf("Error: No matching candidate image in ico.\n"); |
| 316 | return result; |
| 317 | } |
| 318 | |
| 319 | int SkIcoCodec::onGetScanlines(void* dst, int count, size_t rowBytes) { |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 320 | SkASSERT(fCurrCodec); |
| 321 | return fCurrCodec->getScanlines(dst, count, rowBytes); |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | bool SkIcoCodec::onSkipScanlines(int count) { |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 325 | SkASSERT(fCurrCodec); |
| 326 | return fCurrCodec->skipScanlines(count); |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 327 | } |
| 328 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 329 | SkCodec::Result SkIcoCodec::onStartIncrementalDecode(const SkImageInfo& dstInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 330 | void* pixels, size_t rowBytes, const SkCodec::Options& options) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 331 | int index = 0; |
| 332 | while (true) { |
| 333 | index = this->chooseCodec(dstInfo.dimensions(), index); |
| 334 | if (index < 0) { |
| 335 | break; |
| 336 | } |
| 337 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 338 | SkCodec* embeddedCodec = fEmbeddedCodecs->operator[](index).get(); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 339 | switch (embeddedCodec->startIncrementalDecode(dstInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 340 | pixels, rowBytes, &options)) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 341 | case kSuccess: |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 342 | fCurrCodec = embeddedCodec; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 343 | return kSuccess; |
| 344 | case kUnimplemented: |
| 345 | // FIXME: embeddedCodec is a BMP. If scanline decoding would work, |
| 346 | // return kUnimplemented so that SkSampledCodec will fall through |
| 347 | // to use the scanline decoder. |
| 348 | // Note that calling startScanlineDecode will require an extra |
| 349 | // rewind. The embedded codec has an SkMemoryStream, which is |
| 350 | // cheap to rewind, though it will do extra work re-reading the |
| 351 | // header. |
| 352 | // Also note that we pass nullptr for Options. This is because |
| 353 | // Options that are valid for incremental decoding may not be |
| 354 | // valid for scanline decoding. |
| 355 | // Once BMP supports incremental decoding this workaround can go |
| 356 | // away. |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 357 | if (embeddedCodec->startScanlineDecode(dstInfo) == kSuccess) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 358 | return kUnimplemented; |
| 359 | } |
| 360 | // Move on to the next embedded codec. |
| 361 | break; |
| 362 | default: |
| 363 | break; |
| 364 | } |
| 365 | |
| 366 | index++; |
| 367 | } |
| 368 | |
| 369 | SkCodecPrintf("Error: No matching candidate image in ico.\n"); |
| 370 | return kInvalidScale; |
| 371 | } |
| 372 | |
| 373 | SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) { |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 374 | SkASSERT(fCurrCodec); |
| 375 | return fCurrCodec->incrementalDecode(rowsDecoded); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 376 | } |
| 377 | |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 378 | SkCodec::SkScanlineOrder SkIcoCodec::onGetScanlineOrder() const { |
| 379 | // FIXME: This function will possibly return the wrong value if it is called |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 380 | // before startScanlineDecode()/startIncrementalDecode(). |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 381 | if (fCurrCodec) { |
| 382 | return fCurrCodec->getScanlineOrder(); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | return INHERITED::onGetScanlineOrder(); |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | SkSampler* SkIcoCodec::getSampler(bool createIfNecessary) { |
nagarajan.n | 477e9d4 | 2017-09-25 18:13:06 +0530 | [diff] [blame] | 389 | if (fCurrCodec) { |
| 390 | return fCurrCodec->getSampler(createIfNecessary); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | return nullptr; |
msarett | be8216a | 2015-12-04 08:00:50 -0800 | [diff] [blame] | 394 | } |