emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -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 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 8 | #include "SkCodec.h" |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 9 | #include "SkCodecPriv.h" |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 10 | #include "SkMath.h" |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 11 | #include "SkSampledCodec.h" |
msarett | a4970dc | 2016-01-11 07:23:23 -0800 | [diff] [blame] | 12 | #include "SkSampler.h" |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 13 | #include "SkTemplates.h" |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 14 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 15 | SkSampledCodec::SkSampledCodec(SkCodec* codec) |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 16 | : INHERITED(codec) |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 17 | {} |
| 18 | |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 19 | SkISize SkSampledCodec::accountForNativeScaling(int* sampleSizePtr, int* nativeSampleSize) const { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 20 | SkISize preSampledSize = this->codec()->getInfo().dimensions(); |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 21 | int sampleSize = *sampleSizePtr; |
| 22 | SkASSERT(sampleSize > 1); |
| 23 | |
| 24 | if (nativeSampleSize) { |
| 25 | *nativeSampleSize = 1; |
| 26 | } |
| 27 | |
| 28 | // Only JPEG supports native downsampling. |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 29 | if (this->codec()->getEncodedFormat() == SkEncodedImageFormat::kJPEG) { |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 30 | // 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; |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 37 | return this->codec()->getScaledDimensions(get_scale_from_sample_size(sampleSize)); |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 38 | 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 | |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 51 | // this->codec() will scale to this size. |
| 52 | preSampledSize = this->codec()->getScaledDimensions(scale); |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 53 | |
| 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 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 67 | SkISize SkSampledCodec::onGetSampledDimensions(int sampleSize) const { |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 68 | const SkISize size = this->accountForNativeScaling(&sampleSize); |
| 69 | return SkISize::Make(get_scaled_dimension(size.width(), sampleSize), |
| 70 | get_scaled_dimension(size.height(), sampleSize)); |
msarett | a83593b | 2015-08-18 08:03:58 -0700 | [diff] [blame] | 71 | } |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 72 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 73 | SkCodec::Result SkSampledCodec::onGetAndroidPixels(const SkImageInfo& info, void* pixels, |
scroggo | e95a068 | 2015-11-04 04:31:12 -0800 | [diff] [blame] | 74 | size_t rowBytes, const AndroidOptions& options) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 75 | // Create an Options struct for the codec. |
| 76 | SkCodec::Options codecOptions; |
| 77 | codecOptions.fZeroInitialized = options.fZeroInitialized; |
Matt Sarett | cf3f234 | 2017-03-23 15:32:25 -0400 | [diff] [blame] | 78 | codecOptions.fPremulBehavior = SkTransferFunctionBehavior::kIgnore; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 79 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 80 | SkIRect* subset = options.fSubset; |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 81 | if (!subset || subset->size() == this->codec()->getInfo().dimensions()) { |
| 82 | if (this->codec()->dimensionsSupported(info.dimensions())) { |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 83 | return this->codec()->getPixels(info, pixels, rowBytes, &codecOptions); |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 84 | } |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 85 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 86 | // If the native codec does not support the requested scale, scale by sampling. |
| 87 | return this->sampledDecode(info, pixels, rowBytes, options); |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 88 | } |
| 89 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 90 | // We are performing a subset decode. |
| 91 | int sampleSize = options.fSampleSize; |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 92 | SkISize scaledSize = this->getSampledDimensions(sampleSize); |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 93 | if (!this->codec()->dimensionsSupported(scaledSize)) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 94 | // If the native codec does not support the requested scale, scale by sampling. |
| 95 | return this->sampledDecode(info, pixels, rowBytes, options); |
| 96 | } |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 97 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 98 | // Calculate the scaled subset bounds. |
| 99 | int scaledSubsetX = subset->x() / sampleSize; |
| 100 | int scaledSubsetY = subset->y() / sampleSize; |
| 101 | int scaledSubsetWidth = info.width(); |
| 102 | int scaledSubsetHeight = info.height(); |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 103 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 104 | const SkImageInfo scaledInfo = info.makeWH(scaledSize.width(), scaledSize.height()); |
| 105 | |
| 106 | { |
| 107 | // Although startScanlineDecode expects the bottom and top to match the |
| 108 | // SkImageInfo, startIncrementalDecode uses them to determine which rows to |
| 109 | // decode. |
| 110 | SkIRect incrementalSubset = SkIRect::MakeXYWH(scaledSubsetX, scaledSubsetY, |
| 111 | scaledSubsetWidth, scaledSubsetHeight); |
| 112 | codecOptions.fSubset = &incrementalSubset; |
| 113 | const SkCodec::Result startResult = this->codec()->startIncrementalDecode( |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 114 | scaledInfo, pixels, rowBytes, &codecOptions); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 115 | if (SkCodec::kSuccess == startResult) { |
| 116 | int rowsDecoded; |
| 117 | const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded); |
| 118 | if (incResult == SkCodec::kSuccess) { |
| 119 | return SkCodec::kSuccess; |
| 120 | } |
| 121 | SkASSERT(SkCodec::kIncompleteInput == incResult); |
| 122 | |
| 123 | // FIXME: Can zero initialized be read from SkCodec::fOptions? |
| 124 | this->codec()->fillIncompleteImage(scaledInfo, pixels, rowBytes, |
| 125 | options.fZeroInitialized, scaledSubsetHeight, rowsDecoded); |
| 126 | return SkCodec::kIncompleteInput; |
| 127 | } else if (startResult != SkCodec::kUnimplemented) { |
| 128 | return startResult; |
| 129 | } |
| 130 | // Otherwise fall down to use the old scanline decoder. |
| 131 | // codecOptions.fSubset will be reset below, so it will not continue to |
| 132 | // point to the object that is no longer on the stack. |
| 133 | } |
| 134 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 135 | // Start the scanline decode. |
| 136 | SkIRect scanlineSubset = SkIRect::MakeXYWH(scaledSubsetX, 0, scaledSubsetWidth, |
| 137 | scaledSize.height()); |
| 138 | codecOptions.fSubset = &scanlineSubset; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 139 | |
| 140 | SkCodec::Result result = this->codec()->startScanlineDecode(scaledInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 141 | &codecOptions); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 142 | if (SkCodec::kSuccess != result) { |
| 143 | return result; |
| 144 | } |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 145 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 146 | // At this point, we are only concerned with subsetting. Either no scale was |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 147 | // requested, or the this->codec() is handling the scale. |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 148 | // Note that subsetting is only supported for kTopDown, so this code will not be |
| 149 | // reached for other orders. |
| 150 | SkASSERT(this->codec()->getScanlineOrder() == SkCodec::kTopDown_SkScanlineOrder); |
| 151 | if (!this->codec()->skipScanlines(scaledSubsetY)) { |
| 152 | this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized, |
| 153 | scaledSubsetHeight, 0); |
| 154 | return SkCodec::kIncompleteInput; |
scroggo | 6fb2391 | 2016-06-02 14:16:43 -0700 | [diff] [blame] | 155 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 156 | |
| 157 | int decodedLines = this->codec()->getScanlines(pixels, scaledSubsetHeight, rowBytes); |
| 158 | if (decodedLines != scaledSubsetHeight) { |
| 159 | return SkCodec::kIncompleteInput; |
| 160 | } |
| 161 | return SkCodec::kSuccess; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 162 | } |
| 163 | |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 164 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 165 | SkCodec::Result SkSampledCodec::sampledDecode(const SkImageInfo& info, void* pixels, |
scroggo | e95a068 | 2015-11-04 04:31:12 -0800 | [diff] [blame] | 166 | size_t rowBytes, const AndroidOptions& options) { |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 167 | // We should only call this function when sampling. |
| 168 | SkASSERT(options.fSampleSize > 1); |
| 169 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 170 | // Create options struct for the codec. |
| 171 | SkCodec::Options sampledOptions; |
| 172 | sampledOptions.fZeroInitialized = options.fZeroInitialized; |
Matt Sarett | cf3f234 | 2017-03-23 15:32:25 -0400 | [diff] [blame] | 173 | sampledOptions.fPremulBehavior = SkTransferFunctionBehavior::kIgnore; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 174 | |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 175 | // FIXME: This was already called by onGetAndroidPixels. Can we reduce that? |
| 176 | int sampleSize = options.fSampleSize; |
| 177 | int nativeSampleSize; |
| 178 | SkISize nativeSize = this->accountForNativeScaling(&sampleSize, &nativeSampleSize); |
| 179 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 180 | // Check if there is a subset. |
| 181 | SkIRect subset; |
| 182 | int subsetY = 0; |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 183 | int subsetWidth = nativeSize.width(); |
| 184 | int subsetHeight = nativeSize.height(); |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 185 | if (options.fSubset) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 186 | // We will need to know about subsetting in the y-dimension in order to use the |
| 187 | // scanline decoder. |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 188 | // Update the subset to account for scaling done by this->codec(). |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 189 | const SkIRect* subsetPtr = options.fSubset; |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 190 | |
| 191 | // Do the divide ourselves, instead of calling get_scaled_dimension. If |
| 192 | // X and Y are 0, they should remain 0, rather than being upgraded to 1 |
| 193 | // due to being smaller than the sampleSize. |
| 194 | const int subsetX = subsetPtr->x() / nativeSampleSize; |
| 195 | subsetY = subsetPtr->y() / nativeSampleSize; |
| 196 | |
| 197 | subsetWidth = get_scaled_dimension(subsetPtr->width(), nativeSampleSize); |
| 198 | subsetHeight = get_scaled_dimension(subsetPtr->height(), nativeSampleSize); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 199 | |
| 200 | // The scanline decoder only needs to be aware of subsetting in the x-dimension. |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 201 | subset.setXYWH(subsetX, 0, subsetWidth, nativeSize.height()); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 202 | sampledOptions.fSubset = ⊂ |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 203 | } |
| 204 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 205 | // Since we guarantee that output dimensions are always at least one (even if the sampleSize |
| 206 | // is greater than a given dimension), the input sampleSize is not always the sampleSize that |
| 207 | // we use in practice. |
| 208 | const int sampleX = subsetWidth / info.width(); |
| 209 | const int sampleY = subsetHeight / info.height(); |
| 210 | |
| 211 | const int samplingOffsetY = get_start_coord(sampleY); |
| 212 | const int startY = samplingOffsetY + subsetY; |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 213 | const int dstHeight = info.height(); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 214 | |
| 215 | const SkImageInfo nativeInfo = info.makeWH(nativeSize.width(), nativeSize.height()); |
| 216 | |
| 217 | { |
| 218 | // Although startScanlineDecode expects the bottom and top to match the |
| 219 | // SkImageInfo, startIncrementalDecode uses them to determine which rows to |
| 220 | // decode. |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 221 | SkCodec::Options incrementalOptions = sampledOptions; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 222 | SkIRect incrementalSubset; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 223 | if (sampledOptions.fSubset) { |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 224 | incrementalSubset.fTop = subsetY; |
| 225 | incrementalSubset.fBottom = subsetY + subsetHeight; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 226 | incrementalSubset.fLeft = sampledOptions.fSubset->fLeft; |
| 227 | incrementalSubset.fRight = sampledOptions.fSubset->fRight; |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 228 | incrementalOptions.fSubset = &incrementalSubset; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 229 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 230 | const SkCodec::Result startResult = this->codec()->startIncrementalDecode(nativeInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 231 | pixels, rowBytes, &incrementalOptions); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 232 | if (SkCodec::kSuccess == startResult) { |
| 233 | SkSampler* sampler = this->codec()->getSampler(true); |
| 234 | if (!sampler) { |
| 235 | return SkCodec::kUnimplemented; |
| 236 | } |
| 237 | |
| 238 | if (sampler->setSampleX(sampleX) != info.width()) { |
| 239 | return SkCodec::kInvalidScale; |
| 240 | } |
| 241 | if (get_scaled_dimension(subsetHeight, sampleY) != info.height()) { |
| 242 | return SkCodec::kInvalidScale; |
| 243 | } |
| 244 | |
| 245 | sampler->setSampleY(sampleY); |
| 246 | |
| 247 | int rowsDecoded; |
| 248 | const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded); |
| 249 | if (incResult == SkCodec::kSuccess) { |
| 250 | return SkCodec::kSuccess; |
| 251 | } |
Leon Scroggins III | 674a184 | 2017-07-06 12:26:09 -0400 | [diff] [blame] | 252 | SkASSERT(incResult == SkCodec::kIncompleteInput || incResult == SkCodec::kErrorInInput); |
msarett | c6c81e1 | 2016-09-16 14:52:07 -0700 | [diff] [blame] | 253 | |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 254 | SkASSERT(rowsDecoded <= info.height()); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 255 | this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized, |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 256 | info.height(), rowsDecoded); |
Leon Scroggins III | 674a184 | 2017-07-06 12:26:09 -0400 | [diff] [blame] | 257 | return incResult; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 258 | } else if (startResult != SkCodec::kUnimplemented) { |
| 259 | return startResult; |
| 260 | } // kUnimplemented means use the old method. |
| 261 | } |
| 262 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 263 | // Start the scanline decode. |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 264 | SkCodec::Result result = this->codec()->startScanlineDecode(nativeInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 265 | &sampledOptions); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 266 | if (SkCodec::kSuccess != result) { |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 267 | return result; |
| 268 | } |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 269 | |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 270 | SkSampler* sampler = this->codec()->getSampler(true); |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 271 | if (!sampler) { |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 272 | return SkCodec::kUnimplemented; |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 273 | } |
| 274 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 275 | if (sampler->setSampleX(sampleX) != info.width()) { |
| 276 | return SkCodec::kInvalidScale; |
| 277 | } |
| 278 | if (get_scaled_dimension(subsetHeight, sampleY) != info.height()) { |
| 279 | return SkCodec::kInvalidScale; |
scroggo | e7fc14b | 2015-10-02 13:14:46 -0700 | [diff] [blame] | 280 | } |
| 281 | |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 282 | switch(this->codec()->getScanlineOrder()) { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 283 | case SkCodec::kTopDown_SkScanlineOrder: { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 284 | if (!this->codec()->skipScanlines(startY)) { |
| 285 | this->codec()->fillIncompleteImage(info, pixels, rowBytes, options.fZeroInitialized, |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 286 | dstHeight, 0); |
| 287 | return SkCodec::kIncompleteInput; |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 288 | } |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 289 | void* pixelPtr = pixels; |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 290 | for (int y = 0; y < dstHeight; y++) { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 291 | if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) { |
| 292 | this->codec()->fillIncompleteImage(info, pixels, rowBytes, |
| 293 | options.fZeroInitialized, dstHeight, y + 1); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 294 | return SkCodec::kIncompleteInput; |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 295 | } |
msarett | 691ad76 | 2015-11-05 11:19:29 -0800 | [diff] [blame] | 296 | if (y < dstHeight - 1) { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 297 | if (!this->codec()->skipScanlines(sampleY - 1)) { |
| 298 | this->codec()->fillIncompleteImage(info, pixels, rowBytes, |
msarett | 691ad76 | 2015-11-05 11:19:29 -0800 | [diff] [blame] | 299 | options.fZeroInitialized, dstHeight, y + 1); |
| 300 | return SkCodec::kIncompleteInput; |
| 301 | } |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 302 | } |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 303 | pixelPtr = SkTAddOffset<void>(pixelPtr, rowBytes); |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 304 | } |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 305 | return SkCodec::kSuccess; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 306 | } |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 307 | case SkCodec::kBottomUp_SkScanlineOrder: { |
msarett | 5af4e0b | 2015-11-17 11:18:03 -0800 | [diff] [blame] | 308 | // Note that these modes do not support subsetting. |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 309 | SkASSERT(0 == subsetY && nativeSize.height() == subsetHeight); |
| 310 | int y; |
| 311 | for (y = 0; y < nativeSize.height(); y++) { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 312 | int srcY = this->codec()->nextScanline(); |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 313 | if (is_coord_necessary(srcY, sampleY, dstHeight)) { |
| 314 | void* pixelPtr = SkTAddOffset<void>(pixels, |
| 315 | rowBytes * get_dst_coord(srcY, sampleY)); |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 316 | if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) { |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 317 | break; |
| 318 | } |
| 319 | } else { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 320 | if (!this->codec()->skipScanlines(1)) { |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 321 | break; |
| 322 | } |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | if (nativeSize.height() == y) { |
| 327 | return SkCodec::kSuccess; |
| 328 | } |
| 329 | |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 330 | // We handle filling uninitialized memory here instead of using this->codec(). |
| 331 | // this->codec() does not know that we are sampling. |
msarett | f7eb6fc | 2016-09-13 09:04:11 -0700 | [diff] [blame] | 332 | const uint64_t fillValue = this->codec()->getFillValue(info); |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 333 | const SkImageInfo fillInfo = info.makeWH(info.width(), 1); |
| 334 | for (; y < nativeSize.height(); y++) { |
msarett | 90c4d5f | 2015-12-10 13:09:24 -0800 | [diff] [blame] | 335 | int srcY = this->codec()->outputScanline(y); |
msarett | 887e18e | 2015-11-17 08:46:02 -0800 | [diff] [blame] | 336 | if (!is_coord_necessary(srcY, sampleY, dstHeight)) { |
| 337 | continue; |
| 338 | } |
| 339 | |
| 340 | void* rowPtr = SkTAddOffset<void>(pixels, rowBytes * get_dst_coord(srcY, sampleY)); |
| 341 | SkSampler::Fill(fillInfo, rowPtr, rowBytes, fillValue, options.fZeroInitialized); |
| 342 | } |
| 343 | return SkCodec::kIncompleteInput; |
| 344 | } |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 345 | default: |
| 346 | SkASSERT(false); |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 347 | return SkCodec::kUnimplemented; |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 348 | } |
emmaleer | 8f4ba76 | 2015-08-14 07:44:46 -0700 | [diff] [blame] | 349 | } |