| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkCodec.h" | 8 #include "SkCodec.h" |
| 9 #include "SkMSAN.h" | 9 #include "SkMSAN.h" |
| 10 #include "SkJpegCodec.h" | 10 #include "SkJpegCodec.h" |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 sk_msan_mark_initialized(decodeDst, decodeDst + srcRowBytes, "skbug.com/
4550"); | 510 sk_msan_mark_initialized(decodeDst, decodeDst + srcRowBytes, "skbug.com/
4550"); |
| 511 if (0 == lines) { | 511 if (0 == lines) { |
| 512 return y; | 512 return y; |
| 513 } | 513 } |
| 514 | 514 |
| 515 if (fSwizzler) { | 515 if (fSwizzler) { |
| 516 fSwizzler->swizzle(swizzleDst, decodeDst); | 516 fSwizzler->swizzle(swizzleDst, decodeDst); |
| 517 } | 517 } |
| 518 | 518 |
| 519 if (fColorXform) { | 519 if (fColorXform) { |
| 520 fColorXform->apply(dst, swizzleDst, dstWidth, dstInfo.colorType(), k
Opaque_SkAlphaType); | 520 fColorXform->apply(dst, swizzleDst, dstWidth, select_xform_format(ds
tInfo.colorType()), |
| 521 kOpaque_SkAlphaType); |
| 521 dst = SkTAddOffset<void>(dst, rowBytes); | 522 dst = SkTAddOffset<void>(dst, rowBytes); |
| 522 } | 523 } |
| 523 | 524 |
| 524 decodeDst = SkTAddOffset<JSAMPLE>(decodeDst, decodeDstRowBytes); | 525 decodeDst = SkTAddOffset<JSAMPLE>(decodeDst, decodeDstRowBytes); |
| 525 swizzleDst = SkTAddOffset<uint32_t>(swizzleDst, swizzleDstRowBytes); | 526 swizzleDst = SkTAddOffset<uint32_t>(swizzleDst, swizzleDstRowBytes); |
| 526 } | 527 } |
| 527 | 528 |
| 528 return count; | 529 return count; |
| 529 } | 530 } |
| 530 | 531 |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 | 926 |
| 926 JDIMENSION linesRead = jpeg_read_raw_data(dinfo, yuv, numRowsPerBlock); | 927 JDIMENSION linesRead = jpeg_read_raw_data(dinfo, yuv, numRowsPerBlock); |
| 927 if (linesRead < remainingRows) { | 928 if (linesRead < remainingRows) { |
| 928 // FIXME: Handle incomplete YUV decodes without signalling an error. | 929 // FIXME: Handle incomplete YUV decodes without signalling an error. |
| 929 return kInvalidInput; | 930 return kInvalidInput; |
| 930 } | 931 } |
| 931 } | 932 } |
| 932 | 933 |
| 933 return kSuccess; | 934 return kSuccess; |
| 934 } | 935 } |
| OLD | NEW |