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