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

Side by Side Diff: third_party/WebKit/Source/platform/image-encoders/PNGImageEncoder.cpp

Issue 2062423002: Fix performance regression in png encoding caused by libpng update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win Created 4 years, 6 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 | « no previous file | third_party/libpng/BUILD.gn » ('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 (c) 2010, Google Inc. All rights reserved. 2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "platform/image-encoders/PNGImageEncoder.h" 31 #include "platform/image-encoders/PNGImageEncoder.h"
32 32
33 #include "platform/graphics/ImageBuffer.h" 33 #include "platform/graphics/ImageBuffer.h"
34 #include "wtf/OwnPtr.h" 34 #include "wtf/OwnPtr.h"
35 35
36 #include "zlib.h"
37
36 namespace blink { 38 namespace blink {
37 39
38 PNGImageEncoderState::~PNGImageEncoderState() 40 PNGImageEncoderState::~PNGImageEncoderState()
39 { 41 {
40 png_destroy_write_struct(&m_png, &m_info); 42 png_destroy_write_struct(&m_png, &m_info);
41 } 43 }
42 44
43 static void writeOutput(png_structp png, png_bytep data, png_size_t size) 45 static void writeOutput(png_structp png, png_bytep data, png_size_t size)
44 { 46 {
45 static_cast<Vector<unsigned char>*>(png_get_io_ptr(png))->append(data, size) ; 47 static_cast<Vector<unsigned char>*>(png_get_io_ptr(png))->append(data, size) ;
46 } 48 }
47 49
48 PassOwnPtr<PNGImageEncoderState> PNGImageEncoderState::create(const IntSize& ima geSize, Vector<unsigned char>* output) 50 PassOwnPtr<PNGImageEncoderState> PNGImageEncoderState::create(const IntSize& ima geSize, Vector<unsigned char>* output)
49 { 51 {
50 if (imageSize.width() <= 0 || imageSize.height() <= 0) 52 if (imageSize.width() <= 0 || imageSize.height() <= 0)
51 return nullptr; 53 return nullptr;
52 54
53 png_struct* png = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0); 55 png_struct* png = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
54 png_info* info = png_create_info_struct(png); 56 png_info* info = png_create_info_struct(png);
55 if (!png || !info || setjmp(png_jmpbuf(png))) { 57 if (!png || !info || setjmp(png_jmpbuf(png))) {
56 png_destroy_write_struct(png ? &png : 0, info ? &info : 0); 58 png_destroy_write_struct(png ? &png : 0, info ? &info : 0);
57 return nullptr; 59 return nullptr;
58 } 60 }
59 61
60 // Optimize compression for speed. 62 // Optimize compression for speed.
61 // The parameters are the same as what libpng uses by default for RGB and RG BA images, except: 63 // The parameters are the same as what libpng uses by default for RGB and RG BA images, except:
62 // - the zlib compression level is 3 instead of 6, to avoid the lazy Ziv-Lem pel match searching; 64 // The zlib compression level is set to 3 instead of 6, to avoid the lazy Zi v-Lempel match searching.
63 // - the delta filter is 1 ("sub") instead of 5 ("all"), to reduce the filte r computations. 65 png_set_compression_level(png, 3);
64 // The zlib memory level (8) and strategy (Z_FILTERED) will be set inside li bpng. 66
65 // 67 // The zlib memory level is set to 8. This actually matches the default, we are just future-proofing.
68 png_set_compression_mem_level(png, 8);
69
70 // The zlib strategy is set to Z_FILTERED, which does not match the default.
66 // Avoid the zlib strategies Z_HUFFMAN_ONLY or Z_RLE. 71 // Avoid the zlib strategies Z_HUFFMAN_ONLY or Z_RLE.
67 // Although they are the fastest for poorly-compressible images (e.g. photog raphs), 72 // Although they are the fastest for poorly-compressible images (e.g. photog raphs),
68 // they are very slow for highly-compressible images (e.g. text, drawings or business graphics) 73 // they are very slow for highly-compressible images (e.g. text, drawings or business graphics)
69 png_set_compression_level(png, 3); 74 png_set_compression_strategy(png, Z_FILTERED);
75
76 // The delta filter is PNG_FILTER_SUB instead of PNG_ALL_FILTERS, to reduce the filter computations.
70 png_set_filter(png, PNG_FILTER_TYPE_BASE, PNG_FILTER_SUB); 77 png_set_filter(png, PNG_FILTER_TYPE_BASE, PNG_FILTER_SUB);
71 78
72 png_set_write_fn(png, output, writeOutput, 0); 79 png_set_write_fn(png, output, writeOutput, 0);
73 png_set_IHDR(png, info, imageSize.width(), imageSize.height(), 8, PNG_COLOR_ TYPE_RGB_ALPHA, 0, 0, 0); 80 png_set_IHDR(png, info, imageSize.width(), imageSize.height(), 8, PNG_COLOR_ TYPE_RGB_ALPHA, 0, 0, 0);
74 png_write_info(png, info); 81 png_write_info(png, info);
75 82
76 return adoptPtr(new PNGImageEncoderState(png, info)); 83 return adoptPtr(new PNGImageEncoderState(png, info));
77 } 84 }
78 85
79 void PNGImageEncoder::writeOneRowToPng(unsigned char* pixels, PNGImageEncoderSta te* encoderState) 86 void PNGImageEncoder::writeOneRowToPng(unsigned char* pixels, PNGImageEncoderSta te* encoderState)
(...skipping 25 matching lines...) Expand all
105 112
106 bool PNGImageEncoder::encode(const ImageDataBuffer& imageData, Vector<unsigned c har>* output) 113 bool PNGImageEncoder::encode(const ImageDataBuffer& imageData, Vector<unsigned c har>* output)
107 { 114 {
108 if (!imageData.pixels()) 115 if (!imageData.pixels())
109 return false; 116 return false;
110 117
111 return encodePixels(imageData.size(), imageData.pixels(), output); 118 return encodePixels(imageData.size(), imageData.pixels(), output);
112 } 119 }
113 120
114 } // namespace blink 121 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/libpng/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698