blob: b448734bbc6aa1ad935ddca6aeb7da4f1016ff52 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2007 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef IMAGE_CODEC_BMPDECODERHELPER_H__
11#define IMAGE_CODEC_BMPDECODERHELPER_H__
12
13///////////////////////////////////////////////////////////////////////////////
14// this section is my current "glue" between google3 code and android.
15// will be fixed soon
16
17#include "SkTypes.h"
18#include <limits.h>
19#define DISALLOW_EVIL_CONSTRUCTORS(name)
20#define CHECK(predicate) SkASSERT(predicate)
21typedef uint8_t uint8;
22typedef uint32_t uint32;
23
24template <typename T> class scoped_array {
25private:
26 T* ptr_;
27 scoped_array(scoped_array const&);
28 scoped_array& operator=(const scoped_array&);
29
30public:
31 explicit scoped_array(T* p = 0) : ptr_(p) {}
32 ~scoped_array() {
33 delete[] ptr_;
34 }
rmistry@google.comd6176b02012-08-23 18:14:13 +000035
reed@android.com8a1c16f2008-12-17 15:59:43 +000036 void reset(T* p = 0) {
37 if (p != ptr_) {
38 delete[] ptr_;
39 ptr_ = p;
40 }
41 }
rmistry@google.comd6176b02012-08-23 18:14:13 +000042
reed@android.com8a1c16f2008-12-17 15:59:43 +000043 T& operator[](int i) const {
44 return ptr_[i];
45 }
46};
47
48///////////////////////////////////////////////////////////////////////////////
49
50namespace image_codec {
51
52class BmpDecoderCallback {
53 public:
54 BmpDecoderCallback() { }
55 virtual ~BmpDecoderCallback() {}
rmistry@google.comd6176b02012-08-23 18:14:13 +000056
reed@android.com8a1c16f2008-12-17 15:59:43 +000057 /**
58 * This is called once for an image. It is passed the width and height and
59 * should return the address of a buffer that is large enough to store
halcanary96fcdcc2015-08-27 07:41:13 -070060 * all of the resulting pixels (widht * height * 3 bytes). If it returns nullptr,
reed@android.com8a1c16f2008-12-17 15:59:43 +000061 * then the decoder will abort, but return true, as the caller has received
62 * valid dimensions.
63 */
64 virtual uint8* SetSize(int width, int height) = 0;
rmistry@google.comd6176b02012-08-23 18:14:13 +000065
reed@android.com8a1c16f2008-12-17 15:59:43 +000066 private:
67 DISALLOW_EVIL_CONSTRUCTORS(BmpDecoderCallback);
68};
69
70class BmpDecoderHelper {
71 public:
72 BmpDecoderHelper() { }
73 ~BmpDecoderHelper() { }
74 bool DecodeImage(const char* data,
robertphillips@google.coma4662862013-11-21 14:24:16 +000075 size_t len,
reed@android.com8a1c16f2008-12-17 15:59:43 +000076 int max_pixels,
77 BmpDecoderCallback* callback);
78
79 private:
80 DISALLOW_EVIL_CONSTRUCTORS(BmpDecoderHelper);
81
82 void DoRLEDecode();
83 void DoStandardDecode();
84 void PutPixel(int x, int y, uint8 col);
85
86 int GetInt();
87 int GetShort();
88 uint8 GetByte();
89 int CalcShiftRight(uint32 mask);
90 int CalcShiftLeft(uint32 mask);
91
92 const uint8* data_;
robertphillips@google.coma4662862013-11-21 14:24:16 +000093 size_t pos_;
94 size_t len_;
reed@android.com8a1c16f2008-12-17 15:59:43 +000095 int width_;
96 int height_;
97 int bpp_;
98 int pixelPad_;
99 int rowPad_;
100 scoped_array<uint8> colTab_;
101 uint32 redBits_;
102 uint32 greenBits_;
103 uint32 blueBits_;
104 int redShiftRight_;
105 int greenShiftRight_;
106 int blueShiftRight_;
107 int redShiftLeft_;
108 int greenShiftLeft_;
109 int blueShiftLeft_;
110 uint8* output_;
111 bool inverted_;
112};
rmistry@google.comd6176b02012-08-23 18:14:13 +0000113
reed@android.com8a1c16f2008-12-17 15:59:43 +0000114} // namespace
115
116#endif