Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: src/codec/SkCodec_libpng.h

Issue 1212373006: Swizzling, except for premultiplying, done using libpng transforms (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Removing changes from SkMallocPixelRef Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/codec/SkCodec_libpng.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkCodec.h" 8 #include "SkCodec.h"
9 #include "SkColorTable.h" 9 #include "SkColorTable.h"
10 #include "SkEncodedFormat.h" 10 #include "SkEncodedFormat.h"
(...skipping 26 matching lines...) Expand all
37 png_structp fPng_ptr; 37 png_structp fPng_ptr;
38 png_infop fInfo_ptr; 38 png_infop fInfo_ptr;
39 39
40 // These are stored here so they can be used both by normal decoding and sca nline decoding. 40 // These are stored here so they can be used both by normal decoding and sca nline decoding.
41 SkAutoTUnref<SkColorTable> fColorTable; // May be unpremul. 41 SkAutoTUnref<SkColorTable> fColorTable; // May be unpremul.
42 SkAutoTDelete<SkSwizzler> fSwizzler; 42 SkAutoTDelete<SkSwizzler> fSwizzler;
43 43
44 SkSwizzler::SrcConfig fSrcConfig; 44 SkSwizzler::SrcConfig fSrcConfig;
45 int fNumberPasses; 45 int fNumberPasses;
46 bool fReallyHasAlpha; 46 bool fReallyHasAlpha;
47 int fBitDepth;
47 48
48 SkPngCodec(const SkImageInfo&, SkStream*, png_structp, png_infop); 49 SkPngCodec(const SkImageInfo&, SkStream*, png_structp, png_infop, int);
49 ~SkPngCodec(); 50 ~SkPngCodec();
50 51
52
51 // Helper to set up swizzler and color table. Also calls png_read_update_inf o. 53 // Helper to set up swizzler and color table. Also calls png_read_update_inf o.
52 Result initializeSwizzler(const SkImageInfo& requestedInfo, void* dst, 54 Result initializeSwizzler(const SkImageInfo& requestedInfo, void* dst,
53 size_t rowBytes, const Options&, SkPMColor*, int* ctableCount); 55 size_t rowBytes, const Options&, SkPMColor*, int* ctableCount);
54 // Calls rewindIfNeeded, and returns true if the decoder can continue. 56
55 bool handleRewind(); 57 // Sets libpng to decode to the data format of requestedInfo
58 Result setDataFormat(const SkImageInfo& requestedInfo);
59
60 // Calls rewindIfNeeded and setDataFormat and returns true if the decoder ca n continue.
61 bool handleRewind(const SkImageInfo& requestedInfo);
56 bool decodePalette(bool premultiply, int bitDepth, int* ctableCount); 62 bool decodePalette(bool premultiply, int bitDepth, int* ctableCount);
57 void finish(); 63 void finish();
58 void destroyReadStruct(); 64 void destroyReadStruct();
59 65
60 friend class SkPngScanlineDecoder; 66 friend class SkPngScanlineDecoder;
61 friend class SkPngInterlacedScanlineDecoder; 67 friend class SkPngInterlacedScanlineDecoder;
62 68
63 typedef SkCodec INHERITED; 69 typedef SkCodec INHERITED;
64 }; 70 };
OLDNEW
« no previous file with comments | « no previous file | src/codec/SkCodec_libpng.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698