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

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

Issue 1287423002: Scanline decoding for bmp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Scanline decoding for bmp without reordering Created 5 years, 4 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
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 "SkBmpCodec.h" 8 #include "SkBmpCodec.h"
9 #include "SkColorTable.h" 9 #include "SkColorTable.h"
10 #include "SkImageInfo.h" 10 #include "SkImageInfo.h"
(...skipping 17 matching lines...) Expand all
28 * @param numColors the number of colors in the color table 28 * @param numColors the number of colors in the color table
29 * @param bytesPerColor the number of bytes in the stream used to represent 29 * @param bytesPerColor the number of bytes in the stream used to represent
30 each color in the color table 30 each color in the color table
31 * @param offset the offset of the image pixel data from the end of the 31 * @param offset the offset of the image pixel data from the end of the
32 * headers 32 * headers
33 * @param rowOrder indicates whether rows are ordered top-down or bottom-up 33 * @param rowOrder indicates whether rows are ordered top-down or bottom-up
34 * @param RLEBytes indicates the amount of data left in the stream 34 * @param RLEBytes indicates the amount of data left in the stream
35 * after decoding the headers 35 * after decoding the headers
36 */ 36 */
37 SkBmpRLECodec(const SkImageInfo& srcInfo, SkStream* stream, 37 SkBmpRLECodec(const SkImageInfo& srcInfo, SkStream* stream,
38 uint16_t bitsPerPixel, uint32_t numColors, 38 SkBmpCodec::BmpInputFormat inputFormat, uint16_t bitsPerPixel,
39 uint32_t bytesPerColor, uint32_t offset, 39 uint32_t numColors, uint32_t bytesPerColor, uint32_t offset,
40 SkBmpCodec::RowOrder rowOrder, size_t RLEBytes); 40 SkBmpCodec::RowOrder rowOrder, size_t RLEBytes);
41 41
42 protected: 42 protected:
43 43
44 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, 44 Result onGetPixels(const SkImageInfo& dstInfo, void* dst,
45 size_t dstRowBytes, const Options&, SkPMColor*, 45 size_t dstRowBytes, const Options&, SkPMColor*,
46 int*) override; 46 int*) override;
47 47
48 private: 48 private:
49 49
50 /* 50 /*
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 size_t dstRowBytes, const Options& opts); 84 size_t dstRowBytes, const Options& opts);
85 85
86 SkAutoTUnref<SkColorTable> fColorTable; // owned 86 SkAutoTUnref<SkColorTable> fColorTable; // owned
87 const uint32_t fNumColors; 87 const uint32_t fNumColors;
88 const uint32_t fBytesPerColor; 88 const uint32_t fBytesPerColor;
89 const uint32_t fOffset; 89 const uint32_t fOffset;
90 SkAutoTDeleteArray<uint8_t> fStreamBuffer; 90 SkAutoTDeleteArray<uint8_t> fStreamBuffer;
91 size_t fRLEBytes; 91 size_t fRLEBytes;
92 uint32_t fCurrRLEByte; 92 uint32_t fCurrRLEByte;
93 93
94 friend class SkBmpRLEScanlineDecoder;
95
94 typedef SkBmpCodec INHERITED; 96 typedef SkBmpCodec INHERITED;
95 }; 97 };
98
99 /*
100 * Scanline decoder for RLE bmps
101 */
102 class SkBmpRLEScanlineDecoder : public SkScanlineDecoder {
103 public:
104 SkBmpRLEScanlineDecoder(SkBmpRLECodec* codec);
105
106 SkCodec::Result onStart(const SkImageInfo& dstInfo, const SkCodec::Options& options,
107 SkPMColor inputColorPtr[], int* inputColorCount) ove rride;
108
109 SkCodec::Result onGetScanlines(void* dst, int count, size_t rowBytes) overri de;
110
111 // TODO(msarett): Override default skipping with something more clever.
112 // TODO(msarett): Consider other optimizations for this codec.
113
114 private:
115 SkAutoTDelete<SkBmpRLECodec> fCodec;
116 SkImageInfo fDstInfo;
117 SkCodec::Options fOpts;
118
119 typedef SkScanlineDecoder INHERITED;
120 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698