msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkCodecPriv_DEFINED |
| 9 | #define SkCodecPriv_DEFINED |
| 10 | |
Cary Clark | a4083c9 | 2017-09-15 11:59:23 -0400 | [diff] [blame] | 11 | #include "SkColorData.h" |
msarett | 9e43cab | 2015-04-29 07:38:43 -0700 | [diff] [blame] | 12 | #include "SkColorTable.h" |
Matt Sarett | 1a85ca5 | 2016-11-04 11:52:48 -0400 | [diff] [blame] | 13 | #include "SkEncodedInfo.h" |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 14 | #include "SkEncodedOrigin.h" |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 15 | #include "SkImageInfo.h" |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 16 | #include "SkTypes.h" |
| 17 | |
Leon Scroggins III | 2cc7d13 | 2018-01-19 12:12:13 -0500 | [diff] [blame] | 18 | #ifdef SK_PRINT_CODEC_MESSAGES |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 19 | #define SkCodecPrintf SkDebugf |
| 20 | #else |
| 21 | #define SkCodecPrintf(...) |
| 22 | #endif |
| 23 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 24 | // FIXME: Consider sharing with dm, nanbench, and tools. |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 25 | static inline float get_scale_from_sample_size(int sampleSize) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 26 | return 1.0f / ((float) sampleSize); |
| 27 | } |
| 28 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 29 | static inline bool is_valid_subset(const SkIRect& subset, const SkISize& imageDims) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 30 | return SkIRect::MakeSize(imageDims).contains(subset); |
| 31 | } |
| 32 | |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 33 | /* |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 34 | * returns a scaled dimension based on the original dimension and the sampleSize |
| 35 | * NOTE: we round down here for scaled dimension to match the behavior of SkImageDecoder |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 36 | * FIXME: I think we should call this get_sampled_dimension(). |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 37 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 38 | static inline int get_scaled_dimension(int srcDimension, int sampleSize) { |
msarett | 10522ff | 2015-09-07 08:54:01 -0700 | [diff] [blame] | 39 | if (sampleSize > srcDimension) { |
| 40 | return 1; |
| 41 | } |
| 42 | return srcDimension / sampleSize; |
| 43 | } |
| 44 | |
| 45 | /* |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 46 | * Returns the first coordinate that we will keep during a scaled decode. |
| 47 | * The output can be interpreted as an x-coordinate or a y-coordinate. |
| 48 | * |
| 49 | * This does not need to be called and is not called when sampleFactor == 1. |
| 50 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 51 | static inline int get_start_coord(int sampleFactor) { return sampleFactor / 2; }; |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Given a coordinate in the original image, this returns the corresponding |
| 55 | * coordinate in the scaled image. This function is meaningless if |
| 56 | * IsCoordNecessary returns false. |
| 57 | * The output can be interpreted as an x-coordinate or a y-coordinate. |
| 58 | * |
| 59 | * This does not need to be called and is not called when sampleFactor == 1. |
| 60 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 61 | static inline int get_dst_coord(int srcCoord, int sampleFactor) { return srcCoord / sampleFactor; }; |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 62 | |
| 63 | /* |
| 64 | * When scaling, we will discard certain y-coordinates (rows) and |
| 65 | * x-coordinates (columns). This function returns true if we should keep the |
| 66 | * coordinate and false otherwise. |
| 67 | * The inputs may be x-coordinates or y-coordinates. |
| 68 | * |
| 69 | * This does not need to be called and is not called when sampleFactor == 1. |
| 70 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 71 | static inline bool is_coord_necessary(int srcCoord, int sampleFactor, int scaledDim) { |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 72 | // Get the first coordinate that we want to keep |
| 73 | int startCoord = get_start_coord(sampleFactor); |
| 74 | |
| 75 | // Return false on edge cases |
| 76 | if (srcCoord < startCoord || get_dst_coord(srcCoord, sampleFactor) >= scaledDim) { |
| 77 | return false; |
| 78 | } |
| 79 | |
| 80 | // Every sampleFactor rows are necessary |
| 81 | return ((srcCoord - startCoord) % sampleFactor) == 0; |
| 82 | } |
| 83 | |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 84 | static inline bool valid_alpha(SkAlphaType dstAlpha, bool srcIsOpaque) { |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 85 | if (kUnknown_SkAlphaType == dstAlpha) { |
| 86 | return false; |
| 87 | } |
| 88 | |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 89 | if (srcIsOpaque) { |
| 90 | if (kOpaque_SkAlphaType != dstAlpha) { |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 91 | SkCodecPrintf("Warning: an opaque image should be decoded as opaque " |
| 92 | "- it is being decoded as non-opaque, which will draw slower\n"); |
msarett | 4ab9d5f | 2015-08-06 15:34:42 -0700 | [diff] [blame] | 93 | } |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 94 | return true; |
msarett | 4ab9d5f | 2015-08-06 15:34:42 -0700 | [diff] [blame] | 95 | } |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 96 | |
| 97 | return dstAlpha != kOpaque_SkAlphaType; |
msarett | 4ab9d5f | 2015-08-06 15:34:42 -0700 | [diff] [blame] | 98 | } |
| 99 | |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 100 | /* |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 101 | * If there is a color table, get a pointer to the colors, otherwise return nullptr |
msarett | 99f567e | 2015-08-05 12:58:26 -0700 | [diff] [blame] | 102 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 103 | static inline const SkPMColor* get_color_ptr(SkColorTable* colorTable) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 104 | return nullptr != colorTable ? colorTable->readColors() : nullptr; |
msarett | 99f567e | 2015-08-05 12:58:26 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /* |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 108 | * Compute row bytes for an image using pixels per byte |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 109 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 110 | static inline size_t compute_row_bytes_ppb(int width, uint32_t pixelsPerByte) { |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 111 | return (width + pixelsPerByte - 1) / pixelsPerByte; |
| 112 | } |
| 113 | |
| 114 | /* |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 115 | * Compute row bytes for an image using bytes per pixel |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 116 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 117 | static inline size_t compute_row_bytes_bpp(int width, uint32_t bytesPerPixel) { |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 118 | return width * bytesPerPixel; |
| 119 | } |
| 120 | |
| 121 | /* |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 122 | * Compute row bytes for an image |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 123 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 124 | static inline size_t compute_row_bytes(int width, uint32_t bitsPerPixel) { |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 125 | if (bitsPerPixel < 16) { |
| 126 | SkASSERT(0 == 8 % bitsPerPixel); |
| 127 | const uint32_t pixelsPerByte = 8 / bitsPerPixel; |
| 128 | return compute_row_bytes_ppb(width, pixelsPerByte); |
| 129 | } else { |
| 130 | SkASSERT(0 == bitsPerPixel % 8); |
| 131 | const uint32_t bytesPerPixel = bitsPerPixel / 8; |
| 132 | return compute_row_bytes_bpp(width, bytesPerPixel); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | /* |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 137 | * Get a byte from a buffer |
| 138 | * This method is unsafe, the caller is responsible for performing a check |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 139 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 140 | static inline uint8_t get_byte(uint8_t* buffer, uint32_t i) { |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 141 | return buffer[i]; |
| 142 | } |
| 143 | |
| 144 | /* |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 145 | * Get a short from a buffer |
| 146 | * This method is unsafe, the caller is responsible for performing a check |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 147 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 148 | static inline uint16_t get_short(uint8_t* buffer, uint32_t i) { |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 149 | uint16_t result; |
| 150 | memcpy(&result, &(buffer[i]), 2); |
| 151 | #ifdef SK_CPU_BENDIAN |
| 152 | return SkEndianSwap16(result); |
| 153 | #else |
| 154 | return result; |
| 155 | #endif |
| 156 | } |
| 157 | |
| 158 | /* |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 159 | * Get an int from a buffer |
| 160 | * This method is unsafe, the caller is responsible for performing a check |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 161 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 162 | static inline uint32_t get_int(uint8_t* buffer, uint32_t i) { |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 163 | uint32_t result; |
| 164 | memcpy(&result, &(buffer[i]), 4); |
| 165 | #ifdef SK_CPU_BENDIAN |
| 166 | return SkEndianSwap32(result); |
| 167 | #else |
| 168 | return result; |
| 169 | #endif |
| 170 | } |
| 171 | |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 172 | /* |
| 173 | * @param data Buffer to read bytes from |
| 174 | * @param isLittleEndian Output parameter |
| 175 | * Indicates if the data is little endian |
| 176 | * Is unaffected on false returns |
| 177 | */ |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 178 | static inline bool is_valid_endian_marker(const uint8_t* data, bool* isLittleEndian) { |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 179 | // II indicates Intel (little endian) and MM indicates motorola (big endian). |
| 180 | if (('I' != data[0] || 'I' != data[1]) && ('M' != data[0] || 'M' != data[1])) { |
| 181 | return false; |
| 182 | } |
| 183 | |
| 184 | *isLittleEndian = ('I' == data[0]); |
| 185 | return true; |
| 186 | } |
| 187 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 188 | static inline uint16_t get_endian_short(const uint8_t* data, bool littleEndian) { |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 189 | if (littleEndian) { |
| 190 | return (data[1] << 8) | (data[0]); |
| 191 | } |
| 192 | |
| 193 | return (data[0] << 8) | (data[1]); |
| 194 | } |
| 195 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 196 | static inline SkPMColor premultiply_argb_as_rgba(U8CPU a, U8CPU r, U8CPU g, U8CPU b) { |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 197 | if (a != 255) { |
| 198 | r = SkMulDiv255Round(r, a); |
| 199 | g = SkMulDiv255Round(g, a); |
| 200 | b = SkMulDiv255Round(b, a); |
| 201 | } |
| 202 | |
| 203 | return SkPackARGB_as_RGBA(a, r, g, b); |
| 204 | } |
| 205 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 206 | static inline SkPMColor premultiply_argb_as_bgra(U8CPU a, U8CPU r, U8CPU g, U8CPU b) { |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 207 | if (a != 255) { |
| 208 | r = SkMulDiv255Round(r, a); |
| 209 | g = SkMulDiv255Round(g, a); |
| 210 | b = SkMulDiv255Round(b, a); |
| 211 | } |
| 212 | |
| 213 | return SkPackARGB_as_BGRA(a, r, g, b); |
| 214 | } |
| 215 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 216 | static inline bool is_rgba(SkColorType colorType) { |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 217 | #ifdef SK_PMCOLOR_IS_RGBA |
| 218 | return (kBGRA_8888_SkColorType != colorType); |
| 219 | #else |
| 220 | return (kRGBA_8888_SkColorType == colorType); |
| 221 | #endif |
| 222 | } |
| 223 | |
| 224 | // Method for coverting to a 32 bit pixel. |
| 225 | typedef uint32_t (*PackColorProc)(U8CPU a, U8CPU r, U8CPU g, U8CPU b); |
| 226 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 227 | static inline PackColorProc choose_pack_color_proc(bool isPremul, SkColorType colorType) { |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 228 | bool isRGBA = is_rgba(colorType); |
| 229 | if (isPremul) { |
| 230 | if (isRGBA) { |
| 231 | return &premultiply_argb_as_rgba; |
| 232 | } else { |
| 233 | return &premultiply_argb_as_bgra; |
| 234 | } |
| 235 | } else { |
| 236 | if (isRGBA) { |
| 237 | return &SkPackARGB_as_RGBA; |
| 238 | } else { |
| 239 | return &SkPackARGB_as_BGRA; |
| 240 | } |
| 241 | } |
| 242 | } |
| 243 | |
Leon Scroggins III | da3e9ad | 2018-01-26 15:48:26 -0500 | [diff] [blame] | 244 | bool is_orientation_marker(const uint8_t* data, size_t data_length, SkEncodedOrigin* orientation); |
| 245 | |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 246 | #endif // SkCodecPriv_DEFINED |