From e87d7781db75a7ec22a103eda0886c2ca8dc4d9d Mon Sep 17 00:00:00 2001 From: Jim Van Verth Date: Wed, 5 Apr 2017 21:56:10 +0000 Subject: [PATCH] Revert "Add support for writing ICC profiles to webp encoder" This reverts commit 0c9d0b4e03b6c10778329e995b5dfdcb97954b28. Reason for revert: Looks like it's breaking a number of bots. Original change's description: > Add support for writing ICC profiles to webp encoder > > Bug: skia: > Change-Id: If0a8f84ed88da96924370b841f2283c0ff8e32ab > Reviewed-on: https://skia-review.googlesource.com/10212 > Commit-Queue: Matt Sarett > Reviewed-by: Leon Scroggins > TBR=msarett@google.com,scroggo@google.com,reviews@skia.org,jzern@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Change-Id: Ic06ad9f19a4d743b34f8d3bd33f171b9d74badcb Reviewed-on: https://skia-review.googlesource.com/11408 Reviewed-by: Jim Van Verth Commit-Queue: Jim Van Verth --- src/images/SkWEBPImageEncoder.cpp | 56 ++++++++------------------------------- tests/CodecTest.cpp | 4 --- third_party/libwebp/BUILD.gn | 4 --- 3 files changed, 11 insertions(+), 53 deletions(-) diff --git a/src/images/SkWEBPImageEncoder.cpp b/src/images/SkWEBPImageEncoder.cpp index 728dbc7..28dff05 100644 --- a/src/images/SkWEBPImageEncoder.cpp +++ b/src/images/SkWEBPImageEncoder.cpp @@ -26,7 +26,7 @@ #include "SkUnPreMultiply.h" #include "SkUtils.h" -// A WebP encoder only, on top of (subset of) libwebp +// A WebP decoder only, on top of (subset of) libwebp // For more information on WebP image format, and libwebp library, see: // http://code.google.com/speed/webp/ // http://www.webmproject.org/code/#libwebp_webp_image_decoder_library @@ -37,7 +37,6 @@ extern "C" { // If moving libwebp out of skia source tree, path for webp headers must be // updated accordingly. Here, we enforce using local copy in webp sub-directory. #include "webp/encode.h" -#include "webp/mux.h" } static transform_scanline_proc choose_proc(const SkImageInfo& info) { @@ -175,17 +174,10 @@ static bool do_encode(SkWStream* stream, const SkPixmap& srcPixmap, const SkEnco WebPPicture pic; WebPPictureInit(&pic); - SkAutoTCallVProc autoPic(&pic); pic.width = pixmap.width(); pic.height = pixmap.height(); pic.writer = stream_writer; - - // If there is no need to embed an ICC profile, we write directly to the input stream. - // Otherwise, we will first encode to |tmp| and use a mux to add the ICC chunk. libwebp - // forces us to have an encoded image before we can add a profile. - sk_sp icc = pixmap.colorSpace() ? icc_from_color_space(*pixmap.colorSpace()) : nullptr; - SkDynamicMemoryWStream tmp; - pic.custom_ptr = icc ? (void*)&tmp : (void*)stream; + pic.custom_ptr = (void*)stream; const uint8_t* src = (uint8_t*)pixmap.addr(); const int rgbStride = pic.width * bpp; @@ -198,47 +190,21 @@ static bool do_encode(SkWStream* stream, const SkPixmap& srcPixmap, const SkEnco proc((char*) &rgb[y * rgbStride], (const char*) &src[y * rowBytes], pic.width, bpp, colors); } - auto importProc = WebPPictureImportRGB; - if (3 != bpp) { + bool ok; + if (bpp == 3) { + ok = SkToBool(WebPPictureImportRGB(&pic, &rgb[0], rgbStride)); + } else { if (pixmap.isOpaque()) { - importProc = WebPPictureImportRGBX; + ok = SkToBool(WebPPictureImportRGBX(&pic, &rgb[0], rgbStride)); } else { - importProc = WebPPictureImportRGBA; + ok = SkToBool(WebPPictureImportRGBA(&pic, &rgb[0], rgbStride)); } } - if (!importProc(&pic, &rgb[0], rgbStride)) { - return false; - } - - if (!WebPEncode(&webp_config, &pic)) { - return false; - } - - if (icc) { - sk_sp encodedData = tmp.detachAsData(); - WebPData encoded = { encodedData->bytes(), encodedData->size() }; - WebPData iccChunk = { icc->bytes(), icc->size() }; - - SkAutoTCallVProc mux(WebPMuxNew()); - if (WEBP_MUX_OK != WebPMuxSetImage(mux, &encoded, 0)) { - return false; - } - - if (WEBP_MUX_OK != WebPMuxSetChunk(mux, "ICCP", &iccChunk, 0)) { - return false; - } - - WebPData assembled; - if (WEBP_MUX_OK != WebPMuxAssemble(mux, &assembled)) { - return false; - } - - stream->write(assembled.bytes, assembled.size); - WebPDataClear(&assembled); - } + ok = ok && WebPEncode(&webp_config, &pic); + WebPPictureFree(&pic); - return true; + return ok; } bool SkEncodeImageAsWEBP(SkWStream* stream, const SkPixmap& src, int quality) { diff --git a/tests/CodecTest.cpp b/tests/CodecTest.cpp index 3897878..f3a393d 100644 --- a/tests/CodecTest.cpp +++ b/tests/CodecTest.cpp @@ -1538,9 +1538,6 @@ static void encode_format(SkDynamicMemoryWStream* stream, const SkPixmap& pixmap case SkEncodedImageFormat::kJPEG: SkEncodeImageAsJPEG(stream, pixmap, opts); break; - case SkEncodedImageFormat::kWEBP: - SkEncodeImageAsWEBP(stream, pixmap, opts); - break; default: SkASSERT(false); break; @@ -1589,5 +1586,4 @@ static void test_encode_icc(skiatest::Reporter* r, SkEncodedImageFormat format) DEF_TEST(Codec_EncodeICC, r) { test_encode_icc(r, SkEncodedImageFormat::kPNG); test_encode_icc(r, SkEncodedImageFormat::kJPEG); - test_encode_icc(r, SkEncodedImageFormat::kWEBP); } diff --git a/third_party/libwebp/BUILD.gn b/third_party/libwebp/BUILD.gn index 7fec982..3e9bd06 100644 --- a/third_party/libwebp/BUILD.gn +++ b/third_party/libwebp/BUILD.gn @@ -128,10 +128,6 @@ if (skia_use_system_libwebp) { "../externals/libwebp/src/enc/tree_enc.c", "../externals/libwebp/src/enc/vp8l_enc.c", "../externals/libwebp/src/enc/webp_enc.c", - "../externals/libwebp/src/mux/anim_encode.c", - "../externals/libwebp/src/mux/muxedit.c", - "../externals/libwebp/src/mux/muxinternal.c", - "../externals/libwebp/src/mux/muxread.c", "../externals/libwebp/src/utils/bit_reader_utils.c", "../externals/libwebp/src/utils/bit_writer_utils.c", "../externals/libwebp/src/utils/color_cache_utils.c", -- 2.7.4