Chromium Code Reviews| Index: third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp |
| diff --git a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp |
| index 3b5633bc4f95ca5f34000fb76f0135cd279dc716..4223ffc802690583f385165f8d230adff20f8763 100644 |
| --- a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp |
| +++ b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp |
| @@ -38,8 +38,8 @@ |
| #include "platform/image-decoders/png/PNGImageDecoder.h" |
| +#include "platform/image-decoders/png/PNGImageReader.h" |
| #include "png.h" |
| -#include "wtf/PtrUtil.h" |
| #include <memory> |
| #if !defined(PNG_LIBPNG_VER_MAJOR) || !defined(PNG_LIBPNG_VER_MINOR) |
| @@ -53,116 +53,99 @@ |
| #define JMPBUF(png_ptr) png_ptr->jmpbuf |
| #endif |
| -namespace { |
| +namespace blink { |
| -inline blink::PNGImageDecoder* imageDecoder(png_structp png) { |
| - return static_cast<blink::PNGImageDecoder*>(png_get_progressive_ptr(png)); |
| -} |
| +PNGImageDecoder::PNGImageDecoder(AlphaOption alphaOption, |
| + ColorSpaceOption colorOptions, |
| + size_t maxDecodedBytes, |
| + size_t offset) |
| + : ImageDecoder(alphaOption, colorOptions, maxDecodedBytes), |
| + m_offset(offset), |
| + m_metaDataDecoded(false), |
| + m_frameCount(0), |
| + m_currentFrame(0), |
| + m_repetitionCount(cAnimationLoopOnce) {} |
| -void PNGAPI pngHeaderAvailable(png_structp png, png_infop) { |
| - imageDecoder(png)->headerAvailable(); |
| -} |
| +PNGImageDecoder::~PNGImageDecoder() {} |
| -void PNGAPI pngRowAvailable(png_structp png, |
| - png_bytep row, |
| - png_uint_32 rowIndex, |
| - int state) { |
| - imageDecoder(png)->rowAvailable(row, rowIndex, state); |
| +size_t PNGImageDecoder::decodeFrameCount() { |
| + if (!m_metaDataDecoded) |
| + parse(PNGParseQuery::PNGMetaDataQuery); |
| + return m_frameCount; |
| } |
| -void PNGAPI pngComplete(png_structp png, png_infop) { |
| - imageDecoder(png)->complete(); |
| +inline bool frameComplete(ImageFrame& frame) { |
| + return frame.getStatus() == ImageFrame::FrameComplete; |
| } |
| -void PNGAPI pngFailed(png_structp png, png_const_charp) { |
| - longjmp(JMPBUF(png), 1); |
| +void PNGImageDecoder::decode(size_t index) { |
| + m_currentFrame = index; |
| + m_reader->decode(*m_data, index); |
| } |
| -} // namespace |
| - |
| -namespace blink { |
| - |
| -class PNGImageReader final { |
| - USING_FAST_MALLOC(PNGImageReader); |
| - WTF_MAKE_NONCOPYABLE(PNGImageReader); |
| - |
| - public: |
| - PNGImageReader(PNGImageDecoder* decoder, size_t readOffset) |
| - : m_decoder(decoder), |
| - m_readOffset(readOffset), |
| - m_currentBufferSize(0), |
| - m_decodingSizeOnly(false), |
| - m_hasAlpha(false) |
| - { |
| - m_png = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, pngFailed, 0); |
| - m_info = png_create_info_struct(m_png); |
| - png_set_progressive_read_fn(m_png, m_decoder, pngHeaderAvailable, |
| - pngRowAvailable, pngComplete); |
| - } |
| - |
| - ~PNGImageReader() { |
| - png_destroy_read_struct(m_png ? &m_png : 0, m_info ? &m_info : 0, 0); |
| - ASSERT(!m_png && !m_info); |
| +void PNGImageDecoder::parse(PNGParseQuery query) { |
| + if (failed()) |
| + return; |
| - m_readOffset = 0; |
| - } |
| + if (!m_reader) |
| + m_reader = wrapUnique(new PNGImageReader(this, m_offset)); |
| - bool decode(const SegmentReader& data, bool sizeOnly) { |
| - m_decodingSizeOnly = sizeOnly; |
| - |
| - // We need to do the setjmp here. Otherwise bad things will happen. |
| - if (setjmp(JMPBUF(m_png))) |
| - return m_decoder->setFailed(); |
| - |
| - const char* segment; |
| - while (size_t segmentLength = data.getSomeData(segment, m_readOffset)) { |
| - m_readOffset += segmentLength; |
| - m_currentBufferSize = m_readOffset; |
| - png_process_data(m_png, m_info, |
| - reinterpret_cast<png_bytep>(const_cast<char*>(segment)), |
| - segmentLength); |
| - if (sizeOnly ? m_decoder->isDecodedSizeAvailable() |
| - : m_decoder->frameIsCompleteAtIndex(0)) |
| - return true; |
| - } |
| + if (!m_reader->parse(*m_data, query) && isAllDataReceived()) |
| + setFailed(); |
| - return false; |
| - } |
| + if (query == PNGParseQuery::PNGMetaDataQuery) |
| + m_frameCount = m_reader->frameCount(); |
| +} |
| - png_structp pngPtr() const { return m_png; } |
| - png_infop infoPtr() const { return m_info; } |
| +void PNGImageDecoder::setRepetitionCount(size_t repetitionCount) { |
| + m_repetitionCount = |
| + (repetitionCount == 0) ? cAnimationLoopInfinite : repetitionCount; |
| +} |
| - size_t getReadOffset() const { return m_readOffset; } |
| - void setReadOffset(size_t offset) { m_readOffset = offset; } |
| - size_t currentBufferSize() const { return m_currentBufferSize; } |
| - bool decodingSizeOnly() const { return m_decodingSizeOnly; } |
| - void setHasAlpha(bool hasAlpha) { m_hasAlpha = hasAlpha; } |
| - bool hasAlpha() const { return m_hasAlpha; } |
| +// This matches the existing behavior to loop once if decoding fails, but this |
| +// should be changed to stick with m_repetitionCount to match other browsers. |
| +// See crbug.com/267883 |
| +int PNGImageDecoder::repetitionCount() const { |
| + if (m_metaDataDecoded && isAllDataReceived() && m_reader->frameCount() == 1) |
| + return cAnimationNone; |
| + return failed() ? cAnimationLoopOnce : m_repetitionCount; |
| +} |
| - png_bytep interlaceBuffer() const { return m_interlaceBuffer.get(); } |
| - void createInterlaceBuffer(int size) { |
| - m_interlaceBuffer = wrapArrayUnique(new png_byte[size]); |
| +// These are mapped according to: |
| +// https://wiki.mozilla.org/APNG_Specification#.60fcTL.60:_The_Frame_Control_Chunk |
| +static inline ImageFrame::DisposalMethod getDisposalMethod( |
| + uint8_t disposalMethod) { |
| + switch (disposalMethod) { |
| + case 0: |
| + return ImageFrame::DisposalMethod::DisposeKeep; |
| + case 1: |
| + return ImageFrame::DisposalMethod::DisposeOverwriteBgcolor; |
| + case 2: |
| + return ImageFrame::DisposalMethod::DisposeOverwritePrevious; |
| + default: |
| + return ImageFrame::DisposalMethod::DisposeNotSpecified; |
| } |
| +} |
| - private: |
| - png_structp m_png; |
| - png_infop m_info; |
| - PNGImageDecoder* m_decoder; |
| - size_t m_readOffset; |
| - size_t m_currentBufferSize; |
| - bool m_decodingSizeOnly; |
| - bool m_hasAlpha; |
| - std::unique_ptr<png_byte[]> m_interlaceBuffer; |
| -}; |
| +// These are mapped according to: |
| +// https://wiki.mozilla.org/APNG_Specification#.60fcTL.60:_The_Frame_Control_Chunk |
| +static inline ImageFrame::AlphaBlendSource getAlphaBlend(uint8_t alphaBlend) { |
| + if (alphaBlend == 1) |
| + return ImageFrame::AlphaBlendSource::BlendAtopPreviousFrame; |
| + return ImageFrame::AlphaBlendSource::BlendAtopBgcolor; |
| +} |
| -PNGImageDecoder::PNGImageDecoder(AlphaOption alphaOption, |
| - ColorSpaceOption colorOptions, |
| - size_t maxDecodedBytes, |
| - size_t offset) |
| - : ImageDecoder(alphaOption, colorOptions, maxDecodedBytes), |
| - m_offset(offset) {} |
| +void PNGImageDecoder::initializeNewFrame(size_t index) { |
| + const PNGImageReader::FrameInfo& frameInfo = m_reader->frameInfo(index); |
| + ImageFrame* buffer = &m_frameBufferCache[index]; |
| -PNGImageDecoder::~PNGImageDecoder() {} |
| + IntRect frameRectWithinSize = |
| + intersection(frameInfo.frameRect, {IntPoint(), size()}); |
| + buffer->setOriginalFrameRect(frameRectWithinSize); |
| + buffer->setDuration(frameInfo.duration); |
| + buffer->setDisposalMethod(getDisposalMethod(frameInfo.disposalMethod)); |
| + buffer->setAlphaBlendSource(getAlphaBlend(frameInfo.alphaBlend)); |
| +} |
| void PNGImageDecoder::headerAvailable() { |
| png_structp png = m_reader->pngPtr(); |
| @@ -170,17 +153,21 @@ void PNGImageDecoder::headerAvailable() { |
| png_uint_32 width = png_get_image_width(png, info); |
| png_uint_32 height = png_get_image_height(png, info); |
| - // Protect against large PNGs. See http://bugzil.la/251381 for more details. |
| - const unsigned long maxPNGSize = 1000000UL; |
| - if (width > maxPNGSize || height > maxPNGSize) { |
| - longjmp(JMPBUF(png), 1); |
| - return; |
| - } |
| + // Only set the size of the image once. Since single frames also use this |
| + // method, we don't want them to override the size to their frame rect. |
| + if (!isDecodedSizeAvailable()) { |
| + // Protect against large PNGs. See http://bugzil.la/251381 for more details. |
| + const unsigned long maxPNGSize = 1000000UL; |
| + if (width > maxPNGSize || height > maxPNGSize) { |
| + longjmp(JMPBUF(png), 1); |
| + return; |
| + } |
| - // Set the image size now that the image header is available. |
| - if (!setSize(width, height)) { |
| - longjmp(JMPBUF(png), 1); |
| - return; |
| + // Set the image size now that the image header is available. |
| + if (!setSize(width, height)) { |
| + longjmp(JMPBUF(png), 1); |
| + return; |
| + } |
| } |
| int bitDepth, colorType, interlaceType, compressionType, filterType, channels; |
| @@ -209,12 +196,12 @@ void PNGImageDecoder::headerAvailable() { |
| png_set_gray_to_rgb(png); |
| if ((colorType & PNG_COLOR_MASK_COLOR) && !m_ignoreColorSpace) { |
| - // We only support color profiles for color PALETTE and RGB[A] PNG. |
| - // Supporting color profiles for gray-scale images is slightly tricky, at |
| - // least using the CoreGraphics ICC library, because we expand gray-scale |
| - // images to RGB but we do not similarly transform the color profile. We'd |
| - // either need to transform the color profile or we'd need to decode into a |
| - // gray-scale image buffer and hand that to CoreGraphics. |
| +// We only support color profiles for color PALETTE and RGB[A] PNG. |
| +// Supporting color profiles for gray-scale images is slightly tricky, at |
| +// least using the CoreGraphics ICC library, because we expand gray-scale |
| +// images to RGB but we do not similarly transform the color profile. We'd |
| +// either need to transform the color profile or we'd need to decode into a |
| +// gray-scale image buffer and hand that to CoreGraphics. |
| #ifdef PNG_iCCP_SUPPORTED |
| if (png_get_valid(png, info, PNG_INFO_sRGB)) { |
| setColorSpaceAndComputeTransform( |
| @@ -272,19 +259,6 @@ void PNGImageDecoder::headerAvailable() { |
| ASSERT(channels == 3 || channels == 4); |
| m_reader->setHasAlpha(channels == 4); |
| - |
| - if (m_reader->decodingSizeOnly()) { |
| -// If we only needed the size, halt the reader. |
| -#if PNG_LIBPNG_VER_MAJOR > 1 || \ |
| - (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 5) |
| - // Passing '0' tells png_process_data_pause() not to cache unprocessed data. |
| - m_reader->setReadOffset(m_reader->currentBufferSize() - |
| - png_process_data_pause(png, 0)); |
| -#else |
| - m_reader->setReadOffset(m_reader->currentBufferSize() - png->buffer_size); |
| - png->buffer_size = 0; |
| -#endif |
| - } |
| } |
| void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, |
| @@ -294,7 +268,7 @@ void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, |
| return; |
| // Initialize the framebuffer if needed. |
| - ImageFrame& buffer = m_frameBufferCache[0]; |
| + ImageFrame& buffer = m_frameBufferCache[m_currentFrame]; |
| if (buffer.getStatus() == ImageFrame::FrameEmpty) { |
| png_structp png = m_reader->pngPtr(); |
| if (!buffer.setSizeAndColorSpace(size().width(), size().height(), |
| @@ -316,50 +290,52 @@ void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, |
| buffer.setStatus(ImageFrame::FramePartial); |
| buffer.setHasAlpha(false); |
| - |
| - // For PNGs, the frame always fills the entire image. |
| - buffer.setOriginalFrameRect(IntRect(IntPoint(), size())); |
| } |
| + // This frameRect is already clipped, so that it fits within the size of the |
| + // image. This is done in initializeNewFrame() after a frameCount() call. |
| + const IntRect& frameRect = buffer.originalFrameRect(); |
| + |
| /* libpng comments (here to explain what follows). |
| - * |
| - * this function is called for every row in the image. If the |
| - * image is interlacing, and you turned on the interlace handler, |
| - * this function will be called for every row in every pass. |
| - * Some of these rows will not be changed from the previous pass. |
| - * When the row is not changed, the new_row variable will be NULL. |
| - * The rows and passes are called in order, so you don't really |
| - * need the row_num and pass, but I'm supplying them because it |
| - * may make your life easier. |
| - */ |
| + * |
| + * this function is called for every row in the image. If the |
| + * image is interlacing, and you turned on the interlace handler, |
| + * this function will be called for every row in every pass. |
| + * Some of these rows will not be changed from the previous pass. |
| + * When the row is not changed, the new_row variable will be NULL. |
| + * The rows and passes are called in order, so you don't really |
| + * need the row_num and pass, but I'm supplying them because it |
| + * may make your life easier. |
| + */ |
| // Nothing to do if the row is unchanged, or the row is outside |
| // the image bounds: libpng may send extra rows, ignore them to |
| // make our lives easier. |
| if (!rowBuffer) |
| return; |
| - int y = rowIndex; |
| - if (y < 0 || y >= size().height()) |
| + int y = rowIndex + frameRect.y(); |
| + ASSERT(y >= 0); |
| + if (y >= size().height()) |
| return; |
| /* libpng comments (continued). |
| - * |
| - * For the non-NULL rows of interlaced images, you must call |
| - * png_progressive_combine_row() passing in the row and the |
| - * old row. You can call this function for NULL rows (it will |
| - * just return) and for non-interlaced images (it just does the |
| - * memcpy for you) if it will make the code easier. Thus, you |
| - * can just do this for all cases: |
| - * |
| - * png_progressive_combine_row(png_ptr, old_row, new_row); |
| - * |
| - * where old_row is what was displayed for previous rows. Note |
| - * that the first pass (pass == 0 really) will completely cover |
| - * the old row, so the rows do not have to be initialized. After |
| - * the first pass (and only for interlaced images), you will have |
| - * to pass the current row, and the function will combine the |
| - * old row and the new row. |
| - */ |
| + * |
| + * For the non-NULL rows of interlaced images, you must call |
| + * png_progressive_combine_row() passing in the row and the |
| + * old row. You can call this function for NULL rows (it will |
| + * just return) and for non-interlaced images (it just does the |
| + * memcpy for you) if it will make the code easier. Thus, you |
| + * can just do this for all cases: |
| + * |
| + * png_progressive_combine_row(png_ptr, old_row, new_row); |
| + * |
| + * where old_row is what was displayed for previous rows. Note |
| + * that the first pass (pass == 0 really) will completely cover |
| + * the old row, so the rows do not have to be initialized. After |
| + * the first pass (and only for interlaced images), you will have |
| + * to pass the current row, and the function will combine the |
| + * old row and the new row. |
| + */ |
| bool hasAlpha = m_reader->hasAlpha(); |
| png_bytep row = rowBuffer; |
| @@ -372,9 +348,9 @@ void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, |
| // Write the decoded row pixels to the frame buffer. The repetitive |
| // form of the row write loops is for speed. |
| - ImageFrame::PixelData* const dstRow = buffer.getAddr(0, y); |
| + ImageFrame::PixelData* const dstRow = buffer.getAddr(frameRect.x(), y); |
| unsigned alphaMask = 255; |
| - int width = size().width(); |
| + int width = frameRect.width(); |
| png_bytep srcPtr = row; |
| if (hasAlpha) { |
| @@ -431,32 +407,29 @@ void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, |
| buffer.setPixelsChanged(true); |
| } |
| -void PNGImageDecoder::complete() { |
| - if (m_frameBufferCache.isEmpty()) |
| - return; |
| - |
| - m_frameBufferCache[0].setStatus(ImageFrame::FrameComplete); |
| +bool PNGImageDecoder::frameIsCompleteAtIndex(size_t index) const { |
| + // @TODO(joostouwerling): show complete frames even if a later frame fails. |
| + if (failed()) |
| + return false; |
| + if (index >= m_frameBufferCache.size()) |
| + return false; |
| + if (index == 0) |
| + return ImageDecoder::frameIsCompleteAtIndex(index); |
| + return true; |
| } |
| -inline bool isComplete(const PNGImageDecoder* decoder) { |
| - return decoder->frameIsCompleteAtIndex(0); |
| +float PNGImageDecoder::frameDurationAtIndex(size_t index) const { |
| + return (index < m_frameBufferCache.size() |
| + ? m_frameBufferCache[index].duration() |
| + : 0); |
| } |
| -void PNGImageDecoder::decode(bool onlySize) { |
| - if (failed()) |
| +// @TODO(joostouwerling) if necessary, do a check if all expected data has been |
|
scroggo_chromium
2016/10/31 19:34:06
Could you add some context? This is because we art
joostouwerling
2016/11/02 18:21:53
Done.
|
| +// received. |
| +void PNGImageDecoder::complete() { |
| + if (m_frameBufferCache.isEmpty()) |
| return; |
| - |
| - if (!m_reader) |
| - m_reader = wrapUnique(new PNGImageReader(this, m_offset)); |
| - |
| - // If we couldn't decode the image but have received all the data, decoding |
| - // has failed. |
| - if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived()) |
| - setFailed(); |
| - |
| - // If decoding is done or failed, we don't need the PNGImageReader anymore. |
| - if (isComplete(this) || failed()) |
| - m_reader.reset(); |
| + m_frameBufferCache[m_currentFrame].setStatus(ImageFrame::FrameComplete); |
| } |
| } // namespace blink |