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

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

Issue 1918873002: Remove SkEncodedInfo kUnknown_Color and kUnknown_Alpha from public API (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix errors Created 4 years, 8 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 | « src/codec/SkJpegCodec.cpp ('k') | src/codec/SkJpegDecoderMgr.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 #ifndef SkJpegDecoderMgr_DEFINED 8 #ifndef SkJpegDecoderMgr_DEFINED
9 #define SkJpegDecoderMgr_DEFINED 9 #define SkJpegDecoderMgr_DEFINED
10 10
(...skipping 25 matching lines...) Expand all
36 */ 36 */
37 JpegDecoderMgr(SkStream* stream); 37 JpegDecoderMgr(SkStream* stream);
38 38
39 /* 39 /*
40 * Initialize decompress struct 40 * Initialize decompress struct
41 * Initialize the source manager 41 * Initialize the source manager
42 */ 42 */
43 void init(); 43 void init();
44 44
45 /* 45 /*
46 * Returns the encoded color type of the jpeg, or kUnknown if the 46 * Returns true if it successfully sets outColor to the encoded color,
47 * color type can't be determined 47 * and false otherwise.
48 */ 48 */
49 SkEncodedInfo::Color getEncodedColor(); 49 bool getEncodedColor(SkEncodedInfo::Color* outColor);
50 50
51 /* 51 /*
52 * Free memory used by the decode manager 52 * Free memory used by the decode manager
53 */ 53 */
54 ~JpegDecoderMgr(); 54 ~JpegDecoderMgr();
55 55
56 /* 56 /*
57 * Get the jump buffer in order to set an error return point 57 * Get the jump buffer in order to set an error return point
58 */ 58 */
59 jmp_buf& getJmpBuf(); 59 jmp_buf& getJmpBuf();
60 60
61 /* 61 /*
62 * Get function for the decompress info struct 62 * Get function for the decompress info struct
63 */ 63 */
64 jpeg_decompress_struct* dinfo(); 64 jpeg_decompress_struct* dinfo();
65 65
66 private: 66 private:
67 67
68 jpeg_decompress_struct fDInfo; 68 jpeg_decompress_struct fDInfo;
69 skjpeg_source_mgr fSrcMgr; 69 skjpeg_source_mgr fSrcMgr;
70 skjpeg_error_mgr fErrorMgr; 70 skjpeg_error_mgr fErrorMgr;
71 bool fInit; 71 bool fInit;
72 }; 72 };
73 73
74 #endif 74 #endif
OLDNEW
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | src/codec/SkJpegDecoderMgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698