scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [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 | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 8 | #include "SkCodecPriv.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 9 | #include "SkColorPriv.h" |
| 10 | #include "SkColorTable.h" |
| 11 | #include "SkBitmap.h" |
| 12 | #include "SkMath.h" |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 13 | #include "SkOpts.h" |
msarett | be1d555 | 2016-01-21 09:05:23 -0800 | [diff] [blame] | 14 | #include "SkPngCodec.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 15 | #include "SkSize.h" |
| 16 | #include "SkStream.h" |
| 17 | #include "SkSwizzler.h" |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 18 | #include "SkTemplates.h" |
bungeman | 5d2cd6e | 2016-02-23 07:34:25 -0800 | [diff] [blame] | 19 | #include "SkUtils.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 20 | |
| 21 | /////////////////////////////////////////////////////////////////////////////// |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 22 | // Callback functions |
| 23 | /////////////////////////////////////////////////////////////////////////////// |
| 24 | |
| 25 | static void sk_error_fn(png_structp png_ptr, png_const_charp msg) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 26 | SkCodecPrintf("------ png error %s\n", msg); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 27 | longjmp(png_jmpbuf(png_ptr), 1); |
| 28 | } |
| 29 | |
scroggo | 0eed6df | 2015-03-26 10:07:56 -0700 | [diff] [blame] | 30 | void sk_warning_fn(png_structp, png_const_charp msg) { |
| 31 | SkCodecPrintf("----- png warning %s\n", msg); |
| 32 | } |
| 33 | |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 34 | static void sk_read_fn(png_structp png_ptr, png_bytep data, |
| 35 | png_size_t length) { |
| 36 | SkStream* stream = static_cast<SkStream*>(png_get_io_ptr(png_ptr)); |
| 37 | const size_t bytes = stream->read(data, length); |
| 38 | if (bytes != length) { |
| 39 | // FIXME: We want to report the fact that the stream was truncated. |
| 40 | // One way to do that might be to pass a enum to longjmp so setjmp can |
| 41 | // specify the failure. |
| 42 | png_error(png_ptr, "Read Error!"); |
| 43 | } |
| 44 | } |
| 45 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 46 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
| 47 | static int sk_read_user_chunk(png_structp png_ptr, png_unknown_chunkp chunk) { |
| 48 | SkPngChunkReader* chunkReader = (SkPngChunkReader*)png_get_user_chunk_ptr(png_ptr); |
| 49 | // readChunk() returning true means continue decoding |
| 50 | return chunkReader->readChunk((const char*)chunk->name, chunk->data, chunk->size) ? 1 : -1; |
| 51 | } |
| 52 | #endif |
| 53 | |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 54 | /////////////////////////////////////////////////////////////////////////////// |
| 55 | // Helpers |
| 56 | /////////////////////////////////////////////////////////////////////////////// |
| 57 | |
| 58 | class AutoCleanPng : public SkNoncopyable { |
| 59 | public: |
| 60 | AutoCleanPng(png_structp png_ptr) |
| 61 | : fPng_ptr(png_ptr) |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 62 | , fInfo_ptr(nullptr) {} |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 63 | |
| 64 | ~AutoCleanPng() { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 65 | // fInfo_ptr will never be non-nullptr unless fPng_ptr is. |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 66 | if (fPng_ptr) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 67 | png_infopp info_pp = fInfo_ptr ? &fInfo_ptr : nullptr; |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 68 | png_destroy_read_struct(&fPng_ptr, info_pp, nullptr); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 69 | } |
| 70 | } |
| 71 | |
| 72 | void setInfoPtr(png_infop info_ptr) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 73 | SkASSERT(nullptr == fInfo_ptr); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 74 | fInfo_ptr = info_ptr; |
| 75 | } |
| 76 | |
| 77 | void detach() { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 78 | fPng_ptr = nullptr; |
| 79 | fInfo_ptr = nullptr; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | private: |
| 83 | png_structp fPng_ptr; |
| 84 | png_infop fInfo_ptr; |
| 85 | }; |
| 86 | #define AutoCleanPng(...) SK_REQUIRE_LOCAL_VAR(AutoCleanPng) |
| 87 | |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 88 | // Method for coverting to either an SkPMColor or a similarly packed |
| 89 | // unpremultiplied color. |
| 90 | typedef uint32_t (*PackColorProc)(U8CPU a, U8CPU r, U8CPU g, U8CPU b); |
| 91 | |
| 92 | // Note: SkColorTable claims to store SkPMColors, which is not necessarily |
| 93 | // the case here. |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 94 | // TODO: If we add support for non-native swizzles, we'll need to handle that here. |
scroggo | 9b2cdbf | 2015-07-10 12:07:02 -0700 | [diff] [blame] | 95 | bool SkPngCodec::decodePalette(bool premultiply, int* ctableCount) { |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 96 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 97 | int numColors; |
| 98 | png_color* palette; |
| 99 | if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) { |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 100 | return false; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 101 | } |
| 102 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 103 | // Note: These are not necessarily SkPMColors. |
| 104 | SkPMColor colorPtr[256]; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 105 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 106 | png_bytep alphas; |
| 107 | int numColorsWithAlpha = 0; |
| 108 | if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) { |
| 109 | // Choose which function to use to create the color table. If the final destination's |
| 110 | // colortype is unpremultiplied, the color table will store unpremultiplied colors. |
| 111 | PackColorProc proc; |
| 112 | if (premultiply) { |
| 113 | proc = &SkPremultiplyARGBInline; |
| 114 | } else { |
| 115 | proc = &SkPackARGB32NoCheck; |
| 116 | } |
| 117 | |
| 118 | for (int i = 0; i < numColorsWithAlpha; i++) { |
| 119 | // We don't have a function in SkOpts that combines a set of alphas with a set |
| 120 | // of RGBs. We could write one, but it's hardly worth it, given that this |
| 121 | // is such a small fraction of the total decode time. |
| 122 | colorPtr[i] = proc(alphas[i], palette->red, palette->green, palette->blue); |
| 123 | palette++; |
| 124 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 125 | } |
| 126 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 127 | if (numColorsWithAlpha < numColors) { |
| 128 | // The optimized code depends on a 3-byte png_color struct with the colors |
| 129 | // in RGB order. These checks make sure it is safe to use. |
| 130 | static_assert(3 == sizeof(png_color), "png_color struct has changed. Opts are broken."); |
| 131 | #ifdef SK_DEBUG |
| 132 | SkASSERT(&palette->red < &palette->green); |
| 133 | SkASSERT(&palette->green < &palette->blue); |
| 134 | #endif |
| 135 | |
| 136 | #ifdef SK_PMCOLOR_IS_RGBA |
| 137 | SkOpts::RGB_to_RGB1(colorPtr + numColorsWithAlpha, palette, numColors - numColorsWithAlpha); |
| 138 | #else |
| 139 | SkOpts::RGB_to_BGR1(colorPtr + numColorsWithAlpha, palette, numColors - numColorsWithAlpha); |
| 140 | #endif |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 141 | } |
| 142 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 143 | // Pad the color table with the last color in the table (or black) in the case that |
| 144 | // invalid pixel indices exceed the number of colors in the table. |
| 145 | const int maxColors = 1 << fBitDepth; |
| 146 | if (numColors < maxColors) { |
| 147 | SkPMColor lastColor = numColors > 0 ? colorPtr[numColors - 1] : SK_ColorBLACK; |
| 148 | sk_memset32(colorPtr + numColors, lastColor, maxColors - numColors); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 149 | } |
| 150 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 151 | // Set the new color count. |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 152 | if (ctableCount != nullptr) { |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 153 | *ctableCount = maxColors; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 154 | } |
| 155 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 156 | fColorTable.reset(new SkColorTable(colorPtr, maxColors)); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 157 | return true; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | /////////////////////////////////////////////////////////////////////////////// |
| 161 | // Creation |
| 162 | /////////////////////////////////////////////////////////////////////////////// |
| 163 | |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 164 | bool SkPngCodec::IsPng(const char* buf, size_t bytesRead) { |
| 165 | return !png_sig_cmp((png_bytep) buf, (png_size_t)0, bytesRead); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 166 | } |
| 167 | |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 168 | static float png_fixed_point_to_float(png_fixed_point x) { |
| 169 | // We multiply by the same factor that libpng used to convert |
| 170 | // fixed point -> double. Since we want floats, we choose to |
| 171 | // do the conversion ourselves rather than convert |
| 172 | // fixed point -> double -> float. |
| 173 | return ((float) x) * 0.00001f; |
| 174 | } |
| 175 | |
| 176 | // Returns a colorSpace object that represents any color space information in |
| 177 | // the encoded data. If the encoded data contains no color space, this will |
| 178 | // return NULL. |
| 179 | SkColorSpace* read_color_space(png_structp png_ptr, png_infop info_ptr) { |
| 180 | |
| 181 | // First check for an ICC profile |
| 182 | png_bytep profile; |
| 183 | png_uint_32 length; |
| 184 | // The below variables are unused, however, we need to pass them in anyway or |
| 185 | // png_get_iCCP() will return nothing. |
| 186 | // Could knowing the |name| of the profile ever be interesting? Maybe for debugging? |
| 187 | png_charp name; |
| 188 | // The |compression| is uninteresting since: |
| 189 | // (1) libpng has already decompressed the profile for us. |
| 190 | // (2) "deflate" is the only mode of decompression that libpng supports. |
| 191 | int compression; |
| 192 | if (PNG_INFO_iCCP == png_get_iCCP(png_ptr, info_ptr, &name, &compression, &profile, |
| 193 | &length)) { |
| 194 | return SkColorSpace::NewICC(profile, length); |
| 195 | } |
| 196 | |
| 197 | // Second, check for sRGB. |
| 198 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) { |
| 199 | |
| 200 | // sRGB chunks also store a rendering intent: Absolute, Relative, |
| 201 | // Perceptual, and Saturation. |
| 202 | // FIXME (msarett): Extract this information from the sRGB chunk once |
| 203 | // we are able to handle this information in |
| 204 | // SkColorSpace. |
| 205 | return SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named); |
| 206 | } |
| 207 | |
| 208 | // Next, check for chromaticities. |
| 209 | png_fixed_point XYZ[9]; |
| 210 | SkFloat3x3 toXYZD50; |
| 211 | png_fixed_point gamma; |
| 212 | SkFloat3 gammas; |
| 213 | if (png_get_cHRM_XYZ_fixed(png_ptr, info_ptr, &XYZ[0], &XYZ[1], &XYZ[2], &XYZ[3], &XYZ[4], |
| 214 | &XYZ[5], &XYZ[6], &XYZ[7], &XYZ[8])) { |
| 215 | |
| 216 | // FIXME (msarett): Here we are treating XYZ values as D50 even though the color |
| 217 | // temperature is unspecified. I suspect that this assumption |
| 218 | // is most often ok, but we could also calculate the color |
| 219 | // temperature (D value) and then convert the XYZ to D50. Maybe |
| 220 | // we should add a new constructor to SkColorSpace that accepts |
| 221 | // XYZ with D-Unkown? |
| 222 | for (int i = 0; i < 9; i++) { |
| 223 | toXYZD50.fMat[i] = png_fixed_point_to_float(XYZ[i]); |
| 224 | } |
| 225 | |
| 226 | if (PNG_INFO_gAMA != png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) { |
| 227 | |
| 228 | // If the image does not specify gamma, let's choose linear. Should we default |
| 229 | // to sRGB? Most images are intended to be sRGB (gamma = 2.2f). |
| 230 | gamma = PNG_GAMMA_LINEAR; |
| 231 | } |
| 232 | gammas.fVec[0] = gammas.fVec[1] = gammas.fVec[2] = png_fixed_point_to_float(gamma); |
| 233 | |
| 234 | return SkColorSpace::NewRGB(toXYZD50, gammas); |
| 235 | } |
| 236 | |
| 237 | // Last, check for gamma. |
| 238 | if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) { |
| 239 | |
| 240 | // Guess a default value for cHRM? Or should we just give up? |
| 241 | // Here we use the identity matrix as a default. |
| 242 | // FIXME (msarett): Should SkFloat3x3 have a method to set the identity matrix? |
| 243 | memset(toXYZD50.fMat, 0, 9 * sizeof(float)); |
| 244 | toXYZD50.fMat[0] = toXYZD50.fMat[4] = toXYZD50.fMat[8] = 1.0f; |
| 245 | |
| 246 | // Set the gammas. |
| 247 | gammas.fVec[0] = gammas.fVec[1] = gammas.fVec[2] = png_fixed_point_to_float(gamma); |
| 248 | |
| 249 | return SkColorSpace::NewRGB(toXYZD50, gammas); |
| 250 | } |
| 251 | |
| 252 | // Finally, what should we do if there is no color space information in the PNG? |
| 253 | // The specification says that this indicates "gamma is unknown" and that the |
| 254 | // "color is device dependent". I'm assuming we can represent this with NULL. |
| 255 | // But should we guess sRGB? Most images are sRGB, even if they don't specify. |
| 256 | return nullptr; |
| 257 | } |
| 258 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 259 | // Reads the header and initializes the output fields, if not NULL. |
| 260 | // |
| 261 | // @param stream Input data. Will be read to get enough information to properly |
| 262 | // setup the codec. |
| 263 | // @param chunkReader SkPngChunkReader, for reading unknown chunks. May be NULL. |
| 264 | // If not NULL, png_ptr will hold an *unowned* pointer to it. The caller is |
| 265 | // expected to continue to own it for the lifetime of the png_ptr. |
| 266 | // @param png_ptrp Optional output variable. If non-NULL, will be set to a new |
| 267 | // png_structp on success. |
| 268 | // @param info_ptrp Optional output variable. If non-NULL, will be set to a new |
| 269 | // png_infop on success; |
| 270 | // @param imageInfo Optional output variable. If non-NULL, will be set to |
| 271 | // reflect the properties of the encoded image on success. |
| 272 | // @param bitDepthPtr Optional output variable. If non-NULL, will be set to the |
| 273 | // bit depth of the encoded image on success. |
| 274 | // @param numberPassesPtr Optional output variable. If non-NULL, will be set to |
| 275 | // the number_passes of the encoded image on success. |
| 276 | // @return true on success, in which case the caller is responsible for calling |
| 277 | // png_destroy_read_struct(png_ptrp, info_ptrp). |
| 278 | // If it returns false, the passed in fields (except stream) are unchanged. |
| 279 | static bool read_header(SkStream* stream, SkPngChunkReader* chunkReader, |
| 280 | png_structp* png_ptrp, png_infop* info_ptrp, |
| 281 | SkImageInfo* imageInfo, int* bitDepthPtr, int* numberPassesPtr) { |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 282 | // The image is known to be a PNG. Decode enough to know the SkImageInfo. |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 283 | png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr, |
scroggo | 0eed6df | 2015-03-26 10:07:56 -0700 | [diff] [blame] | 284 | sk_error_fn, sk_warning_fn); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 285 | if (!png_ptr) { |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 286 | return false; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | AutoCleanPng autoClean(png_ptr); |
| 290 | |
| 291 | png_infop info_ptr = png_create_info_struct(png_ptr); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 292 | if (info_ptr == nullptr) { |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 293 | return false; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | autoClean.setInfoPtr(info_ptr); |
| 297 | |
| 298 | // FIXME: Could we use the return value of setjmp to specify the type of |
| 299 | // error? |
| 300 | if (setjmp(png_jmpbuf(png_ptr))) { |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 301 | return false; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | png_set_read_fn(png_ptr, static_cast<void*>(stream), sk_read_fn); |
| 305 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 306 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
msarett | 133eaaa | 2016-01-07 11:03:25 -0800 | [diff] [blame] | 307 | // Hookup our chunkReader so we can see any user-chunks the caller may be interested in. |
| 308 | // This needs to be installed before we read the png header. Android may store ninepatch |
| 309 | // chunks in the header. |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 310 | if (chunkReader) { |
| 311 | png_set_keep_unknown_chunks(png_ptr, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"", 0); |
| 312 | png_set_read_user_chunk_fn(png_ptr, (png_voidp) chunkReader, sk_read_user_chunk); |
| 313 | } |
| 314 | #endif |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 315 | |
| 316 | // The call to png_read_info() gives us all of the information from the |
| 317 | // PNG file before the first IDAT (image data chunk). |
| 318 | png_read_info(png_ptr, info_ptr); |
| 319 | png_uint_32 origWidth, origHeight; |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 320 | int bitDepth, encodedColorType; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 321 | png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 322 | &encodedColorType, nullptr, nullptr, nullptr); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 323 | |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 324 | if (bitDepthPtr) { |
| 325 | *bitDepthPtr = bitDepth; |
| 326 | } |
| 327 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 328 | // Tell libpng to strip 16 bit/color files down to 8 bits/color. |
| 329 | // TODO: Should we handle this in SkSwizzler? Could this also benefit |
| 330 | // RAW decodes? |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 331 | if (bitDepth == 16) { |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 332 | SkASSERT(PNG_COLOR_TYPE_PALETTE != encodedColorType); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 333 | png_set_strip_16(png_ptr); |
| 334 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 335 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 336 | // Now determine the default colorType and alphaType and set the required transforms. |
| 337 | // Often, we depend on SkSwizzler to perform any transforms that we need. However, we |
| 338 | // still depend on libpng for many of the rare and PNG-specific cases. |
| 339 | SkColorType colorType = kUnknown_SkColorType; |
| 340 | SkAlphaType alphaType = kUnknown_SkAlphaType; |
| 341 | switch (encodedColorType) { |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 342 | case PNG_COLOR_TYPE_PALETTE: |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 343 | // Extract multiple pixels with bit depths of 1, 2, and 4 from a single |
| 344 | // byte into separate bytes (useful for paletted and grayscale images). |
| 345 | if (bitDepth < 8) { |
| 346 | // TODO: Should we use SkSwizzler here? |
| 347 | png_set_packing(png_ptr); |
| 348 | } |
| 349 | |
| 350 | colorType = kIndex_8_SkColorType; |
| 351 | // Set the alpha type depending on if a transparency chunk exists. |
| 352 | alphaType = png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ? |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 353 | kUnpremul_SkAlphaType : kOpaque_SkAlphaType; |
| 354 | break; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 355 | case PNG_COLOR_TYPE_RGB: |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 356 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { |
| 357 | // Convert to RGBA if transparency chunk exists. |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 358 | png_set_tRNS_to_alpha(png_ptr); |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 359 | alphaType = kUnpremul_SkAlphaType; |
jvanverth | 6c90e09 | 2015-07-02 10:35:25 -0700 | [diff] [blame] | 360 | } else { |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 361 | alphaType = kOpaque_SkAlphaType; |
jvanverth | 6c90e09 | 2015-07-02 10:35:25 -0700 | [diff] [blame] | 362 | } |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 363 | colorType = kN32_SkColorType; |
jvanverth | 6c90e09 | 2015-07-02 10:35:25 -0700 | [diff] [blame] | 364 | break; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 365 | case PNG_COLOR_TYPE_GRAY: |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 366 | // Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel. |
| 367 | if (bitDepth < 8) { |
| 368 | // TODO: Should we use SkSwizzler here? |
| 369 | png_set_expand_gray_1_2_4_to_8(png_ptr); |
| 370 | } |
| 371 | |
| 372 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 373 | png_set_tRNS_to_alpha(png_ptr); |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 374 | |
| 375 | // We will recommend kN32 here since we do not support kGray |
| 376 | // with alpha. |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 377 | colorType = kN32_SkColorType; |
| 378 | alphaType = kUnpremul_SkAlphaType; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 379 | } else { |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 380 | colorType = kGray_8_SkColorType; |
| 381 | alphaType = kOpaque_SkAlphaType; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 382 | } |
| 383 | break; |
| 384 | case PNG_COLOR_TYPE_GRAY_ALPHA: |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 385 | // We will recommend kN32 here since we do not support anything |
| 386 | // similar to GRAY_ALPHA. |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 387 | colorType = kN32_SkColorType; |
| 388 | alphaType = kUnpremul_SkAlphaType; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 389 | break; |
| 390 | case PNG_COLOR_TYPE_RGBA: |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 391 | colorType = kN32_SkColorType; |
| 392 | alphaType = kUnpremul_SkAlphaType; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 393 | break; |
| 394 | default: |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 395 | // All the color types have been covered above. |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 396 | SkASSERT(false); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 397 | } |
| 398 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 399 | int numberPasses = png_set_interlace_handling(png_ptr); |
| 400 | if (numberPassesPtr) { |
| 401 | *numberPassesPtr = numberPasses; |
| 402 | } |
| 403 | |
msarett | a87d6de | 2016-02-04 15:37:58 -0800 | [diff] [blame] | 404 | SkColorProfileType profileType = kLinear_SkColorProfileType; |
| 405 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) { |
| 406 | profileType = kSRGB_SkColorProfileType; |
| 407 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 408 | |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 409 | if (imageInfo) { |
msarett | a87d6de | 2016-02-04 15:37:58 -0800 | [diff] [blame] | 410 | *imageInfo = SkImageInfo::Make(origWidth, origHeight, colorType, alphaType, profileType); |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 411 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 412 | autoClean.detach(); |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 413 | if (png_ptrp) { |
| 414 | *png_ptrp = png_ptr; |
| 415 | } |
| 416 | if (info_ptrp) { |
| 417 | *info_ptrp = info_ptr; |
| 418 | } |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 419 | |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 420 | return true; |
| 421 | } |
| 422 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 423 | SkPngCodec::SkPngCodec(const SkImageInfo& info, SkStream* stream, SkPngChunkReader* chunkReader, |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 424 | png_structp png_ptr, png_infop info_ptr, int bitDepth, int numberPasses, |
| 425 | SkColorSpace* colorSpace) |
| 426 | : INHERITED(info, stream, colorSpace) |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 427 | , fPngChunkReader(SkSafeRef(chunkReader)) |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 428 | , fPng_ptr(png_ptr) |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 429 | , fInfo_ptr(info_ptr) |
| 430 | , fSrcConfig(SkSwizzler::kUnknown) |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 431 | , fNumberPasses(numberPasses) |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 432 | , fBitDepth(bitDepth) |
msarett | a4970dc | 2016-01-11 07:23:23 -0800 | [diff] [blame] | 433 | {} |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 434 | |
| 435 | SkPngCodec::~SkPngCodec() { |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 436 | this->destroyReadStruct(); |
| 437 | } |
| 438 | |
| 439 | void SkPngCodec::destroyReadStruct() { |
| 440 | if (fPng_ptr) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 441 | // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 442 | SkASSERT(fInfo_ptr); |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 443 | png_destroy_read_struct(&fPng_ptr, &fInfo_ptr, nullptr); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 444 | fPng_ptr = nullptr; |
| 445 | fInfo_ptr = nullptr; |
scroggo | 3eada2a | 2015-04-01 09:33:23 -0700 | [diff] [blame] | 446 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /////////////////////////////////////////////////////////////////////////////// |
| 450 | // Getting the pixels |
| 451 | /////////////////////////////////////////////////////////////////////////////// |
| 452 | |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 453 | SkCodec::Result SkPngCodec::initializeSwizzler(const SkImageInfo& requestedInfo, |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 454 | const Options& options, |
msarett | 9e43cab | 2015-04-29 07:38:43 -0700 | [diff] [blame] | 455 | SkPMColor ctable[], |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 456 | int* ctableCount) { |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 457 | // FIXME: Could we use the return value of setjmp to specify the type of |
| 458 | // error? |
| 459 | if (setjmp(png_jmpbuf(fPng_ptr))) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 460 | SkCodecPrintf("setjmp long jump!\n"); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 461 | return kInvalidInput; |
| 462 | } |
mtklein | 372d65c | 2016-01-27 13:01:41 -0800 | [diff] [blame] | 463 | png_read_update_info(fPng_ptr, fInfo_ptr); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 464 | |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 465 | // suggestedColorType was determined in read_header() based on the encodedColorType |
| 466 | const SkColorType suggestedColorType = this->getInfo().colorType(); |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 467 | |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 468 | switch (suggestedColorType) { |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 469 | case kIndex_8_SkColorType: |
| 470 | //decode palette to Skia format |
| 471 | fSrcConfig = SkSwizzler::kIndex; |
scroggo | 9b2cdbf | 2015-07-10 12:07:02 -0700 | [diff] [blame] | 472 | if (!this->decodePalette(kPremul_SkAlphaType == requestedInfo.alphaType(), |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 473 | ctableCount)) { |
| 474 | return kInvalidInput; |
| 475 | } |
| 476 | break; |
| 477 | case kGray_8_SkColorType: |
| 478 | fSrcConfig = SkSwizzler::kGray; |
mtklein | 372d65c | 2016-01-27 13:01:41 -0800 | [diff] [blame] | 479 | break; |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 480 | case kN32_SkColorType: { |
| 481 | const uint8_t encodedColorType = png_get_color_type(fPng_ptr, fInfo_ptr); |
| 482 | if (PNG_COLOR_TYPE_GRAY_ALPHA == encodedColorType || |
| 483 | PNG_COLOR_TYPE_GRAY == encodedColorType) { |
| 484 | // If encodedColorType is GRAY, there must be a transparent chunk. |
| 485 | // Otherwise, suggestedColorType would be kGray. We have already |
| 486 | // instructed libpng to convert the transparent chunk to alpha, |
| 487 | // so we can treat both GRAY and GRAY_ALPHA as kGrayAlpha. |
| 488 | SkASSERT(encodedColorType == PNG_COLOR_TYPE_GRAY_ALPHA || |
| 489 | png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS)); |
| 490 | |
| 491 | fSrcConfig = SkSwizzler::kGrayAlpha; |
| 492 | } else { |
| 493 | if (this->getInfo().alphaType() == kOpaque_SkAlphaType) { |
msarett | bda8609 | 2016-01-19 10:40:12 -0800 | [diff] [blame] | 494 | fSrcConfig = SkSwizzler::kRGB; |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 495 | } else { |
| 496 | fSrcConfig = SkSwizzler::kRGBA; |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 497 | } |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 498 | } |
| 499 | break; |
msarett | 93e613d | 2016-02-03 10:44:46 -0800 | [diff] [blame] | 500 | } |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 501 | default: |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 502 | // We will always recommend one of the above colorTypes. |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 503 | SkASSERT(false); |
mtklein | 372d65c | 2016-01-27 13:01:41 -0800 | [diff] [blame] | 504 | } |
msarett | 9e43cab | 2015-04-29 07:38:43 -0700 | [diff] [blame] | 505 | |
| 506 | // Copy the color table to the client if they request kIndex8 mode |
| 507 | copy_color_table(requestedInfo, fColorTable, ctable, ctableCount); |
| 508 | |
| 509 | // Create the swizzler. SkPngCodec retains ownership of the color table. |
msarett | 99f567e | 2015-08-05 12:58:26 -0700 | [diff] [blame] | 510 | const SkPMColor* colors = get_color_ptr(fColorTable.get()); |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 511 | fSwizzler.reset(SkSwizzler::CreateSwizzler(fSrcConfig, colors, requestedInfo, options)); |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 512 | SkASSERT(fSwizzler); |
| 513 | |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 514 | return kSuccess; |
| 515 | } |
| 516 | |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 517 | |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 518 | bool SkPngCodec::onRewind() { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 519 | // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 520 | // succeeds, they will be repopulated, and if it fails, they will |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 521 | // remain nullptr. Any future accesses to fPng_ptr and fInfo_ptr will |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 522 | // come through this function which will rewind and again attempt |
| 523 | // to reinitialize them. |
| 524 | this->destroyReadStruct(); |
| 525 | |
| 526 | png_structp png_ptr; |
| 527 | png_infop info_ptr; |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 528 | if (!read_header(this->stream(), fPngChunkReader.get(), &png_ptr, &info_ptr, |
| 529 | nullptr, nullptr, nullptr)) { |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 530 | return false; |
scroggo | 5842154 | 2015-04-01 11:25:20 -0700 | [diff] [blame] | 531 | } |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 532 | |
| 533 | fPng_ptr = png_ptr; |
| 534 | fInfo_ptr = info_ptr; |
| 535 | return true; |
scroggo | 5842154 | 2015-04-01 11:25:20 -0700 | [diff] [blame] | 536 | } |
| 537 | |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 538 | SkCodec::Result SkPngCodec::onGetPixels(const SkImageInfo& requestedInfo, void* dst, |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 539 | size_t dstRowBytes, const Options& options, |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 540 | SkPMColor ctable[], int* ctableCount, |
| 541 | int* rowsDecoded) { |
scroggo | 6f29a3c | 2015-07-07 06:09:08 -0700 | [diff] [blame] | 542 | if (!conversion_possible(requestedInfo, this->getInfo())) { |
| 543 | return kInvalidConversion; |
| 544 | } |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 545 | if (options.fSubset) { |
| 546 | // Subsets are not supported. |
| 547 | return kUnimplemented; |
| 548 | } |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 549 | |
msarett | 9e43cab | 2015-04-29 07:38:43 -0700 | [diff] [blame] | 550 | // Note that ctable and ctableCount may be modified if there is a color table |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 551 | const Result result = this->initializeSwizzler(requestedInfo, options, ctable, ctableCount); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 552 | if (result != kSuccess) { |
| 553 | return result; |
| 554 | } |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 555 | |
| 556 | const int width = requestedInfo.width(); |
| 557 | const int height = requestedInfo.height(); |
| 558 | const int bpp = SkSwizzler::BytesPerPixel(fSrcConfig); |
| 559 | const size_t srcRowBytes = width * bpp; |
| 560 | |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 561 | // FIXME: Could we use the return value of setjmp to specify the type of |
| 562 | // error? |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 563 | int row = 0; |
| 564 | // This must be declared above the call to setjmp to avoid memory leaks on incomplete images. |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 565 | SkAutoTMalloc<uint8_t> storage; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 566 | if (setjmp(png_jmpbuf(fPng_ptr))) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 567 | // Assume that any error that occurs while reading rows is caused by an incomplete input. |
| 568 | if (fNumberPasses > 1) { |
| 569 | // FIXME (msarett): Handle incomplete interlaced pngs. |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 570 | return (row == height) ? kSuccess : kInvalidInput; |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 571 | } |
| 572 | // FIXME: We do a poor job on incomplete pngs compared to other decoders (ex: Chromium, |
| 573 | // Ubuntu Image Viewer). This is because we use the default buffer size in libpng (8192 |
| 574 | // bytes), and if we can't fill the buffer, we immediately fail. |
| 575 | // For example, if we try to read 8192 bytes, and the image (incorrectly) only contains |
| 576 | // half that, which may have been enough to contain a non-zero number of lines, we fail |
| 577 | // when we could have decoded a few more lines and then failed. |
| 578 | // The read function that we provide for libpng has no way of indicating that we have |
| 579 | // made a partial read. |
| 580 | // Making our buffer size smaller improves our incomplete decodes, but what impact does |
| 581 | // it have on regular decode performance? Should we investigate using a different API |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 582 | // instead of png_read_row? Chromium uses png_process_data. |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 583 | *rowsDecoded = row; |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 584 | return (row == height) ? kSuccess : kIncompleteInput; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 585 | } |
| 586 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 587 | // FIXME: We could split these out based on subclass. |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 588 | void* dstRow = dst; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 589 | if (fNumberPasses > 1) { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 590 | storage.reset(height * srcRowBytes); |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 591 | uint8_t* const base = storage.get(); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 592 | |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 593 | for (int i = 0; i < fNumberPasses; i++) { |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 594 | uint8_t* srcRow = base; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 595 | for (int y = 0; y < height; y++) { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 596 | png_read_row(fPng_ptr, srcRow, nullptr); |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 597 | srcRow += srcRowBytes; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 598 | } |
| 599 | } |
| 600 | |
| 601 | // Now swizzle it. |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 602 | uint8_t* srcRow = base; |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 603 | for (; row < height; row++) { |
msarett | a4970dc | 2016-01-11 07:23:23 -0800 | [diff] [blame] | 604 | fSwizzler->swizzle(dstRow, srcRow); |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 605 | dstRow = SkTAddOffset<void>(dstRow, dstRowBytes); |
| 606 | srcRow += srcRowBytes; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 607 | } |
| 608 | } else { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 609 | storage.reset(srcRowBytes); |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 610 | uint8_t* srcRow = storage.get(); |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 611 | for (; row < height; row++) { |
| 612 | png_read_row(fPng_ptr, srcRow, nullptr); |
msarett | a4970dc | 2016-01-11 07:23:23 -0800 | [diff] [blame] | 613 | fSwizzler->swizzle(dstRow, srcRow); |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 614 | dstRow = SkTAddOffset<void>(dstRow, dstRowBytes); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 615 | } |
| 616 | } |
| 617 | |
emmaleer | 973ae86 | 2015-07-20 13:38:44 -0700 | [diff] [blame] | 618 | // read rest of file, and get additional comment and time chunks in info_ptr |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 619 | png_read_end(fPng_ptr, fInfo_ptr); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 620 | |
emmaleer | 973ae86 | 2015-07-20 13:38:44 -0700 | [diff] [blame] | 621 | return kSuccess; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 622 | } |
| 623 | |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 624 | uint32_t SkPngCodec::onGetFillValue(SkColorType colorType) const { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 625 | const SkPMColor* colorPtr = get_color_ptr(fColorTable.get()); |
| 626 | if (colorPtr) { |
| 627 | return get_color_table_fill_value(colorType, colorPtr, 0); |
| 628 | } |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 629 | return INHERITED::onGetFillValue(colorType); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 630 | } |
| 631 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 632 | // Subclass of SkPngCodec which supports scanline decoding |
| 633 | class SkPngScanlineDecoder : public SkPngCodec { |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 634 | public: |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 635 | SkPngScanlineDecoder(const SkImageInfo& srcInfo, SkStream* stream, |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 636 | SkPngChunkReader* chunkReader, png_structp png_ptr, png_infop info_ptr, int bitDepth, |
| 637 | SkColorSpace* colorSpace) |
| 638 | : INHERITED(srcInfo, stream, chunkReader, png_ptr, info_ptr, bitDepth, 1, colorSpace) |
msarett | f724b99 | 2015-10-15 06:41:06 -0700 | [diff] [blame] | 639 | , fSrcRow(nullptr) |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 640 | {} |
| 641 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 642 | Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options, |
| 643 | SkPMColor ctable[], int* ctableCount) override { |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 644 | if (!conversion_possible(dstInfo, this->getInfo())) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 645 | return kInvalidConversion; |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 646 | } |
| 647 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 648 | const Result result = this->initializeSwizzler(dstInfo, options, ctable, |
| 649 | ctableCount); |
| 650 | if (result != kSuccess) { |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 651 | return result; |
| 652 | } |
| 653 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 654 | fStorage.reset(this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig())); |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 655 | fSrcRow = fStorage.get(); |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 656 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 657 | return kSuccess; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 658 | } |
| 659 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 660 | int onGetScanlines(void* dst, int count, size_t rowBytes) override { |
| 661 | // Assume that an error in libpng indicates an incomplete input. |
| 662 | int row = 0; |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 663 | if (setjmp(png_jmpbuf(this->png_ptr()))) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 664 | SkCodecPrintf("setjmp long jump!\n"); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 665 | return row; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 666 | } |
| 667 | |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 668 | void* dstRow = dst; |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 669 | for (; row < count; row++) { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 670 | png_read_row(this->png_ptr(), fSrcRow, nullptr); |
msarett | a4970dc | 2016-01-11 07:23:23 -0800 | [diff] [blame] | 671 | this->swizzler()->swizzle(dstRow, fSrcRow); |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 672 | dstRow = SkTAddOffset<void>(dstRow, rowBytes); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 673 | } |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 674 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 675 | return row; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 676 | } |
| 677 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 678 | bool onSkipScanlines(int count) override { |
| 679 | // Assume that an error in libpng indicates an incomplete input. |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 680 | if (setjmp(png_jmpbuf(this->png_ptr()))) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 681 | SkCodecPrintf("setjmp long jump!\n"); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 682 | return false; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 683 | } |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 684 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 685 | for (int row = 0; row < count; row++) { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 686 | png_read_row(this->png_ptr(), fSrcRow, nullptr); |
emmaleer | 7dc9190 | 2015-05-27 08:49:04 -0700 | [diff] [blame] | 687 | } |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 688 | return true; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 689 | } |
| 690 | |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 691 | private: |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 692 | SkAutoTMalloc<uint8_t> fStorage; |
scroggo | 9b2cdbf | 2015-07-10 12:07:02 -0700 | [diff] [blame] | 693 | uint8_t* fSrcRow; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 694 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 695 | typedef SkPngCodec INHERITED; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 696 | }; |
| 697 | |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 698 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 699 | class SkPngInterlacedScanlineDecoder : public SkPngCodec { |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 700 | public: |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 701 | SkPngInterlacedScanlineDecoder(const SkImageInfo& srcInfo, SkStream* stream, |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 702 | SkPngChunkReader* chunkReader, png_structp png_ptr, png_infop info_ptr, |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 703 | int bitDepth, int numberPasses, SkColorSpace* colorSpace) |
| 704 | : INHERITED(srcInfo, stream, chunkReader, png_ptr, info_ptr, bitDepth, numberPasses, |
| 705 | colorSpace) |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 706 | , fHeight(-1) |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 707 | , fCanSkipRewind(false) |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 708 | { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 709 | SkASSERT(numberPasses != 1); |
| 710 | } |
| 711 | |
| 712 | Result onStartScanlineDecode(const SkImageInfo& dstInfo, const Options& options, |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 713 | SkPMColor ctable[], int* ctableCount) override { |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 714 | if (!conversion_possible(dstInfo, this->getInfo())) { |
mtklein | 372d65c | 2016-01-27 13:01:41 -0800 | [diff] [blame] | 715 | return kInvalidConversion; |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 716 | } |
| 717 | |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 718 | const Result result = this->initializeSwizzler(dstInfo, options, ctable, |
| 719 | ctableCount); |
| 720 | if (result != kSuccess) { |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 721 | return result; |
| 722 | } |
| 723 | |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 724 | fHeight = dstInfo.height(); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 725 | // FIXME: This need not be called on a second call to onStartScanlineDecode. |
| 726 | fSrcRowBytes = this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig()); |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 727 | fGarbageRow.reset(fSrcRowBytes); |
| 728 | fGarbageRowPtr = static_cast<uint8_t*>(fGarbageRow.get()); |
| 729 | fCanSkipRewind = true; |
| 730 | |
| 731 | return SkCodec::kSuccess; |
| 732 | } |
| 733 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 734 | int onGetScanlines(void* dst, int count, size_t dstRowBytes) override { |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 735 | // rewind stream if have previously called onGetScanlines, |
| 736 | // since we need entire progressive image to get scanlines |
| 737 | if (fCanSkipRewind) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 738 | // We already rewound in onStartScanlineDecode, so there is no reason to rewind. |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 739 | // Next time onGetScanlines is called, we will need to rewind. |
| 740 | fCanSkipRewind = false; |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 741 | } else { |
| 742 | // rewindIfNeeded resets fCurrScanline, since it assumes that start |
| 743 | // needs to be called again before scanline decoding. PNG scanline |
| 744 | // decoding is the exception, since it needs to rewind between |
| 745 | // calls to getScanlines. Keep track of fCurrScanline, to undo the |
| 746 | // reset. |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 747 | const int currScanline = this->nextScanline(); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 748 | // This method would never be called if currScanline is -1 |
| 749 | SkASSERT(currScanline != -1); |
| 750 | |
| 751 | if (!this->rewindIfNeeded()) { |
| 752 | return kCouldNotRewind; |
| 753 | } |
msarett | cb0d5c9 | 2015-12-03 12:23:43 -0800 | [diff] [blame] | 754 | this->updateCurrScanline(currScanline); |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 755 | } |
| 756 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 757 | if (setjmp(png_jmpbuf(this->png_ptr()))) { |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 758 | SkCodecPrintf("setjmp long jump!\n"); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 759 | // FIXME (msarett): Returning 0 is pessimistic. If we can complete a single pass, |
| 760 | // we may be able to report that all of the memory has been initialized. Even if we |
| 761 | // fail on the first pass, we can still report than some scanlines are initialized. |
| 762 | return 0; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 763 | } |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 764 | SkAutoTMalloc<uint8_t> storage(count * fSrcRowBytes); |
| 765 | uint8_t* storagePtr = storage.get(); |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 766 | uint8_t* srcRow; |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 767 | const int startRow = this->nextScanline(); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 768 | for (int i = 0; i < this->numberPasses(); i++) { |
| 769 | // read rows we planned to skip into garbage row |
| 770 | for (int y = 0; y < startRow; y++){ |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 771 | png_read_row(this->png_ptr(), fGarbageRowPtr, nullptr); |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 772 | } |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 773 | // read rows we care about into buffer |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 774 | srcRow = storagePtr; |
| 775 | for (int y = 0; y < count; y++) { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 776 | png_read_row(this->png_ptr(), srcRow, nullptr); |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 777 | srcRow += fSrcRowBytes; |
| 778 | } |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 779 | // read rows we don't want into garbage buffer |
| 780 | for (int y = 0; y < fHeight - startRow - count; y++) { |
msarett | 60dcd3c | 2016-02-05 15:13:12 -0800 | [diff] [blame] | 781 | png_read_row(this->png_ptr(), fGarbageRowPtr, nullptr); |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 782 | } |
| 783 | } |
| 784 | //swizzle the rows we care about |
| 785 | srcRow = storagePtr; |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 786 | void* dstRow = dst; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 787 | for (int y = 0; y < count; y++) { |
msarett | a4970dc | 2016-01-11 07:23:23 -0800 | [diff] [blame] | 788 | this->swizzler()->swizzle(dstRow, srcRow); |
msarett | 614aa07 | 2015-07-27 15:13:17 -0700 | [diff] [blame] | 789 | dstRow = SkTAddOffset<void>(dstRow, dstRowBytes); |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 790 | srcRow += fSrcRowBytes; |
| 791 | } |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 792 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 793 | return count; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 794 | } |
| 795 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 796 | bool onSkipScanlines(int count) override { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 797 | // The non-virtual version will update fCurrScanline. |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 798 | return true; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 799 | } |
| 800 | |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 801 | SkScanlineOrder onGetScanlineOrder() const override { |
| 802 | return kNone_SkScanlineOrder; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 803 | } |
| 804 | |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 805 | private: |
scroggo | 9b2cdbf | 2015-07-10 12:07:02 -0700 | [diff] [blame] | 806 | int fHeight; |
| 807 | size_t fSrcRowBytes; |
| 808 | SkAutoMalloc fGarbageRow; |
| 809 | uint8_t* fGarbageRowPtr; |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 810 | // FIXME: This imitates behavior in SkCodec::rewindIfNeeded. That function |
| 811 | // is called whenever some action is taken that reads the stream and |
| 812 | // therefore the next call will require a rewind. So it modifies a boolean |
| 813 | // to note that the *next* time it is called a rewind is needed. |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 814 | // SkPngInterlacedScanlineDecoder has an extra wrinkle - calling |
| 815 | // onStartScanlineDecode followed by onGetScanlines does *not* require a |
| 816 | // rewind. Since rewindIfNeeded does not have this flexibility, we need to |
| 817 | // add another layer. |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 818 | bool fCanSkipRewind; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 819 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 820 | typedef SkPngCodec INHERITED; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 821 | }; |
| 822 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 823 | SkCodec* SkPngCodec::NewFromStream(SkStream* stream, SkPngChunkReader* chunkReader) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 824 | SkAutoTDelete<SkStream> streamDeleter(stream); |
| 825 | png_structp png_ptr; |
| 826 | png_infop info_ptr; |
| 827 | SkImageInfo imageInfo; |
| 828 | int bitDepth; |
| 829 | int numberPasses; |
| 830 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 831 | if (!read_header(stream, chunkReader, &png_ptr, &info_ptr, &imageInfo, &bitDepth, |
| 832 | &numberPasses)) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 833 | return nullptr; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 834 | } |
| 835 | |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 836 | SkAutoTUnref<SkColorSpace> colorSpace(read_color_space(png_ptr, info_ptr)); |
| 837 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 838 | if (1 == numberPasses) { |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 839 | return new SkPngScanlineDecoder(imageInfo, streamDeleter.detach(), chunkReader, |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 840 | png_ptr, info_ptr, bitDepth, colorSpace); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 841 | } |
| 842 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 843 | return new SkPngInterlacedScanlineDecoder(imageInfo, streamDeleter.detach(), chunkReader, |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 844 | png_ptr, info_ptr, bitDepth, numberPasses, |
| 845 | colorSpace); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 846 | } |