Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: src/codec/SkJpegCodec.cpp

Issue 2339233003: Support Float32 output from SkColorSpaceXform (Closed)
Patch Set: Remove gpu changes Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/codec/SkCodecPriv.h ('k') | src/codec/SkPngCodec.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « src/codec/SkCodecPriv.h ('k') | src/codec/SkPngCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698