msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 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 | #include "SkCodec.h" |
mtklein | e721a8e | 2016-02-06 19:12:23 -0800 | [diff] [blame] | 9 | #include "SkMSAN.h" |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 10 | #include "SkJpegCodec.h" |
| 11 | #include "SkJpegDecoderMgr.h" |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 12 | #include "SkCodecPriv.h" |
| 13 | #include "SkColorPriv.h" |
| 14 | #include "SkStream.h" |
| 15 | #include "SkTemplates.h" |
| 16 | #include "SkTypes.h" |
| 17 | |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 18 | // stdio is needed for libjpeg-turbo |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 19 | #include <stdio.h> |
msarett | c1d0312 | 2016-03-25 08:58:55 -0700 | [diff] [blame] | 20 | #include "SkJpegUtility.h" |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 21 | |
mtklein | dc90b53 | 2016-07-28 14:45:28 -0700 | [diff] [blame] | 22 | // This warning triggers false postives way too often in here. |
| 23 | #if defined(__GNUC__) && !defined(__clang__) |
| 24 | #pragma GCC diagnostic ignored "-Wclobbered" |
| 25 | #endif |
| 26 | |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 27 | extern "C" { |
| 28 | #include "jerror.h" |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 29 | #include "jpeglib.h" |
| 30 | } |
| 31 | |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 32 | bool SkJpegCodec::IsJpeg(const void* buffer, size_t bytesRead) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 33 | static const uint8_t jpegSig[] = { 0xFF, 0xD8, 0xFF }; |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 34 | return bytesRead >= 3 && !memcmp(buffer, jpegSig, sizeof(jpegSig)); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 35 | } |
| 36 | |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 37 | static uint32_t get_endian_int(const uint8_t* data, bool littleEndian) { |
| 38 | if (littleEndian) { |
| 39 | return (data[3] << 24) | (data[2] << 16) | (data[1] << 8) | (data[0]); |
| 40 | } |
| 41 | |
| 42 | return (data[0] << 24) | (data[1] << 16) | (data[2] << 8) | (data[3]); |
| 43 | } |
| 44 | |
| 45 | const uint32_t kExifHeaderSize = 14; |
| 46 | const uint32_t kICCHeaderSize = 14; |
| 47 | const uint32_t kExifMarker = JPEG_APP0 + 1; |
| 48 | const uint32_t kICCMarker = JPEG_APP0 + 2; |
| 49 | |
| 50 | static bool is_orientation_marker(jpeg_marker_struct* marker, SkCodec::Origin* orientation) { |
| 51 | if (kExifMarker != marker->marker || marker->data_length < kExifHeaderSize) { |
| 52 | return false; |
| 53 | } |
| 54 | |
| 55 | const uint8_t* data = marker->data; |
| 56 | static const uint8_t kExifSig[] { 'E', 'x', 'i', 'f', '\0' }; |
| 57 | if (memcmp(data, kExifSig, sizeof(kExifSig))) { |
| 58 | return false; |
| 59 | } |
| 60 | |
| 61 | bool littleEndian; |
| 62 | if (!is_valid_endian_marker(data + 6, &littleEndian)) { |
| 63 | return false; |
| 64 | } |
| 65 | |
| 66 | // Get the offset from the start of the marker. |
| 67 | // Account for 'E', 'x', 'i', 'f', '\0', '<fill byte>'. |
| 68 | uint32_t offset = get_endian_int(data + 10, littleEndian); |
| 69 | offset += sizeof(kExifSig) + 1; |
| 70 | |
| 71 | // Require that the marker is at least large enough to contain the number of entries. |
| 72 | if (marker->data_length < offset + 2) { |
| 73 | return false; |
| 74 | } |
| 75 | uint32_t numEntries = get_endian_short(data + offset, littleEndian); |
| 76 | |
| 77 | // Tag (2 bytes), Datatype (2 bytes), Number of elements (4 bytes), Data (4 bytes) |
| 78 | const uint32_t kEntrySize = 12; |
| 79 | numEntries = SkTMin(numEntries, (marker->data_length - offset - 2) / kEntrySize); |
| 80 | |
| 81 | // Advance the data to the start of the entries. |
| 82 | data += offset + 2; |
| 83 | |
| 84 | const uint16_t kOriginTag = 0x112; |
| 85 | const uint16_t kOriginType = 3; |
| 86 | for (uint32_t i = 0; i < numEntries; i++, data += kEntrySize) { |
| 87 | uint16_t tag = get_endian_short(data, littleEndian); |
| 88 | uint16_t type = get_endian_short(data + 2, littleEndian); |
| 89 | uint32_t count = get_endian_int(data + 4, littleEndian); |
| 90 | if (kOriginTag == tag && kOriginType == type && 1 == count) { |
| 91 | uint16_t val = get_endian_short(data + 8, littleEndian); |
| 92 | if (0 < val && val <= SkCodec::kLast_Origin) { |
| 93 | *orientation = (SkCodec::Origin) val; |
| 94 | return true; |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | static SkCodec::Origin get_exif_orientation(jpeg_decompress_struct* dinfo) { |
| 103 | SkCodec::Origin orientation; |
| 104 | for (jpeg_marker_struct* marker = dinfo->marker_list; marker; marker = marker->next) { |
| 105 | if (is_orientation_marker(marker, &orientation)) { |
| 106 | return orientation; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | return SkCodec::kDefault_Origin; |
| 111 | } |
| 112 | |
| 113 | static bool is_icc_marker(jpeg_marker_struct* marker) { |
| 114 | if (kICCMarker != marker->marker || marker->data_length < kICCHeaderSize) { |
| 115 | return false; |
| 116 | } |
| 117 | |
| 118 | static const uint8_t kICCSig[] { 'I', 'C', 'C', '_', 'P', 'R', 'O', 'F', 'I', 'L', 'E', '\0' }; |
| 119 | return !memcmp(marker->data, kICCSig, sizeof(kICCSig)); |
| 120 | } |
| 121 | |
| 122 | /* |
| 123 | * ICC profiles may be stored using a sequence of multiple markers. We obtain the ICC profile |
| 124 | * in two steps: |
| 125 | * (1) Discover all ICC profile markers and verify that they are numbered properly. |
| 126 | * (2) Copy the data from each marker into a contiguous ICC profile. |
| 127 | */ |
msarett | 9876ac5 | 2016-06-01 14:47:18 -0700 | [diff] [blame] | 128 | static sk_sp<SkData> get_icc_profile(jpeg_decompress_struct* dinfo) { |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 129 | // Note that 256 will be enough storage space since each markerIndex is stored in 8-bits. |
| 130 | jpeg_marker_struct* markerSequence[256]; |
| 131 | memset(markerSequence, 0, sizeof(markerSequence)); |
| 132 | uint8_t numMarkers = 0; |
| 133 | size_t totalBytes = 0; |
| 134 | |
| 135 | // Discover any ICC markers and verify that they are numbered properly. |
| 136 | for (jpeg_marker_struct* marker = dinfo->marker_list; marker; marker = marker->next) { |
| 137 | if (is_icc_marker(marker)) { |
| 138 | // Verify that numMarkers is valid and consistent. |
| 139 | if (0 == numMarkers) { |
| 140 | numMarkers = marker->data[13]; |
| 141 | if (0 == numMarkers) { |
| 142 | SkCodecPrintf("ICC Profile Error: numMarkers must be greater than zero.\n"); |
| 143 | return nullptr; |
| 144 | } |
| 145 | } else if (numMarkers != marker->data[13]) { |
| 146 | SkCodecPrintf("ICC Profile Error: numMarkers must be consistent.\n"); |
| 147 | return nullptr; |
| 148 | } |
| 149 | |
| 150 | // Verify that the markerIndex is valid and unique. Note that zero is not |
| 151 | // a valid index. |
| 152 | uint8_t markerIndex = marker->data[12]; |
| 153 | if (markerIndex == 0 || markerIndex > numMarkers) { |
| 154 | SkCodecPrintf("ICC Profile Error: markerIndex is invalid.\n"); |
| 155 | return nullptr; |
| 156 | } |
| 157 | if (markerSequence[markerIndex]) { |
| 158 | SkCodecPrintf("ICC Profile Error: Duplicate value of markerIndex.\n"); |
| 159 | return nullptr; |
| 160 | } |
| 161 | markerSequence[markerIndex] = marker; |
| 162 | SkASSERT(marker->data_length >= kICCHeaderSize); |
| 163 | totalBytes += marker->data_length - kICCHeaderSize; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | if (0 == totalBytes) { |
| 168 | // No non-empty ICC profile markers were found. |
| 169 | return nullptr; |
| 170 | } |
| 171 | |
| 172 | // Combine the ICC marker data into a contiguous profile. |
msarett | 9876ac5 | 2016-06-01 14:47:18 -0700 | [diff] [blame] | 173 | sk_sp<SkData> iccData = SkData::MakeUninitialized(totalBytes); |
| 174 | void* dst = iccData->writable_data(); |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 175 | for (uint32_t i = 1; i <= numMarkers; i++) { |
| 176 | jpeg_marker_struct* marker = markerSequence[i]; |
| 177 | if (!marker) { |
| 178 | SkCodecPrintf("ICC Profile Error: Missing marker %d of %d.\n", i, numMarkers); |
| 179 | return nullptr; |
| 180 | } |
| 181 | |
| 182 | void* src = SkTAddOffset<void>(marker->data, kICCHeaderSize); |
| 183 | size_t bytes = marker->data_length - kICCHeaderSize; |
| 184 | memcpy(dst, src, bytes); |
| 185 | dst = SkTAddOffset<void>(dst, bytes); |
| 186 | } |
| 187 | |
msarett | 9876ac5 | 2016-06-01 14:47:18 -0700 | [diff] [blame] | 188 | return iccData; |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 189 | } |
| 190 | |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 191 | bool SkJpegCodec::ReadHeader(SkStream* stream, SkCodec** codecOut, |
| 192 | JpegDecoderMgr** decoderMgrOut) { |
| 193 | |
| 194 | // Create a JpegDecoderMgr to own all of the decompress information |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 195 | SkAutoTDelete<JpegDecoderMgr> decoderMgr(new JpegDecoderMgr(stream)); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 196 | |
| 197 | // libjpeg errors will be caught and reported here |
mtklein | 2f42896 | 2016-07-28 13:59:59 -0700 | [diff] [blame] | 198 | if (setjmp(decoderMgr->getJmpBuf())) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 199 | return decoderMgr->returnFalse("ReadHeader"); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | // Initialize the decompress info and the source manager |
| 203 | decoderMgr->init(); |
| 204 | |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 205 | // Instruct jpeg library to save the markers that we care about. Since |
| 206 | // the orientation and color profile will not change, we can skip this |
| 207 | // step on rewinds. |
| 208 | if (codecOut) { |
| 209 | jpeg_save_markers(decoderMgr->dinfo(), kExifMarker, 0xFFFF); |
| 210 | jpeg_save_markers(decoderMgr->dinfo(), kICCMarker, 0xFFFF); |
| 211 | } |
| 212 | |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 213 | // Read the jpeg header |
msarett | fbccb59 | 2015-09-01 06:43:41 -0700 | [diff] [blame] | 214 | if (JPEG_HEADER_OK != jpeg_read_header(decoderMgr->dinfo(), true)) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 215 | return decoderMgr->returnFalse("ReadHeader"); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 216 | } |
| 217 | |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 218 | if (codecOut) { |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 219 | // Get the encoded color type |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 220 | SkEncodedInfo::Color color; |
| 221 | if (!decoderMgr->getEncodedColor(&color)) { |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 222 | return false; |
| 223 | } |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 224 | |
| 225 | // Create image info object and the codec |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 226 | SkEncodedInfo info = SkEncodedInfo::Make(color, SkEncodedInfo::kOpaque_Alpha, 8); |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 227 | |
| 228 | Origin orientation = get_exif_orientation(decoderMgr->dinfo()); |
msarett | 9876ac5 | 2016-06-01 14:47:18 -0700 | [diff] [blame] | 229 | sk_sp<SkData> iccData = get_icc_profile(decoderMgr->dinfo()); |
| 230 | sk_sp<SkColorSpace> colorSpace = nullptr; |
| 231 | if (iccData) { |
Brian Osman | 526972e | 2016-10-24 09:24:02 -0400 | [diff] [blame] | 232 | colorSpace = SkColorSpace::MakeICC(iccData->data(), iccData->size()); |
msarett | 9876ac5 | 2016-06-01 14:47:18 -0700 | [diff] [blame] | 233 | if (!colorSpace) { |
| 234 | SkCodecPrintf("Could not create SkColorSpace from ICC data.\n"); |
| 235 | } |
| 236 | } |
msarett | f34cd63 | 2016-05-25 10:13:53 -0700 | [diff] [blame] | 237 | if (!colorSpace) { |
| 238 | // Treat unmarked jpegs as sRGB. |
Brian Osman | 526972e | 2016-10-24 09:24:02 -0400 | [diff] [blame] | 239 | colorSpace = SkColorSpace::MakeNamed(SkColorSpace::kSRGB_Named); |
msarett | f34cd63 | 2016-05-25 10:13:53 -0700 | [diff] [blame] | 240 | } |
msarett | 0e6274f | 2016-03-21 08:04:40 -0700 | [diff] [blame] | 241 | |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 242 | const int width = decoderMgr->dinfo()->image_width; |
| 243 | const int height = decoderMgr->dinfo()->image_height; |
msarett | f34cd63 | 2016-05-25 10:13:53 -0700 | [diff] [blame] | 244 | *codecOut = new SkJpegCodec(width, height, info, stream, decoderMgr.release(), |
Matt Sarett | a9e9bfc | 2016-11-01 12:19:50 -0400 | [diff] [blame^] | 245 | std::move(colorSpace), orientation); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 246 | } else { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 247 | SkASSERT(nullptr != decoderMgrOut); |
mtklein | 18300a3 | 2016-03-16 13:53:35 -0700 | [diff] [blame] | 248 | *decoderMgrOut = decoderMgr.release(); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 249 | } |
| 250 | return true; |
| 251 | } |
| 252 | |
| 253 | SkCodec* SkJpegCodec::NewFromStream(SkStream* stream) { |
| 254 | SkAutoTDelete<SkStream> streamDeleter(stream); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 255 | SkCodec* codec = nullptr; |
| 256 | if (ReadHeader(stream, &codec, nullptr)) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 257 | // Codec has taken ownership of the stream, we do not need to delete it |
| 258 | SkASSERT(codec); |
mtklein | 18300a3 | 2016-03-16 13:53:35 -0700 | [diff] [blame] | 259 | streamDeleter.release(); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 260 | return codec; |
| 261 | } |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 262 | return nullptr; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 263 | } |
| 264 | |
msarett | c30c418 | 2016-04-20 11:53:35 -0700 | [diff] [blame] | 265 | SkJpegCodec::SkJpegCodec(int width, int height, const SkEncodedInfo& info, SkStream* stream, |
Matt Sarett | a9e9bfc | 2016-11-01 12:19:50 -0400 | [diff] [blame^] | 266 | JpegDecoderMgr* decoderMgr, sk_sp<SkColorSpace> colorSpace, Origin origin) |
msarett | f34cd63 | 2016-05-25 10:13:53 -0700 | [diff] [blame] | 267 | : INHERITED(width, height, info, stream, std::move(colorSpace), origin) |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 268 | , fDecoderMgr(decoderMgr) |
msarett | fbccb59 | 2015-09-01 06:43:41 -0700 | [diff] [blame] | 269 | , fReadyState(decoderMgr->dinfo()->global_state) |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 270 | , fSwizzleSrcRow(nullptr) |
| 271 | , fColorXformSrcRow(nullptr) |
msarett | 91c22b2 | 2016-02-22 12:27:46 -0800 | [diff] [blame] | 272 | , fSwizzlerSubset(SkIRect::MakeEmpty()) |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 273 | {} |
| 274 | |
| 275 | /* |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 276 | * Return the row bytes of a particular image type and width |
| 277 | */ |
msarett | 23e78d3 | 2016-02-06 15:58:50 -0800 | [diff] [blame] | 278 | static size_t get_row_bytes(const j_decompress_ptr dinfo) { |
msarett | 70e418b | 2016-02-12 12:35:48 -0800 | [diff] [blame] | 279 | const size_t colorBytes = (dinfo->out_color_space == JCS_RGB565) ? 2 : |
| 280 | dinfo->out_color_components; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 281 | return dinfo->output_width * colorBytes; |
| 282 | |
| 283 | } |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 284 | |
| 285 | /* |
| 286 | * Calculate output dimensions based on the provided factors. |
| 287 | * |
| 288 | * Not to be used on the actual jpeg_decompress_struct used for decoding, since it will |
| 289 | * incorrectly modify num_components. |
| 290 | */ |
| 291 | void calc_output_dimensions(jpeg_decompress_struct* dinfo, unsigned int num, unsigned int denom) { |
| 292 | dinfo->num_components = 0; |
| 293 | dinfo->scale_num = num; |
| 294 | dinfo->scale_denom = denom; |
| 295 | jpeg_calc_output_dimensions(dinfo); |
| 296 | } |
| 297 | |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 298 | /* |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 299 | * Return a valid set of output dimensions for this decoder, given an input scale |
| 300 | */ |
| 301 | SkISize SkJpegCodec::onGetScaledDimensions(float desiredScale) const { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 302 | // libjpeg-turbo supports scaling by 1/8, 1/4, 3/8, 1/2, 5/8, 3/4, 7/8, and 1/1, so we will |
| 303 | // support these as well |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 304 | unsigned int num; |
| 305 | unsigned int denom = 8; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 306 | if (desiredScale >= 0.9375) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 307 | num = 8; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 308 | } else if (desiredScale >= 0.8125) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 309 | num = 7; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 310 | } else if (desiredScale >= 0.6875f) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 311 | num = 6; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 312 | } else if (desiredScale >= 0.5625f) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 313 | num = 5; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 314 | } else if (desiredScale >= 0.4375f) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 315 | num = 4; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 316 | } else if (desiredScale >= 0.3125f) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 317 | num = 3; |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 318 | } else if (desiredScale >= 0.1875f) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 319 | num = 2; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 320 | } else { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 321 | num = 1; |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | // Set up a fake decompress struct in order to use libjpeg to calculate output dimensions |
| 325 | jpeg_decompress_struct dinfo; |
mtklein | f7aaadb | 2015-04-16 06:09:27 -0700 | [diff] [blame] | 326 | sk_bzero(&dinfo, sizeof(dinfo)); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 327 | dinfo.image_width = this->getInfo().width(); |
| 328 | dinfo.image_height = this->getInfo().height(); |
msarett | fbccb59 | 2015-09-01 06:43:41 -0700 | [diff] [blame] | 329 | dinfo.global_state = fReadyState; |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 330 | calc_output_dimensions(&dinfo, num, denom); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 331 | |
| 332 | // Return the calculated output dimensions for the given scale |
| 333 | return SkISize::Make(dinfo.output_width, dinfo.output_height); |
| 334 | } |
| 335 | |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 336 | bool SkJpegCodec::onRewind() { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 337 | JpegDecoderMgr* decoderMgr = nullptr; |
| 338 | if (!ReadHeader(this->stream(), nullptr, &decoderMgr)) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 339 | return fDecoderMgr->returnFalse("onRewind"); |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 340 | } |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 341 | SkASSERT(nullptr != decoderMgr); |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 342 | fDecoderMgr.reset(decoderMgr); |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 343 | |
| 344 | fSwizzler.reset(nullptr); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 345 | fSwizzleSrcRow = nullptr; |
| 346 | fColorXformSrcRow = nullptr; |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 347 | fStorage.reset(); |
| 348 | |
scroggo | b427db1 | 2015-08-12 07:24:13 -0700 | [diff] [blame] | 349 | return true; |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | /* |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 353 | * Checks if the conversion between the input image and the requested output |
| 354 | * image has been implemented |
| 355 | * Sets the output color space |
| 356 | */ |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 357 | bool SkJpegCodec::setOutputColorSpace(const SkImageInfo& dstInfo) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 358 | if (kUnknown_SkAlphaType == dstInfo.alphaType()) { |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 359 | return false; |
| 360 | } |
| 361 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 362 | if (kOpaque_SkAlphaType != dstInfo.alphaType()) { |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 363 | SkCodecPrintf("Warning: an opaque image should be decoded as opaque " |
| 364 | "- it is being decoded as non-opaque, which will draw slower\n"); |
| 365 | } |
| 366 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 367 | // Check if we will decode to CMYK. libjpeg-turbo does not convert CMYK to RGBA, so |
| 368 | // we must do it ourselves. |
| 369 | J_COLOR_SPACE encodedColorType = fDecoderMgr->dinfo()->jpeg_color_space; |
| 370 | bool isCMYK = (JCS_CMYK == encodedColorType || JCS_YCCK == encodedColorType); |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 371 | |
| 372 | // Check for valid color types and set the output color space |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 373 | switch (dstInfo.colorType()) { |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 374 | case kRGBA_8888_SkColorType: |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 375 | if (isCMYK) { |
| 376 | fDecoderMgr->dinfo()->out_color_space = JCS_CMYK; |
| 377 | } else { |
msarett | f25bff9 | 2016-07-21 12:00:24 -0700 | [diff] [blame] | 378 | fDecoderMgr->dinfo()->out_color_space = JCS_EXT_RGBA; |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 379 | } |
| 380 | return true; |
| 381 | case kBGRA_8888_SkColorType: |
| 382 | if (isCMYK) { |
| 383 | fDecoderMgr->dinfo()->out_color_space = JCS_CMYK; |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 384 | } else if (this->colorXform()) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 385 | // Our color transformation code requires RGBA order inputs, but it'll swizzle |
| 386 | // to BGRA for us. |
| 387 | fDecoderMgr->dinfo()->out_color_space = JCS_EXT_RGBA; |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 388 | } else { |
msarett | f25bff9 | 2016-07-21 12:00:24 -0700 | [diff] [blame] | 389 | fDecoderMgr->dinfo()->out_color_space = JCS_EXT_BGRA; |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 390 | } |
| 391 | return true; |
| 392 | case kRGB_565_SkColorType: |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 393 | if (this->colorXform()) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 394 | return false; |
| 395 | } |
| 396 | |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 397 | if (isCMYK) { |
scroggo | ef27d89 | 2015-10-23 09:29:22 -0700 | [diff] [blame] | 398 | fDecoderMgr->dinfo()->out_color_space = JCS_CMYK; |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 399 | } else { |
msarett | 8ff6ca6 | 2015-09-18 12:06:04 -0700 | [diff] [blame] | 400 | fDecoderMgr->dinfo()->dither_mode = JDITHER_NONE; |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 401 | fDecoderMgr->dinfo()->out_color_space = JCS_RGB565; |
| 402 | } |
| 403 | return true; |
| 404 | case kGray_8_SkColorType: |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 405 | if (this->colorXform() || JCS_GRAYSCALE != encodedColorType) { |
msarett | 39979d8 | 2016-07-28 17:11:18 -0700 | [diff] [blame] | 406 | return false; |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | fDecoderMgr->dinfo()->out_color_space = JCS_GRAYSCALE; |
| 410 | return true; |
| 411 | case kRGBA_F16_SkColorType: |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 412 | SkASSERT(this->colorXform()); |
| 413 | |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 414 | if (!dstInfo.colorSpace()->gammaIsLinear()) { |
| 415 | return false; |
| 416 | } |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 417 | |
| 418 | if (isCMYK) { |
| 419 | fDecoderMgr->dinfo()->out_color_space = JCS_CMYK; |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 420 | } else { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 421 | fDecoderMgr->dinfo()->out_color_space = JCS_EXT_RGBA; |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 422 | } |
| 423 | return true; |
| 424 | default: |
| 425 | return false; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | /* |
mtklein | e721a8e | 2016-02-06 19:12:23 -0800 | [diff] [blame] | 430 | * Checks if we can natively scale to the requested dimensions and natively scales the |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 431 | * dimensions if possible |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 432 | */ |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 433 | bool SkJpegCodec::onDimensionsSupported(const SkISize& size) { |
mtklein | 2f42896 | 2016-07-28 13:59:59 -0700 | [diff] [blame] | 434 | if (setjmp(fDecoderMgr->getJmpBuf())) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 435 | return fDecoderMgr->returnFalse("onDimensionsSupported"); |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | const unsigned int dstWidth = size.width(); |
| 439 | const unsigned int dstHeight = size.height(); |
| 440 | |
| 441 | // Set up a fake decompress struct in order to use libjpeg to calculate output dimensions |
| 442 | // FIXME: Why is this necessary? |
| 443 | jpeg_decompress_struct dinfo; |
| 444 | sk_bzero(&dinfo, sizeof(dinfo)); |
| 445 | dinfo.image_width = this->getInfo().width(); |
| 446 | dinfo.image_height = this->getInfo().height(); |
| 447 | dinfo.global_state = fReadyState; |
| 448 | |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 449 | // libjpeg-turbo can scale to 1/8, 1/4, 3/8, 1/2, 5/8, 3/4, 7/8, and 1/1 |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 450 | unsigned int num = 8; |
| 451 | const unsigned int denom = 8; |
| 452 | calc_output_dimensions(&dinfo, num, denom); |
| 453 | while (dinfo.output_width != dstWidth || dinfo.output_height != dstHeight) { |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 454 | |
| 455 | // Return a failure if we have tried all of the possible scales |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 456 | if (1 == num || dstWidth > dinfo.output_width || dstHeight > dinfo.output_height) { |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 457 | return false; |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | // Try the next scale |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 461 | num -= 1; |
| 462 | calc_output_dimensions(&dinfo, num, denom); |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 463 | } |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 464 | |
| 465 | fDecoderMgr->dinfo()->scale_num = num; |
| 466 | fDecoderMgr->dinfo()->scale_denom = denom; |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 467 | return true; |
| 468 | } |
| 469 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 470 | int SkJpegCodec::readRows(const SkImageInfo& dstInfo, void* dst, size_t rowBytes, int count) { |
| 471 | // Set the jump location for libjpeg-turbo errors |
| 472 | if (setjmp(fDecoderMgr->getJmpBuf())) { |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | // When fSwizzleSrcRow is non-null, it means that we need to swizzle. In this case, |
| 477 | // we will always decode into fSwizzlerSrcRow before swizzling into the next buffer. |
| 478 | // We can never swizzle "in place" because the swizzler may perform sampling and/or |
| 479 | // subsetting. |
| 480 | // When fColorXformSrcRow is non-null, it means that we need to color xform and that |
| 481 | // we cannot color xform "in place" (many times we can, but not when the dst is F16). |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 482 | // In this case, we will color xform from fColorXformSrcRow into the dst. |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 483 | JSAMPLE* decodeDst = (JSAMPLE*) dst; |
| 484 | uint32_t* swizzleDst = (uint32_t*) dst; |
| 485 | size_t decodeDstRowBytes = rowBytes; |
| 486 | size_t swizzleDstRowBytes = rowBytes; |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 487 | int dstWidth = dstInfo.width(); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 488 | if (fSwizzleSrcRow && fColorXformSrcRow) { |
| 489 | decodeDst = (JSAMPLE*) fSwizzleSrcRow; |
| 490 | swizzleDst = fColorXformSrcRow; |
| 491 | decodeDstRowBytes = 0; |
| 492 | swizzleDstRowBytes = 0; |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 493 | dstWidth = fSwizzler->swizzleWidth(); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 494 | } else if (fColorXformSrcRow) { |
| 495 | decodeDst = (JSAMPLE*) fColorXformSrcRow; |
| 496 | swizzleDst = fColorXformSrcRow; |
| 497 | decodeDstRowBytes = 0; |
| 498 | swizzleDstRowBytes = 0; |
| 499 | } else if (fSwizzleSrcRow) { |
| 500 | decodeDst = (JSAMPLE*) fSwizzleSrcRow; |
| 501 | decodeDstRowBytes = 0; |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 502 | dstWidth = fSwizzler->swizzleWidth(); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | for (int y = 0; y < count; y++) { |
| 506 | uint32_t lines = jpeg_read_scanlines(fDecoderMgr->dinfo(), &decodeDst, 1); |
| 507 | size_t srcRowBytes = get_row_bytes(fDecoderMgr->dinfo()); |
| 508 | sk_msan_mark_initialized(decodeDst, decodeDst + srcRowBytes, "skbug.com/4550"); |
| 509 | if (0 == lines) { |
| 510 | return y; |
| 511 | } |
| 512 | |
| 513 | if (fSwizzler) { |
| 514 | fSwizzler->swizzle(swizzleDst, decodeDst); |
| 515 | } |
| 516 | |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 517 | if (this->colorXform()) { |
| 518 | SkAssertResult(this->colorXform()->apply(select_xform_format(dstInfo.colorType()), dst, |
| 519 | SkColorSpaceXform::kRGBA_8888_ColorFormat, swizzleDst, dstWidth, |
| 520 | kOpaque_SkAlphaType)); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 521 | dst = SkTAddOffset<void>(dst, rowBytes); |
| 522 | } |
| 523 | |
| 524 | decodeDst = SkTAddOffset<JSAMPLE>(decodeDst, decodeDstRowBytes); |
| 525 | swizzleDst = SkTAddOffset<uint32_t>(swizzleDst, swizzleDstRowBytes); |
| 526 | } |
| 527 | |
| 528 | return count; |
| 529 | } |
| 530 | |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 531 | /* |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 532 | * Performs the jpeg decode |
| 533 | */ |
| 534 | SkCodec::Result SkJpegCodec::onGetPixels(const SkImageInfo& dstInfo, |
| 535 | void* dst, size_t dstRowBytes, |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 536 | const Options& options, SkPMColor*, int*, |
| 537 | int* rowsDecoded) { |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 538 | if (options.fSubset) { |
| 539 | // Subsets are not supported. |
| 540 | return kUnimplemented; |
| 541 | } |
| 542 | |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 543 | // Get a pointer to the decompress info since we will use it quite frequently |
| 544 | jpeg_decompress_struct* dinfo = fDecoderMgr->dinfo(); |
| 545 | |
| 546 | // Set the jump location for libjpeg errors |
mtklein | 2f42896 | 2016-07-28 13:59:59 -0700 | [diff] [blame] | 547 | if (setjmp(fDecoderMgr->getJmpBuf())) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 548 | return fDecoderMgr->returnFailure("setjmp", kInvalidInput); |
| 549 | } |
| 550 | |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 551 | if (!this->initializeColorXform(dstInfo)) { |
| 552 | return kInvalidConversion; |
| 553 | } |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 554 | |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 555 | // Check if we can decode to the requested destination and set the output color space |
| 556 | if (!this->setOutputColorSpace(dstInfo)) { |
| 557 | return fDecoderMgr->returnFailure("setOutputColorSpace", kInvalidConversion); |
msarett | 85c922a | 2016-09-08 10:54:34 -0700 | [diff] [blame] | 558 | } |
| 559 | |
msarett | fbccb59 | 2015-09-01 06:43:41 -0700 | [diff] [blame] | 560 | if (!jpeg_start_decompress(dinfo)) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 561 | return fDecoderMgr->returnFailure("startDecompress", kInvalidInput); |
| 562 | } |
| 563 | |
msarett | 1c8a587 | 2015-07-07 08:50:01 -0700 | [diff] [blame] | 564 | // The recommended output buffer height should always be 1 in high quality modes. |
| 565 | // If it's not, we want to know because it means our strategy is not optimal. |
| 566 | SkASSERT(1 == dinfo->rec_outbuf_height); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 567 | |
msarett | 70e418b | 2016-02-12 12:35:48 -0800 | [diff] [blame] | 568 | J_COLOR_SPACE colorSpace = dinfo->out_color_space; |
mtklein | da19f6f | 2016-08-23 11:49:29 -0700 | [diff] [blame] | 569 | if (JCS_CMYK == colorSpace) { |
scroggo | ef27d89 | 2015-10-23 09:29:22 -0700 | [diff] [blame] | 570 | this->initializeSwizzler(dstInfo, options); |
| 571 | } |
| 572 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 573 | this->allocateStorage(dstInfo); |
scroggo | ef27d89 | 2015-10-23 09:29:22 -0700 | [diff] [blame] | 574 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 575 | int rows = this->readRows(dstInfo, dst, dstRowBytes, dstInfo.height()); |
| 576 | if (rows < dstInfo.height()) { |
| 577 | *rowsDecoded = rows; |
| 578 | return fDecoderMgr->returnFailure("Incomplete image data", kIncompleteInput); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 579 | } |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 580 | |
| 581 | return kSuccess; |
| 582 | } |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 583 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 584 | void SkJpegCodec::allocateStorage(const SkImageInfo& dstInfo) { |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 585 | int dstWidth = dstInfo.width(); |
| 586 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 587 | size_t swizzleBytes = 0; |
| 588 | if (fSwizzler) { |
| 589 | swizzleBytes = get_row_bytes(fDecoderMgr->dinfo()); |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 590 | dstWidth = fSwizzler->swizzleWidth(); |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 591 | SkASSERT(!this->colorXform() || SkIsAlign4(swizzleBytes)); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | size_t xformBytes = 0; |
| 595 | if (kRGBA_F16_SkColorType == dstInfo.colorType()) { |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 596 | SkASSERT(this->colorXform()); |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 597 | xformBytes = dstWidth * sizeof(uint32_t); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | size_t totalBytes = swizzleBytes + xformBytes; |
| 601 | if (totalBytes > 0) { |
| 602 | fStorage.reset(totalBytes); |
| 603 | fSwizzleSrcRow = (swizzleBytes > 0) ? fStorage.get() : nullptr; |
| 604 | fColorXformSrcRow = (xformBytes > 0) ? |
| 605 | SkTAddOffset<uint32_t>(fStorage.get(), swizzleBytes) : nullptr; |
| 606 | } |
| 607 | } |
| 608 | |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 609 | void SkJpegCodec::initializeSwizzler(const SkImageInfo& dstInfo, const Options& options) { |
msarett | a45a668 | 2016-04-22 13:18:37 -0700 | [diff] [blame] | 610 | // libjpeg-turbo may have already performed color conversion. We must indicate the |
| 611 | // appropriate format to the swizzler. |
| 612 | SkEncodedInfo swizzlerInfo = this->getEncodedInfo(); |
msarett | 68758ae | 2016-04-25 11:41:15 -0700 | [diff] [blame] | 613 | bool preSwizzled = true; |
mtklein | da19f6f | 2016-08-23 11:49:29 -0700 | [diff] [blame] | 614 | if (JCS_CMYK == fDecoderMgr->dinfo()->out_color_space) { |
| 615 | preSwizzled = false; |
| 616 | swizzlerInfo = SkEncodedInfo::Make(SkEncodedInfo::kInvertedCMYK_Color, |
| 617 | swizzlerInfo.alpha(), |
| 618 | swizzlerInfo.bitsPerComponent()); |
msarett | 70e418b | 2016-02-12 12:35:48 -0800 | [diff] [blame] | 619 | } |
| 620 | |
msarett | 91c22b2 | 2016-02-22 12:27:46 -0800 | [diff] [blame] | 621 | Options swizzlerOptions = options; |
| 622 | if (options.fSubset) { |
| 623 | // Use fSwizzlerSubset if this is a subset decode. This is necessary in the case |
| 624 | // where libjpeg-turbo provides a subset and then we need to subset it further. |
| 625 | // Also, verify that fSwizzlerSubset is initialized and valid. |
| 626 | SkASSERT(!fSwizzlerSubset.isEmpty() && fSwizzlerSubset.x() <= options.fSubset->x() && |
| 627 | fSwizzlerSubset.width() == options.fSubset->width()); |
| 628 | swizzlerOptions.fSubset = &fSwizzlerSubset; |
| 629 | } |
msarett | 68758ae | 2016-04-25 11:41:15 -0700 | [diff] [blame] | 630 | fSwizzler.reset(SkSwizzler::CreateSwizzler(swizzlerInfo, nullptr, dstInfo, swizzlerOptions, |
| 631 | nullptr, preSwizzled)); |
msarett | b30d698 | 2016-02-15 10:18:45 -0800 | [diff] [blame] | 632 | SkASSERT(fSwizzler); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 633 | } |
| 634 | |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 635 | SkSampler* SkJpegCodec::getSampler(bool createIfNecessary) { |
| 636 | if (!createIfNecessary || fSwizzler) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 637 | SkASSERT(!fSwizzler || (fSwizzleSrcRow && fStorage.get() == fSwizzleSrcRow)); |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 638 | return fSwizzler; |
| 639 | } |
| 640 | |
| 641 | this->initializeSwizzler(this->dstInfo(), this->options()); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 642 | this->allocateStorage(this->dstInfo()); |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 643 | return fSwizzler; |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 644 | } |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 645 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 646 | SkCodec::Result SkJpegCodec::onStartScanlineDecode(const SkImageInfo& dstInfo, |
| 647 | const Options& options, SkPMColor ctable[], int* ctableCount) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 648 | // Set the jump location for libjpeg errors |
mtklein | 2f42896 | 2016-07-28 13:59:59 -0700 | [diff] [blame] | 649 | if (setjmp(fDecoderMgr->getJmpBuf())) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 650 | SkCodecPrintf("setjmp: Error from libjpeg\n"); |
| 651 | return kInvalidInput; |
| 652 | } |
| 653 | |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 654 | if (!this->initializeColorXform(dstInfo)) { |
| 655 | return kInvalidConversion; |
| 656 | } |
msarett | 85c922a | 2016-09-08 10:54:34 -0700 | [diff] [blame] | 657 | |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 658 | // Check if we can decode to the requested destination and set the output color space |
| 659 | if (!this->setOutputColorSpace(dstInfo)) { |
| 660 | return fDecoderMgr->returnFailure("setOutputColorSpace", kInvalidConversion); |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 661 | } |
| 662 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 663 | if (!jpeg_start_decompress(fDecoderMgr->dinfo())) { |
| 664 | SkCodecPrintf("start decompress failed\n"); |
| 665 | return kInvalidInput; |
| 666 | } |
| 667 | |
msarett | 91c22b2 | 2016-02-22 12:27:46 -0800 | [diff] [blame] | 668 | if (options.fSubset) { |
| 669 | uint32_t startX = options.fSubset->x(); |
| 670 | uint32_t width = options.fSubset->width(); |
| 671 | |
| 672 | // libjpeg-turbo may need to align startX to a multiple of the IDCT |
| 673 | // block size. If this is the case, it will decrease the value of |
| 674 | // startX to the appropriate alignment and also increase the value |
| 675 | // of width so that the right edge of the requested subset remains |
| 676 | // the same. |
| 677 | jpeg_crop_scanline(fDecoderMgr->dinfo(), &startX, &width); |
| 678 | |
| 679 | SkASSERT(startX <= (uint32_t) options.fSubset->x()); |
| 680 | SkASSERT(width >= (uint32_t) options.fSubset->width()); |
| 681 | SkASSERT(startX + width >= (uint32_t) options.fSubset->right()); |
| 682 | |
| 683 | // Instruct the swizzler (if it is necessary) to further subset the |
| 684 | // output provided by libjpeg-turbo. |
| 685 | // |
| 686 | // We set this here (rather than in the if statement below), so that |
| 687 | // if (1) we don't need a swizzler for the subset, and (2) we need a |
| 688 | // swizzler for CMYK, the swizzler will still use the proper subset |
| 689 | // dimensions. |
| 690 | // |
| 691 | // Note that the swizzler will ignore the y and height parameters of |
| 692 | // the subset. Since the scanline decoder (and the swizzler) handle |
| 693 | // one row at a time, only the subsetting in the x-dimension matters. |
| 694 | fSwizzlerSubset.setXYWH(options.fSubset->x() - startX, 0, |
| 695 | options.fSubset->width(), options.fSubset->height()); |
| 696 | |
| 697 | // We will need a swizzler if libjpeg-turbo cannot provide the exact |
| 698 | // subset that we request. |
| 699 | if (startX != (uint32_t) options.fSubset->x() || |
| 700 | width != (uint32_t) options.fSubset->width()) { |
| 701 | this->initializeSwizzler(dstInfo, options); |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | // Make sure we have a swizzler if we are converting from CMYK. |
| 706 | if (!fSwizzler && JCS_CMYK == fDecoderMgr->dinfo()->out_color_space) { |
| 707 | this->initializeSwizzler(dstInfo, options); |
| 708 | } |
msarett | fdb4757 | 2015-10-13 12:50:14 -0700 | [diff] [blame] | 709 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 710 | this->allocateStorage(dstInfo); |
| 711 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 712 | return kSuccess; |
| 713 | } |
| 714 | |
mtklein | e721a8e | 2016-02-06 19:12:23 -0800 | [diff] [blame] | 715 | int SkJpegCodec::onGetScanlines(void* dst, int count, size_t dstRowBytes) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 716 | int rows = this->readRows(this->dstInfo(), dst, dstRowBytes, count); |
| 717 | if (rows < count) { |
| 718 | // This allows us to skip calling jpeg_finish_decompress(). |
| 719 | fDecoderMgr->dinfo()->output_scanline = this->dstInfo().height(); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 720 | } |
| 721 | |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 722 | return rows; |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 723 | } |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 724 | |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 725 | bool SkJpegCodec::onSkipScanlines(int count) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 726 | // Set the jump location for libjpeg errors |
mtklein | 2f42896 | 2016-07-28 13:59:59 -0700 | [diff] [blame] | 727 | if (setjmp(fDecoderMgr->getJmpBuf())) { |
msarett | 50ce1f2 | 2016-07-29 06:23:33 -0700 | [diff] [blame] | 728 | return fDecoderMgr->returnFalse("onSkipScanlines"); |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 729 | } |
| 730 | |
msarett | f724b99 | 2015-10-15 06:41:06 -0700 | [diff] [blame] | 731 | return (uint32_t) count == jpeg_skip_scanlines(fDecoderMgr->dinfo(), count); |
msarett | 97fdea6 | 2015-04-29 08:17:15 -0700 | [diff] [blame] | 732 | } |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 733 | |
| 734 | static bool is_yuv_supported(jpeg_decompress_struct* dinfo) { |
| 735 | // Scaling is not supported in raw data mode. |
| 736 | SkASSERT(dinfo->scale_num == dinfo->scale_denom); |
| 737 | |
| 738 | // I can't imagine that this would ever change, but we do depend on it. |
| 739 | static_assert(8 == DCTSIZE, "DCTSIZE (defined in jpeg library) should always be 8."); |
| 740 | |
| 741 | if (JCS_YCbCr != dinfo->jpeg_color_space) { |
| 742 | return false; |
| 743 | } |
| 744 | |
| 745 | SkASSERT(3 == dinfo->num_components); |
| 746 | SkASSERT(dinfo->comp_info); |
| 747 | |
| 748 | // It is possible to perform a YUV decode for any combination of |
| 749 | // horizontal and vertical sampling that is supported by |
| 750 | // libjpeg/libjpeg-turbo. However, we will start by supporting only the |
| 751 | // common cases (where U and V have samp_factors of one). |
| 752 | // |
| 753 | // The definition of samp_factor is kind of the opposite of what SkCodec |
| 754 | // thinks of as a sampling factor. samp_factor is essentially a |
| 755 | // multiplier, and the larger the samp_factor is, the more samples that |
| 756 | // there will be. Ex: |
| 757 | // U_plane_width = image_width * (U_h_samp_factor / max_h_samp_factor) |
| 758 | // |
| 759 | // Supporting cases where the samp_factors for U or V were larger than |
| 760 | // that of Y would be an extremely difficult change, given that clients |
| 761 | // allocate memory as if the size of the Y plane is always the size of the |
| 762 | // image. However, this case is very, very rare. |
msarett | 7c87cf4 | 2016-03-04 06:23:20 -0800 | [diff] [blame] | 763 | if ((1 != dinfo->comp_info[1].h_samp_factor) || |
| 764 | (1 != dinfo->comp_info[1].v_samp_factor) || |
| 765 | (1 != dinfo->comp_info[2].h_samp_factor) || |
| 766 | (1 != dinfo->comp_info[2].v_samp_factor)) |
| 767 | { |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 768 | return false; |
| 769 | } |
| 770 | |
| 771 | // Support all common cases of Y samp_factors. |
| 772 | // TODO (msarett): As mentioned above, it would be possible to support |
| 773 | // more combinations of samp_factors. The issues are: |
| 774 | // (1) Are there actually any images that are not covered |
| 775 | // by these cases? |
| 776 | // (2) How much complexity would be added to the |
| 777 | // implementation in order to support these rare |
| 778 | // cases? |
| 779 | int hSampY = dinfo->comp_info[0].h_samp_factor; |
| 780 | int vSampY = dinfo->comp_info[0].v_samp_factor; |
| 781 | return (1 == hSampY && 1 == vSampY) || |
| 782 | (2 == hSampY && 1 == vSampY) || |
| 783 | (2 == hSampY && 2 == vSampY) || |
| 784 | (1 == hSampY && 2 == vSampY) || |
| 785 | (4 == hSampY && 1 == vSampY) || |
| 786 | (4 == hSampY && 2 == vSampY); |
| 787 | } |
| 788 | |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 789 | bool SkJpegCodec::onQueryYUV8(SkYUVSizeInfo* sizeInfo, SkYUVColorSpace* colorSpace) const { |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 790 | jpeg_decompress_struct* dinfo = fDecoderMgr->dinfo(); |
| 791 | if (!is_yuv_supported(dinfo)) { |
| 792 | return false; |
| 793 | } |
| 794 | |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 795 | sizeInfo->fSizes[SkYUVSizeInfo::kY].set(dinfo->comp_info[0].downsampled_width, |
| 796 | dinfo->comp_info[0].downsampled_height); |
| 797 | sizeInfo->fSizes[SkYUVSizeInfo::kU].set(dinfo->comp_info[1].downsampled_width, |
| 798 | dinfo->comp_info[1].downsampled_height); |
| 799 | sizeInfo->fSizes[SkYUVSizeInfo::kV].set(dinfo->comp_info[2].downsampled_width, |
| 800 | dinfo->comp_info[2].downsampled_height); |
| 801 | sizeInfo->fWidthBytes[SkYUVSizeInfo::kY] = dinfo->comp_info[0].width_in_blocks * DCTSIZE; |
| 802 | sizeInfo->fWidthBytes[SkYUVSizeInfo::kU] = dinfo->comp_info[1].width_in_blocks * DCTSIZE; |
| 803 | sizeInfo->fWidthBytes[SkYUVSizeInfo::kV] = dinfo->comp_info[2].width_in_blocks * DCTSIZE; |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 804 | |
| 805 | if (colorSpace) { |
| 806 | *colorSpace = kJPEG_SkYUVColorSpace; |
| 807 | } |
| 808 | |
| 809 | return true; |
| 810 | } |
| 811 | |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 812 | SkCodec::Result SkJpegCodec::onGetYUV8Planes(const SkYUVSizeInfo& sizeInfo, void* planes[3]) { |
| 813 | SkYUVSizeInfo defaultInfo; |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 814 | |
| 815 | // This will check is_yuv_supported(), so we don't need to here. |
| 816 | bool supportsYUV = this->onQueryYUV8(&defaultInfo, nullptr); |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 817 | if (!supportsYUV || |
| 818 | sizeInfo.fSizes[SkYUVSizeInfo::kY] != defaultInfo.fSizes[SkYUVSizeInfo::kY] || |
| 819 | sizeInfo.fSizes[SkYUVSizeInfo::kU] != defaultInfo.fSizes[SkYUVSizeInfo::kU] || |
| 820 | sizeInfo.fSizes[SkYUVSizeInfo::kV] != defaultInfo.fSizes[SkYUVSizeInfo::kV] || |
| 821 | sizeInfo.fWidthBytes[SkYUVSizeInfo::kY] < defaultInfo.fWidthBytes[SkYUVSizeInfo::kY] || |
| 822 | sizeInfo.fWidthBytes[SkYUVSizeInfo::kU] < defaultInfo.fWidthBytes[SkYUVSizeInfo::kU] || |
| 823 | sizeInfo.fWidthBytes[SkYUVSizeInfo::kV] < defaultInfo.fWidthBytes[SkYUVSizeInfo::kV]) { |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 824 | return fDecoderMgr->returnFailure("onGetYUV8Planes", kInvalidInput); |
| 825 | } |
| 826 | |
| 827 | // Set the jump location for libjpeg errors |
mtklein | 2f42896 | 2016-07-28 13:59:59 -0700 | [diff] [blame] | 828 | if (setjmp(fDecoderMgr->getJmpBuf())) { |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 829 | return fDecoderMgr->returnFailure("setjmp", kInvalidInput); |
| 830 | } |
| 831 | |
| 832 | // Get a pointer to the decompress info since we will use it quite frequently |
| 833 | jpeg_decompress_struct* dinfo = fDecoderMgr->dinfo(); |
| 834 | |
| 835 | dinfo->raw_data_out = TRUE; |
| 836 | if (!jpeg_start_decompress(dinfo)) { |
| 837 | return fDecoderMgr->returnFailure("startDecompress", kInvalidInput); |
| 838 | } |
| 839 | |
| 840 | // A previous implementation claims that the return value of is_yuv_supported() |
| 841 | // may change after calling jpeg_start_decompress(). It looks to me like this |
| 842 | // was caused by a bug in the old code, but we'll be safe and check here. |
| 843 | SkASSERT(is_yuv_supported(dinfo)); |
| 844 | |
| 845 | // Currently, we require that the Y plane dimensions match the image dimensions |
| 846 | // and that the U and V planes are the same dimensions. |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 847 | SkASSERT(sizeInfo.fSizes[SkYUVSizeInfo::kU] == sizeInfo.fSizes[SkYUVSizeInfo::kV]); |
| 848 | SkASSERT((uint32_t) sizeInfo.fSizes[SkYUVSizeInfo::kY].width() == dinfo->output_width && |
| 849 | (uint32_t) sizeInfo.fSizes[SkYUVSizeInfo::kY].height() == dinfo->output_height); |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 850 | |
| 851 | // Build a JSAMPIMAGE to handle output from libjpeg-turbo. A JSAMPIMAGE has |
| 852 | // a 2-D array of pixels for each of the components (Y, U, V) in the image. |
| 853 | // Cheat Sheet: |
| 854 | // JSAMPIMAGE == JSAMPLEARRAY* == JSAMPROW** == JSAMPLE*** |
| 855 | JSAMPARRAY yuv[3]; |
| 856 | |
| 857 | // Set aside enough space for pointers to rows of Y, U, and V. |
| 858 | JSAMPROW rowptrs[2 * DCTSIZE + DCTSIZE + DCTSIZE]; |
| 859 | yuv[0] = &rowptrs[0]; // Y rows (DCTSIZE or 2 * DCTSIZE) |
| 860 | yuv[1] = &rowptrs[2 * DCTSIZE]; // U rows (DCTSIZE) |
| 861 | yuv[2] = &rowptrs[3 * DCTSIZE]; // V rows (DCTSIZE) |
| 862 | |
| 863 | // Initialize rowptrs. |
| 864 | int numYRowsPerBlock = DCTSIZE * dinfo->comp_info[0].v_samp_factor; |
| 865 | for (int i = 0; i < numYRowsPerBlock; i++) { |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 866 | rowptrs[i] = SkTAddOffset<JSAMPLE>(planes[SkYUVSizeInfo::kY], |
| 867 | i * sizeInfo.fWidthBytes[SkYUVSizeInfo::kY]); |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 868 | } |
| 869 | for (int i = 0; i < DCTSIZE; i++) { |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 870 | rowptrs[i + 2 * DCTSIZE] = SkTAddOffset<JSAMPLE>(planes[SkYUVSizeInfo::kU], |
| 871 | i * sizeInfo.fWidthBytes[SkYUVSizeInfo::kU]); |
| 872 | rowptrs[i + 3 * DCTSIZE] = SkTAddOffset<JSAMPLE>(planes[SkYUVSizeInfo::kV], |
| 873 | i * sizeInfo.fWidthBytes[SkYUVSizeInfo::kV]); |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | // After each loop iteration, we will increment pointers to Y, U, and V. |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 877 | size_t blockIncrementY = numYRowsPerBlock * sizeInfo.fWidthBytes[SkYUVSizeInfo::kY]; |
| 878 | size_t blockIncrementU = DCTSIZE * sizeInfo.fWidthBytes[SkYUVSizeInfo::kU]; |
| 879 | size_t blockIncrementV = DCTSIZE * sizeInfo.fWidthBytes[SkYUVSizeInfo::kV]; |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 880 | |
| 881 | uint32_t numRowsPerBlock = numYRowsPerBlock; |
| 882 | |
| 883 | // We intentionally round down here, as this first loop will only handle |
| 884 | // full block rows. As a special case at the end, we will handle any |
| 885 | // remaining rows that do not make up a full block. |
| 886 | const int numIters = dinfo->output_height / numRowsPerBlock; |
| 887 | for (int i = 0; i < numIters; i++) { |
| 888 | JDIMENSION linesRead = jpeg_read_raw_data(dinfo, yuv, numRowsPerBlock); |
| 889 | if (linesRead < numRowsPerBlock) { |
| 890 | // FIXME: Handle incomplete YUV decodes without signalling an error. |
| 891 | return kInvalidInput; |
| 892 | } |
| 893 | |
| 894 | // Update rowptrs. |
| 895 | for (int i = 0; i < numYRowsPerBlock; i++) { |
| 896 | rowptrs[i] += blockIncrementY; |
| 897 | } |
| 898 | for (int i = 0; i < DCTSIZE; i++) { |
| 899 | rowptrs[i + 2 * DCTSIZE] += blockIncrementU; |
| 900 | rowptrs[i + 3 * DCTSIZE] += blockIncrementV; |
| 901 | } |
| 902 | } |
| 903 | |
| 904 | uint32_t remainingRows = dinfo->output_height - dinfo->output_scanline; |
| 905 | SkASSERT(remainingRows == dinfo->output_height % numRowsPerBlock); |
| 906 | SkASSERT(dinfo->output_scanline == numIters * numRowsPerBlock); |
| 907 | if (remainingRows > 0) { |
| 908 | // libjpeg-turbo needs memory to be padded by the block sizes. We will fulfill |
| 909 | // this requirement using a dummy row buffer. |
| 910 | // FIXME: Should SkCodec have an extra memory buffer that can be shared among |
| 911 | // all of the implementations that use temporary/garbage memory? |
msarett | 4984c3c | 2016-03-10 05:44:43 -0800 | [diff] [blame] | 912 | SkAutoTMalloc<JSAMPLE> dummyRow(sizeInfo.fWidthBytes[SkYUVSizeInfo::kY]); |
msarett | b714fb0 | 2016-01-22 14:46:42 -0800 | [diff] [blame] | 913 | for (int i = remainingRows; i < numYRowsPerBlock; i++) { |
| 914 | rowptrs[i] = dummyRow.get(); |
| 915 | } |
| 916 | int remainingUVRows = dinfo->comp_info[1].downsampled_height - DCTSIZE * numIters; |
| 917 | for (int i = remainingUVRows; i < DCTSIZE; i++) { |
| 918 | rowptrs[i + 2 * DCTSIZE] = dummyRow.get(); |
| 919 | rowptrs[i + 3 * DCTSIZE] = dummyRow.get(); |
| 920 | } |
| 921 | |
| 922 | JDIMENSION linesRead = jpeg_read_raw_data(dinfo, yuv, numRowsPerBlock); |
| 923 | if (linesRead < remainingRows) { |
| 924 | // FIXME: Handle incomplete YUV decodes without signalling an error. |
| 925 | return kInvalidInput; |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | return kSuccess; |
| 930 | } |