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

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

Issue 1213743004: Revert of Fixing libpng transform use (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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;
48 47
49 SkPngCodec(const SkImageInfo&, SkStream*, png_structp, png_infop, int); 48 SkPngCodec(const SkImageInfo&, SkStream*, png_structp, png_infop);
50 ~SkPngCodec(); 49 ~SkPngCodec();
51 50
52
53 // Helper to set up swizzler and color table. Also calls png_read_update_inf o. 51 // Helper to set up swizzler and color table. Also calls png_read_update_inf o.
54 Result initializeSwizzler(const SkImageInfo& requestedInfo, void* dst, 52 Result initializeSwizzler(const SkImageInfo& requestedInfo, void* dst,
55 size_t rowBytes, const Options&, SkPMColor*, int* ctableCount); 53 size_t rowBytes, const Options&, SkPMColor*, int* ctableCount);
56 54 // Calls rewindIfNeeded, and returns true if the decoder can continue.
57 // Calls rewindIfNeeded and returns true if the decoder can continue.
58 bool handleRewind(); 55 bool handleRewind();
59 bool decodePalette(bool premultiply, int bitDepth, int* ctableCount); 56 bool decodePalette(bool premultiply, int bitDepth, int* ctableCount);
60 void finish(); 57 void finish();
61 void destroyReadStruct(); 58 void destroyReadStruct();
62 59
63 friend class SkPngScanlineDecoder; 60 friend class SkPngScanlineDecoder;
64 friend class SkPngInterlacedScanlineDecoder; 61 friend class SkPngInterlacedScanlineDecoder;
65 62
66 typedef SkCodec INHERITED; 63 typedef SkCodec INHERITED;
67 }; 64 };
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