blob: 2b6483b05838d02784b049cedbb86950ba9e80f9 [file] [log] [blame]
emmaleer8f4ba762015-08-14 07:44:46 -07001/*
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
msarett3d9d7a72015-10-21 10:27:10 -07008#include "SkCodec.h"
emmaleer8f4ba762015-08-14 07:44:46 -07009#include "SkCodecPriv.h"
scroggo501b7342015-11-03 07:55:11 -080010#include "SkMath.h"
msarett3d9d7a72015-10-21 10:27:10 -070011#include "SkSampledCodec.h"
msaretta4970dc2016-01-11 07:23:23 -080012#include "SkSampler.h"
scroggo565901d2015-12-10 10:44:13 -080013#include "SkTemplates.h"
emmaleer8f4ba762015-08-14 07:44:46 -070014
msarett3d9d7a72015-10-21 10:27:10 -070015SkSampledCodec::SkSampledCodec(SkCodec* codec)
msarett90c4d5f2015-12-10 13:09:24 -080016 : INHERITED(codec)
emmaleer8f4ba762015-08-14 07:44:46 -070017{}
18
scroggo501b7342015-11-03 07:55:11 -080019SkISize SkSampledCodec::accountForNativeScaling(int* sampleSizePtr, int* nativeSampleSize) const {
msarett90c4d5f2015-12-10 13:09:24 -080020 SkISize preSampledSize = this->codec()->getInfo().dimensions();
scroggo501b7342015-11-03 07:55:11 -080021 int sampleSize = *sampleSizePtr;
22 SkASSERT(sampleSize > 1);
23
24 if (nativeSampleSize) {
25 *nativeSampleSize = 1;
26 }
27
28 // Only JPEG supports native downsampling.
Hal Canarydb683012016-11-23 08:55:18 -070029 if (this->codec()->getEncodedFormat() == SkEncodedImageFormat::kJPEG) {
scroggo501b7342015-11-03 07:55:11 -080030 // See if libjpeg supports this scale directly
31 switch (sampleSize) {
32 case 2:
33 case 4:
34 case 8:
35 // This class does not need to do any sampling.
36 *sampleSizePtr = 1;
msarett90c4d5f2015-12-10 13:09:24 -080037 return this->codec()->getScaledDimensions(get_scale_from_sample_size(sampleSize));
scroggo501b7342015-11-03 07:55:11 -080038 default:
39 break;
40 }
41
42 // Check if sampleSize is a multiple of something libjpeg can support.
43 int remainder;
44 const int sampleSizes[] = { 8, 4, 2 };
45 for (int supportedSampleSize : sampleSizes) {
46 int actualSampleSize;
47 SkTDivMod(sampleSize, supportedSampleSize, &actualSampleSize, &remainder);
48 if (0 == remainder) {
49 float scale = get_scale_from_sample_size(supportedSampleSize);
50
msarett90c4d5f2015-12-10 13:09:24 -080051 // this->codec() will scale to this size.
52 preSampledSize = this->codec()->getScaledDimensions(scale);
scroggo501b7342015-11-03 07:55:11 -080053
54 // And then this class will sample it.
55 *sampleSizePtr = actualSampleSize;
56 if (nativeSampleSize) {
57 *nativeSampleSize = supportedSampleSize;
58 }
59 break;
60 }
61 }
62 }
63
64 return preSampledSize;
65}
66
msarett3d9d7a72015-10-21 10:27:10 -070067SkISize SkSampledCodec::onGetSampledDimensions(int sampleSize) const {
scroggo501b7342015-11-03 07:55:11 -080068 const SkISize size = this->accountForNativeScaling(&sampleSize);
69 return SkISize::Make(get_scaled_dimension(size.width(), sampleSize),
70 get_scaled_dimension(size.height(), sampleSize));
msaretta83593b2015-08-18 08:03:58 -070071}
emmaleer8f4ba762015-08-14 07:44:46 -070072
msarett3d9d7a72015-10-21 10:27:10 -070073SkCodec::Result SkSampledCodec::onGetAndroidPixels(const SkImageInfo& info, void* pixels,
scroggoe95a0682015-11-04 04:31:12 -080074 size_t rowBytes, const AndroidOptions& options) {
msarett3d9d7a72015-10-21 10:27:10 -070075 // Create an Options struct for the codec.
76 SkCodec::Options codecOptions;
77 codecOptions.fZeroInitialized = options.fZeroInitialized;
Matt Sarettcf3f2342017-03-23 15:32:25 -040078 codecOptions.fPremulBehavior = SkTransferFunctionBehavior::kIgnore;
emmaleer8f4ba762015-08-14 07:44:46 -070079
msarett3d9d7a72015-10-21 10:27:10 -070080 SkIRect* subset = options.fSubset;
msarett90c4d5f2015-12-10 13:09:24 -080081 if (!subset || subset->size() == this->codec()->getInfo().dimensions()) {
82 if (this->codec()->dimensionsSupported(info.dimensions())) {
83 return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions,
84 options.fColorPtr, options.fColorCount);
emmaleer8f4ba762015-08-14 07:44:46 -070085 }
emmaleer8f4ba762015-08-14 07:44:46 -070086
msarett3d9d7a72015-10-21 10:27:10 -070087 // If the native codec does not support the requested scale, scale by sampling.
88 return this->sampledDecode(info, pixels, rowBytes, options);
scroggoe7fc14b2015-10-02 13:14:46 -070089 }
90
msarett3d9d7a72015-10-21 10:27:10 -070091 // We are performing a subset decode.
92 int sampleSize = options.fSampleSize;
scroggo501b7342015-11-03 07:55:11 -080093 SkISize scaledSize = this->getSampledDimensions(sampleSize);
msarett90c4d5f2015-12-10 13:09:24 -080094 if (!this->codec()->dimensionsSupported(scaledSize)) {
msarett3d9d7a72015-10-21 10:27:10 -070095 // If the native codec does not support the requested scale, scale by sampling.
96 return this->sampledDecode(info, pixels, rowBytes, options);
97 }
scroggoe7fc14b2015-10-02 13:14:46 -070098
msarett3d9d7a72015-10-21 10:27:10 -070099 // Calculate the scaled subset bounds.
100 int scaledSubsetX = subset->x() / sampleSize;
101 int scaledSubsetY = subset->y() / sampleSize;
102 int scaledSubsetWidth = info.width();
103 int scaledSubsetHeight = info.height();
emmaleer8f4ba762015-08-14 07:44:46 -0700104
scroggo8e6c7ad2016-09-16 08:20:38 -0700105 const SkImageInfo scaledInfo = info.makeWH(scaledSize.width(), scaledSize.height());
106
107 {
108 // Although startScanlineDecode expects the bottom and top to match the
109 // SkImageInfo, startIncrementalDecode uses them to determine which rows to
110 // decode.
111 SkIRect incrementalSubset = SkIRect::MakeXYWH(scaledSubsetX, scaledSubsetY,
112 scaledSubsetWidth, scaledSubsetHeight);
113 codecOptions.fSubset = &incrementalSubset;
114 const SkCodec::Result startResult = this->codec()->startIncrementalDecode(
115 scaledInfo, pixels, rowBytes, &codecOptions,
116 options.fColorPtr, options.fColorCount);
117 if (SkCodec::kSuccess == startResult) {
118 int rowsDecoded;
119 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
120 if (incResult == SkCodec::kSuccess) {
121 return SkCodec::kSuccess;
122 }
123 SkASSERT(SkCodec::kIncompleteInput == incResult);
124
125 // FIXME: Can zero initialized be read from SkCodec::fOptions?
126 this->codec()->fillIncompleteImage(scaledInfo, pixels, rowBytes,
127 options.fZeroInitialized, scaledSubsetHeight, rowsDecoded);
128 return SkCodec::kIncompleteInput;
129 } else if (startResult != SkCodec::kUnimplemented) {
130 return startResult;
131 }
132 // Otherwise fall down to use the old scanline decoder.
133 // codecOptions.fSubset will be reset below, so it will not continue to
134 // point to the object that is no longer on the stack.
135 }
136
msarett3d9d7a72015-10-21 10:27:10 -0700137 // Start the scanline decode.
138 SkIRect scanlineSubset = SkIRect::MakeXYWH(scaledSubsetX, 0, scaledSubsetWidth,
139 scaledSize.height());
140 codecOptions.fSubset = &scanlineSubset;
scroggo8e6c7ad2016-09-16 08:20:38 -0700141
142 SkCodec::Result result = this->codec()->startScanlineDecode(scaledInfo,
143 &codecOptions, options.fColorPtr, options.fColorCount);
msarett3d9d7a72015-10-21 10:27:10 -0700144 if (SkCodec::kSuccess != result) {
145 return result;
146 }
emmaleer8f4ba762015-08-14 07:44:46 -0700147
msarett3d9d7a72015-10-21 10:27:10 -0700148 // At this point, we are only concerned with subsetting. Either no scale was
msarett90c4d5f2015-12-10 13:09:24 -0800149 // requested, or the this->codec() is handling the scale.
scroggo8e6c7ad2016-09-16 08:20:38 -0700150 // Note that subsetting is only supported for kTopDown, so this code will not be
151 // reached for other orders.
152 SkASSERT(this->codec()->getScanlineOrder() == SkCodec::kTopDown_SkScanlineOrder);
153 if (!this->codec()->skipScanlines(scaledSubsetY)) {
154 this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized,
155 scaledSubsetHeight, 0);
156 return SkCodec::kIncompleteInput;
scroggo6fb23912016-06-02 14:16:43 -0700157 }
scroggo8e6c7ad2016-09-16 08:20:38 -0700158
159 int decodedLines = this->codec()->getScanlines(pixels, scaledSubsetHeight, rowBytes);
160 if (decodedLines != scaledSubsetHeight) {
161 return SkCodec::kIncompleteInput;
162 }
163 return SkCodec::kSuccess;
emmaleer8f4ba762015-08-14 07:44:46 -0700164}
165
emmaleer8f4ba762015-08-14 07:44:46 -0700166
msarett3d9d7a72015-10-21 10:27:10 -0700167SkCodec::Result SkSampledCodec::sampledDecode(const SkImageInfo& info, void* pixels,
scroggoe95a0682015-11-04 04:31:12 -0800168 size_t rowBytes, const AndroidOptions& options) {
scroggo501b7342015-11-03 07:55:11 -0800169 // We should only call this function when sampling.
170 SkASSERT(options.fSampleSize > 1);
171
msarett3d9d7a72015-10-21 10:27:10 -0700172 // Create options struct for the codec.
173 SkCodec::Options sampledOptions;
174 sampledOptions.fZeroInitialized = options.fZeroInitialized;
Matt Sarettcf3f2342017-03-23 15:32:25 -0400175 sampledOptions.fPremulBehavior = SkTransferFunctionBehavior::kIgnore;
emmaleer8f4ba762015-08-14 07:44:46 -0700176
scroggo501b7342015-11-03 07:55:11 -0800177 // FIXME: This was already called by onGetAndroidPixels. Can we reduce that?
178 int sampleSize = options.fSampleSize;
179 int nativeSampleSize;
180 SkISize nativeSize = this->accountForNativeScaling(&sampleSize, &nativeSampleSize);
181
msarett3d9d7a72015-10-21 10:27:10 -0700182 // Check if there is a subset.
183 SkIRect subset;
184 int subsetY = 0;
scroggo501b7342015-11-03 07:55:11 -0800185 int subsetWidth = nativeSize.width();
186 int subsetHeight = nativeSize.height();
emmaleer8f4ba762015-08-14 07:44:46 -0700187 if (options.fSubset) {
msarett3d9d7a72015-10-21 10:27:10 -0700188 // We will need to know about subsetting in the y-dimension in order to use the
189 // scanline decoder.
msarett90c4d5f2015-12-10 13:09:24 -0800190 // Update the subset to account for scaling done by this->codec().
scroggo4f2a88c2016-10-17 14:32:41 -0700191 const SkIRect* subsetPtr = options.fSubset;
scroggo501b7342015-11-03 07:55:11 -0800192
193 // Do the divide ourselves, instead of calling get_scaled_dimension. If
194 // X and Y are 0, they should remain 0, rather than being upgraded to 1
195 // due to being smaller than the sampleSize.
196 const int subsetX = subsetPtr->x() / nativeSampleSize;
197 subsetY = subsetPtr->y() / nativeSampleSize;
198
199 subsetWidth = get_scaled_dimension(subsetPtr->width(), nativeSampleSize);
200 subsetHeight = get_scaled_dimension(subsetPtr->height(), nativeSampleSize);
msarett3d9d7a72015-10-21 10:27:10 -0700201
202 // The scanline decoder only needs to be aware of subsetting in the x-dimension.
scroggo501b7342015-11-03 07:55:11 -0800203 subset.setXYWH(subsetX, 0, subsetWidth, nativeSize.height());
msarett3d9d7a72015-10-21 10:27:10 -0700204 sampledOptions.fSubset = ⊂
emmaleer8f4ba762015-08-14 07:44:46 -0700205 }
206
scroggo8e6c7ad2016-09-16 08:20:38 -0700207 // Since we guarantee that output dimensions are always at least one (even if the sampleSize
208 // is greater than a given dimension), the input sampleSize is not always the sampleSize that
209 // we use in practice.
210 const int sampleX = subsetWidth / info.width();
211 const int sampleY = subsetHeight / info.height();
212
213 const int samplingOffsetY = get_start_coord(sampleY);
214 const int startY = samplingOffsetY + subsetY;
scroggo4f2a88c2016-10-17 14:32:41 -0700215 const int dstHeight = info.height();
scroggo8e6c7ad2016-09-16 08:20:38 -0700216
217 const SkImageInfo nativeInfo = info.makeWH(nativeSize.width(), nativeSize.height());
218
219 {
220 // Although startScanlineDecode expects the bottom and top to match the
221 // SkImageInfo, startIncrementalDecode uses them to determine which rows to
222 // decode.
scroggo4f2a88c2016-10-17 14:32:41 -0700223 SkCodec::Options incrementalOptions = sampledOptions;
scroggo8e6c7ad2016-09-16 08:20:38 -0700224 SkIRect incrementalSubset;
scroggo8e6c7ad2016-09-16 08:20:38 -0700225 if (sampledOptions.fSubset) {
scroggo4f2a88c2016-10-17 14:32:41 -0700226 incrementalSubset.fTop = subsetY;
227 incrementalSubset.fBottom = subsetY + subsetHeight;
scroggo8e6c7ad2016-09-16 08:20:38 -0700228 incrementalSubset.fLeft = sampledOptions.fSubset->fLeft;
229 incrementalSubset.fRight = sampledOptions.fSubset->fRight;
scroggo4f2a88c2016-10-17 14:32:41 -0700230 incrementalOptions.fSubset = &incrementalSubset;
scroggo8e6c7ad2016-09-16 08:20:38 -0700231 }
scroggo8e6c7ad2016-09-16 08:20:38 -0700232 const SkCodec::Result startResult = this->codec()->startIncrementalDecode(nativeInfo,
233 pixels, rowBytes, &incrementalOptions, options.fColorPtr, options.fColorCount);
234 if (SkCodec::kSuccess == startResult) {
235 SkSampler* sampler = this->codec()->getSampler(true);
236 if (!sampler) {
237 return SkCodec::kUnimplemented;
238 }
239
240 if (sampler->setSampleX(sampleX) != info.width()) {
241 return SkCodec::kInvalidScale;
242 }
243 if (get_scaled_dimension(subsetHeight, sampleY) != info.height()) {
244 return SkCodec::kInvalidScale;
245 }
246
247 sampler->setSampleY(sampleY);
248
249 int rowsDecoded;
250 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
251 if (incResult == SkCodec::kSuccess) {
252 return SkCodec::kSuccess;
253 }
254 SkASSERT(incResult == SkCodec::kIncompleteInput);
msarettc6c81e12016-09-16 14:52:07 -0700255
scroggoff9f7bb2016-10-10 11:35:01 -0700256 SkASSERT(rowsDecoded <= info.height());
scroggo8e6c7ad2016-09-16 08:20:38 -0700257 this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized,
scroggoff9f7bb2016-10-10 11:35:01 -0700258 info.height(), rowsDecoded);
scroggo8e6c7ad2016-09-16 08:20:38 -0700259 return SkCodec::kIncompleteInput;
260 } else if (startResult != SkCodec::kUnimplemented) {
261 return startResult;
262 } // kUnimplemented means use the old method.
263 }
264
msarett3d9d7a72015-10-21 10:27:10 -0700265 // Start the scanline decode.
scroggo8e6c7ad2016-09-16 08:20:38 -0700266 SkCodec::Result result = this->codec()->startScanlineDecode(nativeInfo,
267 &sampledOptions, options.fColorPtr, options.fColorCount);
msarett3d9d7a72015-10-21 10:27:10 -0700268 if (SkCodec::kSuccess != result) {
emmaleer8f4ba762015-08-14 07:44:46 -0700269 return result;
270 }
emmaleer8f4ba762015-08-14 07:44:46 -0700271
msarett90c4d5f2015-12-10 13:09:24 -0800272 SkSampler* sampler = this->codec()->getSampler(true);
scroggoe7fc14b2015-10-02 13:14:46 -0700273 if (!sampler) {
msarett3d9d7a72015-10-21 10:27:10 -0700274 return SkCodec::kUnimplemented;
scroggoe7fc14b2015-10-02 13:14:46 -0700275 }
276
msarett3d9d7a72015-10-21 10:27:10 -0700277 if (sampler->setSampleX(sampleX) != info.width()) {
278 return SkCodec::kInvalidScale;
279 }
280 if (get_scaled_dimension(subsetHeight, sampleY) != info.height()) {
281 return SkCodec::kInvalidScale;
scroggoe7fc14b2015-10-02 13:14:46 -0700282 }
283
msarett90c4d5f2015-12-10 13:09:24 -0800284 switch(this->codec()->getScanlineOrder()) {
scroggo46c57472015-09-30 08:57:13 -0700285 case SkCodec::kTopDown_SkScanlineOrder: {
msarett90c4d5f2015-12-10 13:09:24 -0800286 if (!this->codec()->skipScanlines(startY)) {
287 this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized,
msarett3d9d7a72015-10-21 10:27:10 -0700288 dstHeight, 0);
289 return SkCodec::kIncompleteInput;
msarett5406d6f2015-08-31 06:55:13 -0700290 }
msarett3d9d7a72015-10-21 10:27:10 -0700291 void* pixelPtr = pixels;
msarett5406d6f2015-08-31 06:55:13 -0700292 for (int y = 0; y < dstHeight; y++) {
msarett90c4d5f2015-12-10 13:09:24 -0800293 if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) {
294 this->codec()->fillIncompleteImage(info, pixels, rowBytes,
295 options.fZeroInitialized, dstHeight, y + 1);
msarett3d9d7a72015-10-21 10:27:10 -0700296 return SkCodec::kIncompleteInput;
msarett5406d6f2015-08-31 06:55:13 -0700297 }
msarett691ad762015-11-05 11:19:29 -0800298 if (y < dstHeight - 1) {
msarett90c4d5f2015-12-10 13:09:24 -0800299 if (!this->codec()->skipScanlines(sampleY - 1)) {
300 this->codec()->fillIncompleteImage(info, pixels, rowBytes,
msarett691ad762015-11-05 11:19:29 -0800301 options.fZeroInitialized, dstHeight, y + 1);
302 return SkCodec::kIncompleteInput;
303 }
msarett5406d6f2015-08-31 06:55:13 -0700304 }
msarett3d9d7a72015-10-21 10:27:10 -0700305 pixelPtr = SkTAddOffset<void>(pixelPtr, rowBytes);
msarett5406d6f2015-08-31 06:55:13 -0700306 }
msarett3d9d7a72015-10-21 10:27:10 -0700307 return SkCodec::kSuccess;
emmaleer8f4ba762015-08-14 07:44:46 -0700308 }
msarett887e18e2015-11-17 08:46:02 -0800309 case SkCodec::kBottomUp_SkScanlineOrder: {
msarett5af4e0b2015-11-17 11:18:03 -0800310 // Note that these modes do not support subsetting.
msarett887e18e2015-11-17 08:46:02 -0800311 SkASSERT(0 == subsetY && nativeSize.height() == subsetHeight);
312 int y;
313 for (y = 0; y < nativeSize.height(); y++) {
msarett90c4d5f2015-12-10 13:09:24 -0800314 int srcY = this->codec()->nextScanline();
msarett887e18e2015-11-17 08:46:02 -0800315 if (is_coord_necessary(srcY, sampleY, dstHeight)) {
316 void* pixelPtr = SkTAddOffset<void>(pixels,
317 rowBytes * get_dst_coord(srcY, sampleY));
msarett90c4d5f2015-12-10 13:09:24 -0800318 if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) {
msarett887e18e2015-11-17 08:46:02 -0800319 break;
320 }
321 } else {
msarett90c4d5f2015-12-10 13:09:24 -0800322 if (!this->codec()->skipScanlines(1)) {
msarett887e18e2015-11-17 08:46:02 -0800323 break;
324 }
325 }
326 }
327
328 if (nativeSize.height() == y) {
329 return SkCodec::kSuccess;
330 }
331
msarett90c4d5f2015-12-10 13:09:24 -0800332 // We handle filling uninitialized memory here instead of using this->codec().
333 // this->codec() does not know that we are sampling.
msarettf7eb6fc2016-09-13 09:04:11 -0700334 const uint64_t fillValue = this->codec()->getFillValue(info);
msarett887e18e2015-11-17 08:46:02 -0800335 const SkImageInfo fillInfo = info.makeWH(info.width(), 1);
336 for (; y < nativeSize.height(); y++) {
msarett90c4d5f2015-12-10 13:09:24 -0800337 int srcY = this->codec()->outputScanline(y);
msarett887e18e2015-11-17 08:46:02 -0800338 if (!is_coord_necessary(srcY, sampleY, dstHeight)) {
339 continue;
340 }
341
342 void* rowPtr = SkTAddOffset<void>(pixels, rowBytes * get_dst_coord(srcY, sampleY));
343 SkSampler::Fill(fillInfo, rowPtr, rowBytes, fillValue, options.fZeroInitialized);
344 }
345 return SkCodec::kIncompleteInput;
346 }
msarett5406d6f2015-08-31 06:55:13 -0700347 default:
348 SkASSERT(false);
msarett3d9d7a72015-10-21 10:27:10 -0700349 return SkCodec::kUnimplemented;
emmaleer8f4ba762015-08-14 07:44:46 -0700350 }
emmaleer8f4ba762015-08-14 07:44:46 -0700351}