commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010, The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "SkImageDecoder.h" |
| 18 | #include "SkImageEncoder.h" |
| 19 | #include "SkColorPriv.h" |
| 20 | #include "SkScaledBitmapSampler.h" |
| 21 | #include "SkStream.h" |
| 22 | #include "SkTemplates.h" |
| 23 | #include "SkUtils.h" |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 24 | |
| 25 | // A WebP decoder only, on top of (subset of) libwebp |
| 26 | // For more information on WebP image format, and libwebp library, see: |
| 27 | // http://code.google.com/speed/webp/ |
| 28 | // http://www.webmproject.org/code/#libwebp_webp_image_decoder_library |
| 29 | // http://review.webmproject.org/gitweb?p=libwebp.git |
| 30 | |
| 31 | #include <stdio.h> |
| 32 | extern "C" { |
| 33 | // If moving libwebp out of skia source tree, path for webp headers must be |
| 34 | // updated accordingly. Here, we enforce using local copy in webp sub-directory. |
| 35 | #include "webp/decode.h" |
| 36 | #include "webp/encode.h" |
| 37 | } |
| 38 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 39 | // this enables timing code to report milliseconds for a decode |
| 40 | //#define TIME_DECODE |
| 41 | |
| 42 | ////////////////////////////////////////////////////////////////////////// |
| 43 | ////////////////////////////////////////////////////////////////////////// |
| 44 | |
| 45 | // Define VP8 I/O on top of Skia stream |
| 46 | |
| 47 | ////////////////////////////////////////////////////////////////////////// |
| 48 | ////////////////////////////////////////////////////////////////////////// |
| 49 | |
| 50 | static const size_t WEBP_VP8_HEADER_SIZE = 64; |
| 51 | static const size_t WEBP_IDECODE_BUFFER_SZ = (1 << 16); |
| 52 | |
| 53 | // Parse headers of RIFF container, and check for valid Webp (VP8) content. |
| 54 | static bool webp_parse_header(SkStream* stream, int* width, int* height, int* alpha) { |
| 55 | unsigned char buffer[WEBP_VP8_HEADER_SIZE]; |
scroggo@google.com | 3c8730a | 2013-08-21 14:56:09 +0000 | [diff] [blame] | 56 | size_t bytesToRead = WEBP_VP8_HEADER_SIZE; |
| 57 | size_t totalBytesRead = 0; |
| 58 | do { |
| 59 | unsigned char* dst = buffer + totalBytesRead; |
| 60 | const size_t bytesRead = stream->read(dst, bytesToRead); |
| 61 | if (0 == bytesRead) { |
| 62 | // Could not read any bytes. Check to see if we are at the end (exit |
| 63 | // condition), and continue reading if not. Important for streams |
| 64 | // that do not have all the data ready. |
| 65 | continue; |
| 66 | } |
| 67 | bytesToRead -= bytesRead; |
| 68 | totalBytesRead += bytesRead; |
| 69 | SkASSERT(bytesToRead + totalBytesRead == WEBP_VP8_HEADER_SIZE); |
| 70 | } while (!stream->isAtEnd() && bytesToRead > 0); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 71 | |
| 72 | WebPBitstreamFeatures features; |
scroggo@google.com | 3c8730a | 2013-08-21 14:56:09 +0000 | [diff] [blame] | 73 | VP8StatusCode status = WebPGetFeatures(buffer, totalBytesRead, &features); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 74 | if (VP8_STATUS_OK != status) { |
| 75 | return false; // Invalid WebP file. |
| 76 | } |
| 77 | *width = features.width; |
| 78 | *height = features.height; |
| 79 | *alpha = features.has_alpha; |
| 80 | |
| 81 | // sanity check for image size that's about to be decoded. |
| 82 | { |
reed@google.com | 57212f9 | 2013-12-30 14:40:38 +0000 | [diff] [blame] | 83 | int64_t size = sk_64_mul(*width, *height); |
| 84 | if (!sk_64_isS32(size)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 85 | return false; |
| 86 | } |
| 87 | // now check that if we are 4-bytes per pixel, we also don't overflow |
reed@google.com | 57212f9 | 2013-12-30 14:40:38 +0000 | [diff] [blame] | 88 | if (sk_64_asS32(size) > (0x7FFFFFFF >> 2)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 89 | return false; |
| 90 | } |
| 91 | } |
| 92 | return true; |
| 93 | } |
| 94 | |
| 95 | class SkWEBPImageDecoder: public SkImageDecoder { |
| 96 | public: |
| 97 | SkWEBPImageDecoder() { |
| 98 | fInputStream = NULL; |
| 99 | fOrigWidth = 0; |
| 100 | fOrigHeight = 0; |
| 101 | fHasAlpha = 0; |
| 102 | } |
| 103 | virtual ~SkWEBPImageDecoder() { |
| 104 | SkSafeUnref(fInputStream); |
| 105 | } |
| 106 | |
| 107 | virtual Format getFormat() const SK_OVERRIDE { |
| 108 | return kWEBP_Format; |
| 109 | } |
| 110 | |
| 111 | protected: |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 112 | virtual bool onBuildTileIndex(SkStreamRewindable *stream, int *width, int *height) SK_OVERRIDE; |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 113 | virtual bool onDecodeSubset(SkBitmap* bitmap, const SkIRect& rect) SK_OVERRIDE; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 114 | virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode) SK_OVERRIDE; |
| 115 | |
| 116 | private: |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 117 | /** |
| 118 | * Called when determining the output config to request to webp. |
| 119 | * If the image does not have alpha, there is no need to premultiply. |
| 120 | * If the caller wants unpremultiplied colors, that is respected. |
| 121 | */ |
| 122 | bool shouldPremultiply() const { |
| 123 | return SkToBool(fHasAlpha) && !this->getRequireUnpremultipliedColors(); |
| 124 | } |
| 125 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 126 | bool setDecodeConfig(SkBitmap* decodedBitmap, int width, int height); |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 127 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 128 | SkStream* fInputStream; |
| 129 | int fOrigWidth; |
| 130 | int fOrigHeight; |
| 131 | int fHasAlpha; |
| 132 | |
| 133 | typedef SkImageDecoder INHERITED; |
| 134 | }; |
| 135 | |
| 136 | ////////////////////////////////////////////////////////////////////////// |
| 137 | |
| 138 | #ifdef TIME_DECODE |
| 139 | |
| 140 | #include "SkTime.h" |
| 141 | |
| 142 | class AutoTimeMillis { |
| 143 | public: |
| 144 | AutoTimeMillis(const char label[]) : |
| 145 | fLabel(label) { |
| 146 | if (NULL == fLabel) { |
| 147 | fLabel = ""; |
| 148 | } |
| 149 | fNow = SkTime::GetMSecs(); |
| 150 | } |
| 151 | ~AutoTimeMillis() { |
| 152 | SkDebugf("---- Time (ms): %s %d\n", fLabel, SkTime::GetMSecs() - fNow); |
| 153 | } |
| 154 | private: |
| 155 | const char* fLabel; |
| 156 | SkMSec fNow; |
| 157 | }; |
| 158 | |
| 159 | #endif |
| 160 | |
| 161 | /////////////////////////////////////////////////////////////////////////////// |
| 162 | |
| 163 | // This guy exists just to aid in debugging, as it allows debuggers to just |
| 164 | // set a break-point in one place to see all error exists. |
| 165 | static bool return_false(const SkBitmap& bm, const char msg[]) { |
| 166 | SkDEBUGF(("libwebp error %s [%d %d]", msg, bm.width(), bm.height())); |
| 167 | return false; // must always return false |
| 168 | } |
| 169 | |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 170 | static WEBP_CSP_MODE webp_decode_mode(const SkBitmap* decodedBitmap, bool premultiply) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 171 | WEBP_CSP_MODE mode = MODE_LAST; |
| 172 | SkBitmap::Config config = decodedBitmap->config(); |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 173 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 174 | if (config == SkBitmap::kARGB_8888_Config) { |
halcanary@google.com | dedd44a | 2013-12-20 16:35:22 +0000 | [diff] [blame] | 175 | #if SK_PMCOLOR_BYTE_ORDER(B,G,R,A) |
| 176 | mode = premultiply ? MODE_bgrA : MODE_BGRA; |
| 177 | #elif SK_PMCOLOR_BYTE_ORDER(R,G,B,A) |
| 178 | mode = premultiply ? MODE_rgbA : MODE_RGBA; |
| 179 | #else |
| 180 | #error "Skia uses BGRA or RGBA byte order" |
| 181 | #endif |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 182 | } else if (config == SkBitmap::kARGB_4444_Config) { |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 183 | mode = premultiply ? MODE_rgbA_4444 : MODE_RGBA_4444; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 184 | } else if (config == SkBitmap::kRGB_565_Config) { |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 185 | mode = MODE_RGB_565; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 186 | } |
| 187 | SkASSERT(MODE_LAST != mode); |
| 188 | return mode; |
| 189 | } |
| 190 | |
| 191 | // Incremental WebP image decoding. Reads input buffer of 64K size iteratively |
| 192 | // and decodes this block to appropriate color-space as per config object. |
| 193 | static bool webp_idecode(SkStream* stream, WebPDecoderConfig* config) { |
| 194 | WebPIDecoder* idec = WebPIDecode(NULL, 0, config); |
| 195 | if (NULL == idec) { |
| 196 | WebPFreeDecBuffer(&config->output); |
| 197 | return false; |
| 198 | } |
| 199 | |
scroggo@google.com | 4d213ab | 2013-08-28 13:08:54 +0000 | [diff] [blame] | 200 | if (!stream->rewind()) { |
| 201 | SkDebugf("Failed to rewind webp stream!"); |
| 202 | return false; |
| 203 | } |
scroggo@google.com | 3c8730a | 2013-08-21 14:56:09 +0000 | [diff] [blame] | 204 | const size_t readBufferSize = stream->hasLength() ? |
| 205 | SkTMin(stream->getLength(), WEBP_IDECODE_BUFFER_SZ) : WEBP_IDECODE_BUFFER_SZ; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 206 | SkAutoMalloc srcStorage(readBufferSize); |
| 207 | unsigned char* input = (uint8_t*)srcStorage.get(); |
| 208 | if (NULL == input) { |
| 209 | WebPIDelete(idec); |
| 210 | WebPFreeDecBuffer(&config->output); |
| 211 | return false; |
| 212 | } |
| 213 | |
scroggo@google.com | 80e18c9 | 2013-08-09 19:22:00 +0000 | [diff] [blame] | 214 | bool success = true; |
| 215 | VP8StatusCode status = VP8_STATUS_SUSPENDED; |
| 216 | do { |
| 217 | const size_t bytesRead = stream->read(input, readBufferSize); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 218 | if (0 == bytesRead) { |
scroggo@google.com | 80e18c9 | 2013-08-09 19:22:00 +0000 | [diff] [blame] | 219 | success = false; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 220 | break; |
| 221 | } |
| 222 | |
scroggo@google.com | 80e18c9 | 2013-08-09 19:22:00 +0000 | [diff] [blame] | 223 | status = WebPIAppend(idec, input, bytesRead); |
| 224 | if (VP8_STATUS_OK != status && VP8_STATUS_SUSPENDED != status) { |
| 225 | success = false; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 226 | break; |
| 227 | } |
scroggo@google.com | 80e18c9 | 2013-08-09 19:22:00 +0000 | [diff] [blame] | 228 | } while (VP8_STATUS_OK != status); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 229 | srcStorage.free(); |
| 230 | WebPIDelete(idec); |
| 231 | WebPFreeDecBuffer(&config->output); |
| 232 | |
scroggo@google.com | 80e18c9 | 2013-08-09 19:22:00 +0000 | [diff] [blame] | 233 | return success; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | static bool webp_get_config_resize(WebPDecoderConfig* config, |
| 237 | SkBitmap* decodedBitmap, |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 238 | int width, int height, bool premultiply) { |
| 239 | WEBP_CSP_MODE mode = webp_decode_mode(decodedBitmap, premultiply); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 240 | if (MODE_LAST == mode) { |
| 241 | return false; |
| 242 | } |
| 243 | |
| 244 | if (0 == WebPInitDecoderConfig(config)) { |
| 245 | return false; |
| 246 | } |
| 247 | |
| 248 | config->output.colorspace = mode; |
| 249 | config->output.u.RGBA.rgba = (uint8_t*)decodedBitmap->getPixels(); |
robertphillips@google.com | 8b16931 | 2013-10-15 17:47:36 +0000 | [diff] [blame] | 250 | config->output.u.RGBA.stride = (int) decodedBitmap->rowBytes(); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 251 | config->output.u.RGBA.size = decodedBitmap->getSize(); |
| 252 | config->output.is_external_memory = 1; |
| 253 | |
| 254 | if (width != decodedBitmap->width() || height != decodedBitmap->height()) { |
| 255 | config->options.use_scaling = 1; |
| 256 | config->options.scaled_width = decodedBitmap->width(); |
| 257 | config->options.scaled_height = decodedBitmap->height(); |
| 258 | } |
| 259 | |
| 260 | return true; |
| 261 | } |
| 262 | |
| 263 | static bool webp_get_config_resize_crop(WebPDecoderConfig* config, |
| 264 | SkBitmap* decodedBitmap, |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 265 | const SkIRect& region, bool premultiply) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 266 | |
| 267 | if (!webp_get_config_resize(config, decodedBitmap, region.width(), |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 268 | region.height(), premultiply)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 269 | return false; |
| 270 | } |
| 271 | |
| 272 | config->options.use_cropping = 1; |
| 273 | config->options.crop_left = region.fLeft; |
| 274 | config->options.crop_top = region.fTop; |
| 275 | config->options.crop_width = region.width(); |
| 276 | config->options.crop_height = region.height(); |
| 277 | |
| 278 | return true; |
| 279 | } |
| 280 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 281 | bool SkWEBPImageDecoder::setDecodeConfig(SkBitmap* decodedBitmap, int width, int height) { |
| 282 | SkColorType colorType = this->getPrefColorType(k32Bit_SrcDepth, SkToBool(fHasAlpha)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 283 | |
| 284 | // YUV converter supports output in RGB565, RGBA4444 and RGBA8888 formats. |
| 285 | if (fHasAlpha) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 286 | if (colorType != kARGB_4444_SkColorType) { |
| 287 | colorType = kN32_SkColorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 288 | } |
| 289 | } else { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 290 | if (colorType != kRGB_565_SkColorType && colorType != kARGB_4444_SkColorType) { |
| 291 | colorType = kN32_SkColorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 292 | } |
| 293 | } |
| 294 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 295 | if (!this->chooseFromOneChoice(colorType, width, height)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 296 | return false; |
| 297 | } |
| 298 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 299 | SkAlphaType alphaType = kOpaque_SkAlphaType; |
commit-bot@chromium.org | 915b972 | 2014-04-24 18:55:13 +0000 | [diff] [blame] | 300 | if (SkToBool(fHasAlpha)) { |
| 301 | if (this->getRequireUnpremultipliedColors()) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 302 | alphaType = kUnpremul_SkAlphaType; |
commit-bot@chromium.org | 915b972 | 2014-04-24 18:55:13 +0000 | [diff] [blame] | 303 | } else { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 304 | alphaType = kPremul_SkAlphaType; |
commit-bot@chromium.org | 915b972 | 2014-04-24 18:55:13 +0000 | [diff] [blame] | 305 | } |
commit-bot@chromium.org | 915b972 | 2014-04-24 18:55:13 +0000 | [diff] [blame] | 306 | } |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 307 | return decodedBitmap->setInfo(SkImageInfo::Make(width, height, colorType, alphaType)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 308 | } |
| 309 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 310 | bool SkWEBPImageDecoder::onBuildTileIndex(SkStreamRewindable* stream, |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 311 | int *width, int *height) { |
| 312 | int origWidth, origHeight, hasAlpha; |
| 313 | if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) { |
| 314 | return false; |
| 315 | } |
| 316 | |
scroggo@google.com | 4d213ab | 2013-08-28 13:08:54 +0000 | [diff] [blame] | 317 | if (!stream->rewind()) { |
| 318 | SkDebugf("Failed to rewind webp stream!"); |
| 319 | return false; |
| 320 | } |
| 321 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 322 | *width = origWidth; |
| 323 | *height = origHeight; |
| 324 | |
| 325 | SkRefCnt_SafeAssign(this->fInputStream, stream); |
| 326 | this->fOrigWidth = origWidth; |
| 327 | this->fOrigHeight = origHeight; |
| 328 | this->fHasAlpha = hasAlpha; |
| 329 | |
| 330 | return true; |
| 331 | } |
| 332 | |
| 333 | static bool is_config_compatible(const SkBitmap& bitmap) { |
| 334 | SkBitmap::Config config = bitmap.config(); |
| 335 | return config == SkBitmap::kARGB_4444_Config || |
| 336 | config == SkBitmap::kRGB_565_Config || |
| 337 | config == SkBitmap::kARGB_8888_Config; |
| 338 | } |
| 339 | |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 340 | bool SkWEBPImageDecoder::onDecodeSubset(SkBitmap* decodedBitmap, |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 341 | const SkIRect& region) { |
| 342 | SkIRect rect = SkIRect::MakeWH(fOrigWidth, fOrigHeight); |
| 343 | |
| 344 | if (!rect.intersect(region)) { |
| 345 | // If the requested region is entirely outsides the image, return false |
| 346 | return false; |
| 347 | } |
| 348 | |
| 349 | const int sampleSize = this->getSampleSize(); |
| 350 | SkScaledBitmapSampler sampler(rect.width(), rect.height(), sampleSize); |
| 351 | const int width = sampler.scaledWidth(); |
| 352 | const int height = sampler.scaledHeight(); |
| 353 | |
| 354 | // The image can be decoded directly to decodedBitmap if |
| 355 | // 1. the region is within the image range |
| 356 | // 2. bitmap's config is compatible |
| 357 | // 3. bitmap's size is same as the required region (after sampled) |
| 358 | bool directDecode = (rect == region) && |
| 359 | (decodedBitmap->isNull() || |
| 360 | (is_config_compatible(*decodedBitmap) && |
| 361 | (decodedBitmap->width() == width) && |
| 362 | (decodedBitmap->height() == height))); |
commit-bot@chromium.org | a9f142e | 2013-05-09 16:15:20 +0000 | [diff] [blame] | 363 | |
| 364 | SkBitmap tmpBitmap; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 365 | SkBitmap *bitmap = decodedBitmap; |
| 366 | |
| 367 | if (!directDecode) { |
commit-bot@chromium.org | a9f142e | 2013-05-09 16:15:20 +0000 | [diff] [blame] | 368 | bitmap = &tmpBitmap; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | if (bitmap->isNull()) { |
| 372 | if (!setDecodeConfig(bitmap, width, height)) { |
| 373 | return false; |
| 374 | } |
| 375 | // alloc from native heap if it is a temp bitmap. (prevent GC) |
| 376 | bool allocResult = (bitmap == decodedBitmap) |
| 377 | ? allocPixelRef(bitmap, NULL) |
| 378 | : bitmap->allocPixels(); |
| 379 | if (!allocResult) { |
| 380 | return return_false(*decodedBitmap, "allocPixelRef"); |
| 381 | } |
| 382 | } else { |
| 383 | // This is also called in setDecodeConfig in above block. |
| 384 | // i.e., when bitmap->isNull() is true. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame^] | 385 | if (!chooseFromOneChoice(bitmap->colorType(), width, height)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 386 | return false; |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | SkAutoLockPixels alp(*bitmap); |
| 391 | WebPDecoderConfig config; |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 392 | if (!webp_get_config_resize_crop(&config, bitmap, rect, |
| 393 | this->shouldPremultiply())) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 394 | return false; |
| 395 | } |
| 396 | |
| 397 | // Decode the WebP image data stream using WebP incremental decoding for |
| 398 | // the specified cropped image-region. |
| 399 | if (!webp_idecode(this->fInputStream, &config)) { |
| 400 | return false; |
| 401 | } |
| 402 | |
| 403 | if (!directDecode) { |
| 404 | cropBitmap(decodedBitmap, bitmap, sampleSize, region.x(), region.y(), |
| 405 | region.width(), region.height(), rect.x(), rect.y()); |
| 406 | } |
| 407 | return true; |
| 408 | } |
| 409 | |
| 410 | bool SkWEBPImageDecoder::onDecode(SkStream* stream, SkBitmap* decodedBitmap, |
| 411 | Mode mode) { |
| 412 | #ifdef TIME_DECODE |
| 413 | AutoTimeMillis atm("WEBP Decode"); |
| 414 | #endif |
| 415 | |
| 416 | int origWidth, origHeight, hasAlpha; |
| 417 | if (!webp_parse_header(stream, &origWidth, &origHeight, &hasAlpha)) { |
| 418 | return false; |
| 419 | } |
| 420 | this->fHasAlpha = hasAlpha; |
| 421 | |
| 422 | const int sampleSize = this->getSampleSize(); |
| 423 | SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 424 | if (!setDecodeConfig(decodedBitmap, sampler.scaledWidth(), |
| 425 | sampler.scaledHeight())) { |
| 426 | return false; |
| 427 | } |
| 428 | |
scroggo@google.com | bc69ce9 | 2013-07-09 15:45:14 +0000 | [diff] [blame] | 429 | // If only bounds are requested, done |
| 430 | if (SkImageDecoder::kDecodeBounds_Mode == mode) { |
| 431 | return true; |
| 432 | } |
| 433 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 434 | if (!this->allocPixelRef(decodedBitmap, NULL)) { |
| 435 | return return_false(*decodedBitmap, "allocPixelRef"); |
| 436 | } |
| 437 | |
| 438 | SkAutoLockPixels alp(*decodedBitmap); |
| 439 | |
| 440 | WebPDecoderConfig config; |
| 441 | if (!webp_get_config_resize(&config, decodedBitmap, origWidth, origHeight, |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 442 | this->shouldPremultiply())) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 443 | return false; |
| 444 | } |
| 445 | |
| 446 | // Decode the WebP image data stream using WebP incremental decoding. |
| 447 | return webp_idecode(stream, &config); |
| 448 | } |
| 449 | |
| 450 | /////////////////////////////////////////////////////////////////////////////// |
| 451 | |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 452 | #include "SkUnPreMultiply.h" |
| 453 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 454 | typedef void (*ScanlineImporter)(const uint8_t* in, uint8_t* out, int width, |
| 455 | const SkPMColor* SK_RESTRICT ctable); |
| 456 | |
| 457 | static void ARGB_8888_To_RGB(const uint8_t* in, uint8_t* rgb, int width, |
| 458 | const SkPMColor*) { |
| 459 | const uint32_t* SK_RESTRICT src = (const uint32_t*)in; |
| 460 | for (int i = 0; i < width; ++i) { |
| 461 | const uint32_t c = *src++; |
| 462 | rgb[0] = SkGetPackedR32(c); |
| 463 | rgb[1] = SkGetPackedG32(c); |
| 464 | rgb[2] = SkGetPackedB32(c); |
| 465 | rgb += 3; |
| 466 | } |
| 467 | } |
| 468 | |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 469 | static void ARGB_8888_To_RGBA(const uint8_t* in, uint8_t* rgb, int width, |
| 470 | const SkPMColor*) { |
| 471 | const uint32_t* SK_RESTRICT src = (const uint32_t*)in; |
| 472 | const SkUnPreMultiply::Scale* SK_RESTRICT table = |
| 473 | SkUnPreMultiply::GetScaleTable(); |
| 474 | for (int i = 0; i < width; ++i) { |
| 475 | const uint32_t c = *src++; |
| 476 | uint8_t a = SkGetPackedA32(c); |
| 477 | uint8_t r = SkGetPackedR32(c); |
| 478 | uint8_t g = SkGetPackedG32(c); |
| 479 | uint8_t b = SkGetPackedB32(c); |
| 480 | if (0 != a && 255 != a) { |
| 481 | SkUnPreMultiply::Scale scale = table[a]; |
| 482 | r = SkUnPreMultiply::ApplyScale(scale, r); |
| 483 | g = SkUnPreMultiply::ApplyScale(scale, g); |
| 484 | b = SkUnPreMultiply::ApplyScale(scale, b); |
| 485 | } |
| 486 | rgb[0] = r; |
| 487 | rgb[1] = g; |
| 488 | rgb[2] = b; |
| 489 | rgb[3] = a; |
| 490 | rgb += 4; |
| 491 | } |
| 492 | } |
| 493 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 494 | static void RGB_565_To_RGB(const uint8_t* in, uint8_t* rgb, int width, |
| 495 | const SkPMColor*) { |
| 496 | const uint16_t* SK_RESTRICT src = (const uint16_t*)in; |
| 497 | for (int i = 0; i < width; ++i) { |
| 498 | const uint16_t c = *src++; |
| 499 | rgb[0] = SkPacked16ToR32(c); |
| 500 | rgb[1] = SkPacked16ToG32(c); |
| 501 | rgb[2] = SkPacked16ToB32(c); |
| 502 | rgb += 3; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | static void ARGB_4444_To_RGB(const uint8_t* in, uint8_t* rgb, int width, |
| 507 | const SkPMColor*) { |
| 508 | const SkPMColor16* SK_RESTRICT src = (const SkPMColor16*)in; |
| 509 | for (int i = 0; i < width; ++i) { |
| 510 | const SkPMColor16 c = *src++; |
| 511 | rgb[0] = SkPacked4444ToR32(c); |
| 512 | rgb[1] = SkPacked4444ToG32(c); |
| 513 | rgb[2] = SkPacked4444ToB32(c); |
| 514 | rgb += 3; |
| 515 | } |
| 516 | } |
| 517 | |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 518 | static void ARGB_4444_To_RGBA(const uint8_t* in, uint8_t* rgb, int width, |
| 519 | const SkPMColor*) { |
| 520 | const SkPMColor16* SK_RESTRICT src = (const SkPMColor16*)in; |
| 521 | const SkUnPreMultiply::Scale* SK_RESTRICT table = |
| 522 | SkUnPreMultiply::GetScaleTable(); |
| 523 | for (int i = 0; i < width; ++i) { |
| 524 | const SkPMColor16 c = *src++; |
| 525 | uint8_t a = SkPacked4444ToA32(c); |
| 526 | uint8_t r = SkPacked4444ToR32(c); |
| 527 | uint8_t g = SkPacked4444ToG32(c); |
| 528 | uint8_t b = SkPacked4444ToB32(c); |
| 529 | if (0 != a && 255 != a) { |
| 530 | SkUnPreMultiply::Scale scale = table[a]; |
| 531 | r = SkUnPreMultiply::ApplyScale(scale, r); |
| 532 | g = SkUnPreMultiply::ApplyScale(scale, g); |
| 533 | b = SkUnPreMultiply::ApplyScale(scale, b); |
| 534 | } |
| 535 | rgb[0] = r; |
| 536 | rgb[1] = g; |
| 537 | rgb[2] = b; |
| 538 | rgb[3] = a; |
| 539 | rgb += 4; |
| 540 | } |
| 541 | } |
| 542 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 543 | static void Index8_To_RGB(const uint8_t* in, uint8_t* rgb, int width, |
| 544 | const SkPMColor* SK_RESTRICT ctable) { |
| 545 | const uint8_t* SK_RESTRICT src = (const uint8_t*)in; |
| 546 | for (int i = 0; i < width; ++i) { |
| 547 | const uint32_t c = ctable[*src++]; |
| 548 | rgb[0] = SkGetPackedR32(c); |
| 549 | rgb[1] = SkGetPackedG32(c); |
| 550 | rgb[2] = SkGetPackedB32(c); |
| 551 | rgb += 3; |
| 552 | } |
| 553 | } |
| 554 | |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 555 | static ScanlineImporter ChooseImporter(const SkBitmap::Config& config, |
| 556 | bool hasAlpha, |
| 557 | int* bpp) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 558 | switch (config) { |
| 559 | case SkBitmap::kARGB_8888_Config: |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 560 | if (hasAlpha) { |
| 561 | *bpp = 4; |
| 562 | return ARGB_8888_To_RGBA; |
| 563 | } else { |
| 564 | *bpp = 3; |
| 565 | return ARGB_8888_To_RGB; |
| 566 | } |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 567 | case SkBitmap::kARGB_4444_Config: |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 568 | if (hasAlpha) { |
| 569 | *bpp = 4; |
| 570 | return ARGB_4444_To_RGBA; |
| 571 | } else { |
| 572 | *bpp = 3; |
| 573 | return ARGB_4444_To_RGB; |
| 574 | } |
| 575 | case SkBitmap::kRGB_565_Config: |
| 576 | *bpp = 3; |
| 577 | return RGB_565_To_RGB; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 578 | case SkBitmap::kIndex8_Config: |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 579 | *bpp = 3; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 580 | return Index8_To_RGB; |
| 581 | default: |
| 582 | return NULL; |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | static int stream_writer(const uint8_t* data, size_t data_size, |
| 587 | const WebPPicture* const picture) { |
| 588 | SkWStream* const stream = (SkWStream*)picture->custom_ptr; |
| 589 | return stream->write(data, data_size) ? 1 : 0; |
| 590 | } |
| 591 | |
| 592 | class SkWEBPImageEncoder : public SkImageEncoder { |
| 593 | protected: |
| 594 | virtual bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) SK_OVERRIDE; |
| 595 | |
| 596 | private: |
| 597 | typedef SkImageEncoder INHERITED; |
| 598 | }; |
| 599 | |
| 600 | bool SkWEBPImageEncoder::onEncode(SkWStream* stream, const SkBitmap& bm, |
| 601 | int quality) { |
reed@google.com | 4469938 | 2013-10-31 17:28:30 +0000 | [diff] [blame] | 602 | const SkBitmap::Config config = bm.config(); |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 603 | const bool hasAlpha = !bm.isOpaque(); |
| 604 | int bpp = -1; |
| 605 | const ScanlineImporter scanline_import = ChooseImporter(config, hasAlpha, |
| 606 | &bpp); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 607 | if (NULL == scanline_import) { |
| 608 | return false; |
| 609 | } |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 610 | if (-1 == bpp) { |
| 611 | return false; |
| 612 | } |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 613 | |
| 614 | SkAutoLockPixels alp(bm); |
| 615 | SkAutoLockColors ctLocker; |
| 616 | if (NULL == bm.getPixels()) { |
| 617 | return false; |
| 618 | } |
| 619 | |
| 620 | WebPConfig webp_config; |
commit-bot@chromium.org | bff83f6 | 2013-03-14 15:18:08 +0000 | [diff] [blame] | 621 | if (!WebPConfigPreset(&webp_config, WEBP_PRESET_DEFAULT, (float) quality)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 622 | return false; |
| 623 | } |
| 624 | |
| 625 | WebPPicture pic; |
| 626 | WebPPictureInit(&pic); |
| 627 | pic.width = bm.width(); |
| 628 | pic.height = bm.height(); |
| 629 | pic.writer = stream_writer; |
| 630 | pic.custom_ptr = (void*)stream; |
| 631 | |
| 632 | const SkPMColor* colors = ctLocker.lockColors(bm); |
| 633 | const uint8_t* src = (uint8_t*)bm.getPixels(); |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 634 | const int rgbStride = pic.width * bpp; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 635 | |
| 636 | // Import (for each scanline) the bit-map image (in appropriate color-space) |
| 637 | // to RGB color space. |
| 638 | uint8_t* rgb = new uint8_t[rgbStride * pic.height]; |
| 639 | for (int y = 0; y < pic.height; ++y) { |
| 640 | scanline_import(src + y * bm.rowBytes(), rgb + y * rgbStride, |
| 641 | pic.width, colors); |
| 642 | } |
| 643 | |
commit-bot@chromium.org | 5007aab | 2014-02-26 21:35:17 +0000 | [diff] [blame] | 644 | bool ok; |
| 645 | if (bpp == 3) { |
| 646 | ok = SkToBool(WebPPictureImportRGB(&pic, rgb, rgbStride)); |
| 647 | } else { |
| 648 | ok = SkToBool(WebPPictureImportRGBA(&pic, rgb, rgbStride)); |
| 649 | } |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 650 | delete[] rgb; |
| 651 | |
| 652 | ok = ok && WebPEncode(&webp_config, &pic); |
| 653 | WebPPictureFree(&pic); |
| 654 | |
| 655 | return ok; |
| 656 | } |
| 657 | |
| 658 | |
| 659 | /////////////////////////////////////////////////////////////////////////////// |
| 660 | DEFINE_DECODER_CREATOR(WEBPImageDecoder); |
| 661 | DEFINE_ENCODER_CREATOR(WEBPImageEncoder); |
| 662 | /////////////////////////////////////////////////////////////////////////////// |
| 663 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 664 | static SkImageDecoder* sk_libwebp_dfactory(SkStreamRewindable* stream) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 665 | int width, height, hasAlpha; |
| 666 | if (!webp_parse_header(stream, &width, &height, &hasAlpha)) { |
| 667 | return NULL; |
| 668 | } |
| 669 | |
| 670 | // Magic matches, call decoder |
| 671 | return SkNEW(SkWEBPImageDecoder); |
| 672 | } |
| 673 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 674 | static SkImageDecoder::Format get_format_webp(SkStreamRewindable* stream) { |
scroggo@google.com | 39edf4c | 2013-04-25 17:33:51 +0000 | [diff] [blame] | 675 | int width, height, hasAlpha; |
| 676 | if (webp_parse_header(stream, &width, &height, &hasAlpha)) { |
| 677 | return SkImageDecoder::kWEBP_Format; |
| 678 | } |
| 679 | return SkImageDecoder::kUnknown_Format; |
| 680 | } |
| 681 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 682 | static SkImageEncoder* sk_libwebp_efactory(SkImageEncoder::Type t) { |
| 683 | return (SkImageEncoder::kWEBP_Type == t) ? SkNEW(SkWEBPImageEncoder) : NULL; |
| 684 | } |
| 685 | |
mtklein@google.com | bd6343b | 2013-09-04 17:20:18 +0000 | [diff] [blame] | 686 | static SkImageDecoder_DecodeReg gDReg(sk_libwebp_dfactory); |
| 687 | static SkImageDecoder_FormatReg gFormatReg(get_format_webp); |
| 688 | static SkImageEncoder_EncodeReg gEReg(sk_libwebp_efactory); |