2001-01-23 01:01:03 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
#include "ImageLogging.h" // Must appear first
|
2016-06-30 20:27:03 +03:00
|
|
|
#include "nsPNGDecoder.h"
|
2016-06-27 23:38:34 +03:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cstdint>
|
|
|
|
|
2007-02-01 00:09:20 +03:00
|
|
|
#include "gfxColor.h"
|
2014-09-25 01:38:00 +04:00
|
|
|
#include "gfxPlatform.h"
|
2016-03-10 02:39:02 +03:00
|
|
|
#include "imgFrame.h"
|
2002-04-13 14:03:59 +04:00
|
|
|
#include "nsColor.h"
|
2014-09-25 01:38:00 +04:00
|
|
|
#include "nsIInputStream.h"
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include "nsRect.h"
|
2001-10-12 10:43:52 +04:00
|
|
|
#include "nspr.h"
|
|
|
|
#include "png.h"
|
2014-09-25 01:38:00 +04:00
|
|
|
#include "RasterImage.h"
|
2016-06-25 01:20:32 +03:00
|
|
|
#include "SurfacePipeFactory.h"
|
|
|
|
#include "mozilla/DebugOnly.h"
|
2015-02-03 18:05:49 +03:00
|
|
|
#include "mozilla/Telemetry.h"
|
2001-10-12 10:43:52 +04:00
|
|
|
|
2015-08-12 20:41:02 +03:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
namespace mozilla {
|
2012-01-06 20:02:27 +04:00
|
|
|
namespace image {
|
2010-08-14 08:09:49 +04:00
|
|
|
|
2015-10-28 23:08:06 +03:00
|
|
|
static LazyLogModule sPNGLog("PNGDecoder");
|
|
|
|
static LazyLogModule sPNGDecoderAccountingLog("PNGDecoderAccounting");
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// Limit image dimensions (bug #251381, #591822, and #967656)
|
2014-04-01 17:14:14 +04:00
|
|
|
#ifndef MOZ_PNG_MAX_DIMENSION
|
|
|
|
# define MOZ_PNG_MAX_DIMENSION 32767
|
|
|
|
#endif
|
|
|
|
|
2013-04-22 18:57:17 +04:00
|
|
|
nsPNGDecoder::AnimFrameInfo::AnimFrameInfo()
|
2015-01-08 00:07:23 +03:00
|
|
|
: mDispose(DisposalMethod::KEEP)
|
|
|
|
, mBlend(BlendMethod::OVER)
|
2013-04-22 18:57:17 +04:00
|
|
|
, mTimeout(0)
|
2014-11-14 20:59:00 +03:00
|
|
|
{ }
|
2012-12-20 00:11:42 +04:00
|
|
|
|
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
2015-08-14 10:37:13 +03:00
|
|
|
|
|
|
|
int32_t GetNextFrameDelay(png_structp aPNG, png_infop aInfo)
|
|
|
|
{
|
|
|
|
// Delay, in seconds, is delayNum / delayDen.
|
|
|
|
png_uint_16 delayNum = png_get_next_frame_delay_num(aPNG, aInfo);
|
|
|
|
png_uint_16 delayDen = png_get_next_frame_delay_den(aPNG, aInfo);
|
|
|
|
|
|
|
|
if (delayNum == 0) {
|
|
|
|
return 0; // SetFrameTimeout() will set to a minimum.
|
|
|
|
}
|
|
|
|
|
|
|
|
if (delayDen == 0) {
|
|
|
|
delayDen = 100; // So says the APNG spec.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Need to cast delay_num to float to have a proper division and
|
|
|
|
// the result to int to avoid a compiler warning.
|
|
|
|
return static_cast<int32_t>(static_cast<double>(delayNum) * 1000 / delayDen);
|
|
|
|
}
|
|
|
|
|
2013-04-22 18:57:17 +04:00
|
|
|
nsPNGDecoder::AnimFrameInfo::AnimFrameInfo(png_structp aPNG, png_infop aInfo)
|
2015-01-08 00:07:23 +03:00
|
|
|
: mDispose(DisposalMethod::KEEP)
|
|
|
|
, mBlend(BlendMethod::OVER)
|
2013-04-22 18:57:17 +04:00
|
|
|
, mTimeout(0)
|
|
|
|
{
|
2015-08-14 10:37:13 +03:00
|
|
|
png_byte dispose_op = png_get_next_frame_dispose_op(aPNG, aInfo);
|
|
|
|
png_byte blend_op = png_get_next_frame_blend_op(aPNG, aInfo);
|
2012-12-20 00:11:42 +04:00
|
|
|
|
2013-04-22 18:57:17 +04:00
|
|
|
if (dispose_op == PNG_DISPOSE_OP_PREVIOUS) {
|
2015-01-08 00:07:23 +03:00
|
|
|
mDispose = DisposalMethod::RESTORE_PREVIOUS;
|
2013-04-22 18:57:17 +04:00
|
|
|
} else if (dispose_op == PNG_DISPOSE_OP_BACKGROUND) {
|
2015-01-08 00:07:23 +03:00
|
|
|
mDispose = DisposalMethod::CLEAR;
|
2013-04-22 18:57:17 +04:00
|
|
|
} else {
|
2015-01-08 00:07:23 +03:00
|
|
|
mDispose = DisposalMethod::KEEP;
|
2013-04-22 18:57:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (blend_op == PNG_BLEND_OP_SOURCE) {
|
2015-01-08 00:07:23 +03:00
|
|
|
mBlend = BlendMethod::SOURCE;
|
2013-04-22 18:57:17 +04:00
|
|
|
} else {
|
2015-01-08 00:07:23 +03:00
|
|
|
mBlend = BlendMethod::OVER;
|
2013-04-22 18:57:17 +04:00
|
|
|
}
|
2015-08-14 10:37:13 +03:00
|
|
|
|
|
|
|
mTimeout = GetNextFrameDelay(aPNG, aInfo);
|
2013-04-22 18:57:17 +04:00
|
|
|
}
|
|
|
|
#endif
|
2012-12-20 00:11:42 +04:00
|
|
|
|
2011-08-26 00:09:01 +04:00
|
|
|
// First 8 bytes of a PNG file
|
2013-05-04 13:39:47 +04:00
|
|
|
const uint8_t
|
2011-08-26 00:09:01 +04:00
|
|
|
nsPNGDecoder::pngSignatureBytes[] = { 137, 80, 78, 71, 13, 10, 26, 10 };
|
2009-09-13 02:44:18 +04:00
|
|
|
|
2015-01-16 02:11:35 +03:00
|
|
|
nsPNGDecoder::nsPNGDecoder(RasterImage* aImage)
|
2016-06-25 01:20:32 +03:00
|
|
|
: Decoder(aImage)
|
2016-06-27 23:38:34 +03:00
|
|
|
, mLexer(Transition::ToUnbuffered(State::FINISHED_PNG_DATA,
|
|
|
|
State::PNG_DATA,
|
|
|
|
SIZE_MAX))
|
2016-06-25 01:20:32 +03:00
|
|
|
, mPNG(nullptr)
|
|
|
|
, mInfo(nullptr)
|
|
|
|
, mCMSLine(nullptr)
|
|
|
|
, interlacebuf(nullptr)
|
|
|
|
, mInProfile(nullptr)
|
|
|
|
, mTransform(nullptr)
|
|
|
|
, format(gfx::SurfaceFormat::UNKNOWN)
|
|
|
|
, mCMSMode(0)
|
|
|
|
, mChannels(0)
|
|
|
|
, mPass(0)
|
|
|
|
, mFrameIsHidden(false)
|
|
|
|
, mDisablePremultipliedAlpha(false)
|
|
|
|
, mNumFrames(0)
|
|
|
|
{ }
|
2001-01-23 01:01:03 +03:00
|
|
|
|
|
|
|
nsPNGDecoder::~nsPNGDecoder()
|
|
|
|
{
|
2014-11-14 20:59:00 +03:00
|
|
|
if (mPNG) {
|
2013-08-23 23:51:00 +04:00
|
|
|
png_destroy_read_struct(&mPNG, mInfo ? &mInfo : nullptr, nullptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
|
|
|
if (mCMSLine) {
|
2015-03-27 03:01:12 +03:00
|
|
|
free(mCMSLine);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
|
|
|
if (interlacebuf) {
|
2015-03-27 03:01:12 +03:00
|
|
|
free(interlacebuf);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
if (mInProfile) {
|
2009-04-07 20:02:11 +04:00
|
|
|
qcms_profile_release(mInProfile);
|
2007-07-24 02:02:17 +04:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// mTransform belongs to us only if mInProfile is non-null
|
2014-11-14 20:59:00 +03:00
|
|
|
if (mTransform) {
|
2009-04-07 20:02:11 +04:00
|
|
|
qcms_transform_release(mTransform);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
}
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
nsPNGDecoder::TransparencyType
|
|
|
|
nsPNGDecoder::GetTransparencyType(SurfaceFormat aFormat,
|
|
|
|
const IntRect& aFrameRect)
|
2015-08-12 20:41:02 +03:00
|
|
|
{
|
|
|
|
// Check if the image has a transparent color in its palette.
|
|
|
|
if (aFormat == SurfaceFormat::B8G8R8A8) {
|
2016-06-25 01:20:32 +03:00
|
|
|
return TransparencyType::eAlpha;
|
2015-08-12 20:41:02 +03:00
|
|
|
}
|
2016-06-25 01:20:32 +03:00
|
|
|
if (!IntRect(IntPoint(), GetSize()).IsEqualEdges(aFrameRect)) {
|
2016-02-23 22:22:00 +03:00
|
|
|
MOZ_ASSERT(HasAnimation());
|
2016-06-25 01:20:32 +03:00
|
|
|
return TransparencyType::eFrameRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TransparencyType::eNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsPNGDecoder::PostHasTransparencyIfNeeded(TransparencyType aTransparencyType)
|
|
|
|
{
|
|
|
|
switch (aTransparencyType) {
|
|
|
|
case TransparencyType::eNone:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case TransparencyType::eAlpha:
|
|
|
|
PostHasTransparency();
|
|
|
|
return;
|
|
|
|
|
|
|
|
case TransparencyType::eFrameRect:
|
|
|
|
// If the first frame of animated image doesn't draw into the whole image,
|
|
|
|
// then record that it is transparent. For subsequent frames, this doesn't
|
|
|
|
// affect transparency, because they're composited on top of all previous
|
|
|
|
// frames.
|
|
|
|
if (mNumFrames == 0) {
|
|
|
|
PostHasTransparency();
|
|
|
|
}
|
|
|
|
return;
|
2016-02-23 22:22:00 +03:00
|
|
|
}
|
2015-08-12 20:41:02 +03:00
|
|
|
}
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
// CreateFrame() is used for both simple and animated images.
|
2015-07-11 05:26:15 +03:00
|
|
|
nsresult
|
2016-06-25 01:20:32 +03:00
|
|
|
nsPNGDecoder::CreateFrame(SurfaceFormat aFormat,
|
|
|
|
const IntRect& aFrameRect,
|
|
|
|
bool aIsInterlaced)
|
2007-03-21 02:56:50 +03:00
|
|
|
{
|
2014-11-17 22:16:45 +03:00
|
|
|
MOZ_ASSERT(HasSize());
|
2015-08-11 01:34:27 +03:00
|
|
|
MOZ_ASSERT(!IsMetadataDecode());
|
2014-11-17 22:16:45 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
// Check if we have transparency, and send notifications if needed.
|
|
|
|
auto transparency = GetTransparencyType(aFormat, aFrameRect);
|
|
|
|
PostHasTransparencyIfNeeded(transparency);
|
|
|
|
SurfaceFormat format = transparency == TransparencyType::eNone
|
|
|
|
? SurfaceFormat::B8G8R8X8
|
|
|
|
: SurfaceFormat::B8G8R8A8;
|
2015-07-11 05:26:15 +03:00
|
|
|
|
2015-09-02 00:13:17 +03:00
|
|
|
// Make sure there's no animation or padding if we're downscaling.
|
2016-06-25 01:20:32 +03:00
|
|
|
MOZ_ASSERT_IF(mDownscaler, mNumFrames == 0);
|
2015-09-02 00:13:17 +03:00
|
|
|
MOZ_ASSERT_IF(mDownscaler, !GetImageMetadata().HasAnimation());
|
2016-06-25 01:20:32 +03:00
|
|
|
MOZ_ASSERT_IF(mDownscaler, transparency != TransparencyType::eFrameRect);
|
2015-09-02 00:13:17 +03:00
|
|
|
|
|
|
|
IntSize targetSize = mDownscaler ? mDownscaler->TargetSize()
|
|
|
|
: GetSize();
|
2016-06-25 01:20:32 +03:00
|
|
|
|
|
|
|
// If this image is interlaced, we can display better quality intermediate
|
|
|
|
// results to the user by post processing them with ADAM7InterpolatingFilter.
|
|
|
|
SurfacePipeFlags pipeFlags = aIsInterlaced
|
|
|
|
? SurfacePipeFlags::ADAM7_INTERPOLATE
|
|
|
|
: SurfacePipeFlags();
|
|
|
|
|
|
|
|
if (mNumFrames == 0) {
|
|
|
|
// The first frame may be displayed progressively.
|
|
|
|
pipeFlags |= SurfacePipeFlags::PROGRESSIVE_DISPLAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
Maybe<SurfacePipe> pipe =
|
|
|
|
SurfacePipeFactory::CreateSurfacePipe(this, mNumFrames, GetSize(), targetSize,
|
|
|
|
aFrameRect, format, pipeFlags);
|
|
|
|
|
|
|
|
if (!pipe) {
|
|
|
|
mPipe = SurfacePipe();
|
|
|
|
return NS_ERROR_FAILURE;
|
2013-05-08 06:25:03 +04:00
|
|
|
}
|
2007-03-21 02:56:50 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
mPipe = Move(*pipe);
|
|
|
|
|
|
|
|
mFrameRect = aFrameRect;
|
|
|
|
mPass = 0;
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 05:50:15 +04:00
|
|
|
|
2015-10-28 23:08:06 +03:00
|
|
|
MOZ_LOG(sPNGDecoderAccountingLog, LogLevel::Debug,
|
2010-01-06 00:46:26 +03:00
|
|
|
("PNGDecoderAccounting: nsPNGDecoder::CreateFrame -- created "
|
2015-07-31 17:29:03 +03:00
|
|
|
"image frame with %dx%d pixels for decoder %p",
|
2016-06-25 01:20:32 +03:00
|
|
|
aFrameRect.width, aFrameRect.height, this));
|
2007-10-19 04:36:34 +04:00
|
|
|
|
2013-04-22 18:57:17 +04:00
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
|
|
|
if (png_get_valid(mPNG, mInfo, PNG_INFO_acTL)) {
|
|
|
|
mAnimInfo = AnimFrameInfo(mPNG, mInfo);
|
2014-11-25 10:42:43 +03:00
|
|
|
|
2015-01-08 00:07:23 +03:00
|
|
|
if (mAnimInfo.mDispose == DisposalMethod::CLEAR) {
|
2014-11-25 10:42:43 +03:00
|
|
|
// We may have to display the background under this image during
|
|
|
|
// animation playback, so we regard it as transparent.
|
|
|
|
PostHasTransparency();
|
|
|
|
}
|
2013-04-22 18:57:17 +04:00
|
|
|
}
|
|
|
|
#endif
|
2015-07-11 05:26:15 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-21 02:56:50 +03:00
|
|
|
}
|
|
|
|
|
2008-02-13 13:53:17 +03:00
|
|
|
// set timeout and frame disposal method for the current frame
|
2014-11-14 20:59:00 +03:00
|
|
|
void
|
|
|
|
nsPNGDecoder::EndImageFrame()
|
2008-02-13 13:53:17 +03:00
|
|
|
{
|
2014-11-14 20:59:00 +03:00
|
|
|
if (mFrameIsHidden) {
|
2010-09-12 19:22:30 +04:00
|
|
|
return;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2013-02-27 23:23:08 +04:00
|
|
|
mNumFrames++;
|
|
|
|
|
2015-01-08 11:04:31 +03:00
|
|
|
Opacity opacity = Opacity::SOME_TRANSPARENCY;
|
2015-02-10 08:26:14 +03:00
|
|
|
if (format == gfx::SurfaceFormat::B8G8R8X8) {
|
2016-03-10 02:39:02 +03:00
|
|
|
opacity = Opacity::FULLY_OPAQUE;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2012-12-20 00:11:42 +04:00
|
|
|
|
2015-01-08 00:07:23 +03:00
|
|
|
PostFrameStop(opacity, mAnimInfo.mDispose, mAnimInfo.mTimeout,
|
2016-06-25 01:20:32 +03:00
|
|
|
mAnimInfo.mBlend, Some(mFrameRect));
|
2008-02-13 13:53:17 +03:00
|
|
|
}
|
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::InitInternal()
|
2010-08-22 18:13:09 +04:00
|
|
|
{
|
2013-09-07 07:08:36 +04:00
|
|
|
mCMSMode = gfxPlatform::GetCMSMode();
|
2015-08-15 03:56:44 +03:00
|
|
|
if (GetSurfaceFlags() & SurfaceFlags::NO_COLORSPACE_CONVERSION) {
|
2011-01-13 04:45:13 +03:00
|
|
|
mCMSMode = eCMSMode_Off;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2015-02-03 08:40:35 +03:00
|
|
|
mDisablePremultipliedAlpha =
|
2015-08-15 03:56:44 +03:00
|
|
|
bool(GetSurfaceFlags() & SurfaceFlags::NO_PREMULTIPLY_ALPHA);
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2010-03-09 21:22:44 +03:00
|
|
|
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
2007-11-07 07:29:37 +03:00
|
|
|
static png_byte color_chunks[]=
|
2014-09-25 01:38:00 +04:00
|
|
|
{ 99, 72, 82, 77, '\0', // cHRM
|
|
|
|
105, 67, 67, 80, '\0'}; // iCCP
|
2004-08-04 18:02:34 +04:00
|
|
|
static png_byte unused_chunks[]=
|
2014-09-25 01:38:00 +04:00
|
|
|
{ 98, 75, 71, 68, '\0', // bKGD
|
|
|
|
104, 73, 83, 84, '\0', // hIST
|
|
|
|
105, 84, 88, 116, '\0', // iTXt
|
|
|
|
111, 70, 70, 115, '\0', // oFFs
|
|
|
|
112, 67, 65, 76, '\0', // pCAL
|
|
|
|
115, 67, 65, 76, '\0', // sCAL
|
|
|
|
112, 72, 89, 115, '\0', // pHYs
|
|
|
|
115, 66, 73, 84, '\0', // sBIT
|
|
|
|
115, 80, 76, 84, '\0', // sPLT
|
|
|
|
116, 69, 88, 116, '\0', // tEXt
|
|
|
|
116, 73, 77, 69, '\0', // tIME
|
|
|
|
122, 84, 88, 116, '\0'}; // zTXt
|
2004-08-04 18:02:34 +04:00
|
|
|
#endif
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// Initialize the container's source image header
|
|
|
|
// Always decode to 24 bit pixdepth
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2010-03-12 17:15:00 +03:00
|
|
|
mPNG = png_create_read_struct(PNG_LIBPNG_VER_STRING,
|
2013-08-23 23:51:00 +04:00
|
|
|
nullptr, nsPNGDecoder::error_callback,
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::warning_callback);
|
2010-09-12 19:22:27 +04:00
|
|
|
if (!mPNG) {
|
|
|
|
PostDecoderError(NS_ERROR_OUT_OF_MEMORY);
|
2010-09-12 19:22:30 +04:00
|
|
|
return;
|
2010-09-12 19:22:27 +04:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
|
|
|
mInfo = png_create_info_struct(mPNG);
|
|
|
|
if (!mInfo) {
|
2010-09-12 19:22:27 +04:00
|
|
|
PostDecoderError(NS_ERROR_OUT_OF_MEMORY);
|
2013-08-23 23:51:00 +04:00
|
|
|
png_destroy_read_struct(&mPNG, nullptr, nullptr);
|
2010-09-12 19:22:30 +04:00
|
|
|
return;
|
2001-01-23 01:01:03 +03:00
|
|
|
}
|
|
|
|
|
2010-03-09 21:22:44 +03:00
|
|
|
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
2014-09-25 01:38:00 +04:00
|
|
|
// Ignore unused chunks
|
2015-08-12 20:41:02 +03:00
|
|
|
if (mCMSMode == eCMSMode_Off || IsMetadataDecode()) {
|
2007-11-07 07:29:37 +03:00
|
|
|
png_set_keep_unknown_chunks(mPNG, 1, color_chunks, 2);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2010-01-06 00:46:26 +03:00
|
|
|
|
2006-09-27 01:15:04 +04:00
|
|
|
png_set_keep_unknown_chunks(mPNG, 1, unused_chunks,
|
2013-05-04 13:39:47 +04:00
|
|
|
(int)sizeof(unused_chunks)/5);
|
2010-03-09 21:22:44 +03:00
|
|
|
#endif
|
|
|
|
|
2015-03-28 13:07:00 +03:00
|
|
|
#ifdef PNG_SET_USER_LIMITS_SUPPORTED
|
2014-11-14 20:59:00 +03:00
|
|
|
if (mCMSMode != eCMSMode_Off) {
|
2010-03-12 17:15:00 +03:00
|
|
|
png_set_chunk_malloc_max(mPNG, 4000000L);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2004-08-04 18:02:34 +04:00
|
|
|
#endif
|
|
|
|
|
2012-07-24 04:02:20 +04:00
|
|
|
#ifdef PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
2014-09-25 01:38:00 +04:00
|
|
|
// Disallow palette-index checking, for speed; we would ignore the warning
|
2015-05-11 23:42:30 +03:00
|
|
|
// anyhow. This feature was added at libpng version 1.5.10 and is disabled
|
|
|
|
// in the embedded libpng but enabled by default in the system libpng. This
|
|
|
|
// call also disables it in the system libpng, for decoding speed.
|
|
|
|
// Bug #745202.
|
2014-08-22 15:11:00 +04:00
|
|
|
png_set_check_for_invalid_index(mPNG, 0);
|
2012-07-24 04:02:20 +04:00
|
|
|
#endif
|
|
|
|
|
2014-08-22 15:11:00 +04:00
|
|
|
#if defined(PNG_SET_OPTION_SUPPORTED) && defined(PNG_sRGB_PROFILE_CHECKS) && \
|
|
|
|
PNG_sRGB_PROFILE_CHECKS >= 0
|
2014-09-25 01:38:00 +04:00
|
|
|
// Skip checking of sRGB ICC profiles
|
2014-08-22 15:11:00 +04:00
|
|
|
png_set_option(mPNG, PNG_SKIP_sRGB_CHECK_PROFILE, PNG_OPTION_ON);
|
|
|
|
#endif
|
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// use this as libpng "progressive pointer" (retrieve in callbacks)
|
2007-07-08 11:08:04 +04:00
|
|
|
png_set_progressive_read_fn(mPNG, static_cast<png_voidp>(this),
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::info_callback,
|
|
|
|
nsPNGDecoder::row_callback,
|
|
|
|
nsPNGDecoder::end_callback);
|
2001-01-23 01:01:03 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
void
|
2015-01-08 11:04:31 +03:00
|
|
|
nsPNGDecoder::WriteInternal(const char* aBuffer, uint32_t aCount)
|
2001-01-23 01:01:03 +03:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!HasError(), "Shouldn't call WriteInternal after error!");
|
2016-06-27 23:38:34 +03:00
|
|
|
MOZ_ASSERT(aBuffer);
|
|
|
|
MOZ_ASSERT(aCount > 0);
|
|
|
|
|
|
|
|
Maybe<TerminalState> terminalState =
|
|
|
|
mLexer.Lex(aBuffer, aCount, [=](State aState,
|
|
|
|
const char* aData, size_t aLength) {
|
|
|
|
switch (aState) {
|
|
|
|
case State::PNG_DATA:
|
|
|
|
return ReadPNGData(aData, aLength);
|
|
|
|
case State::FINISHED_PNG_DATA:
|
|
|
|
return FinishedPNGData();
|
|
|
|
}
|
|
|
|
MOZ_CRASH("Unknown State");
|
|
|
|
});
|
2009-09-13 02:44:18 +04:00
|
|
|
|
2016-06-27 23:38:34 +03:00
|
|
|
if (terminalState == Some(TerminalState::FAILURE)) {
|
|
|
|
PostDataError();
|
|
|
|
}
|
|
|
|
}
|
2009-09-13 02:44:18 +04:00
|
|
|
|
2016-06-27 23:38:34 +03:00
|
|
|
LexerTransition<nsPNGDecoder::State>
|
|
|
|
nsPNGDecoder::ReadPNGData(const char* aData, size_t aLength)
|
|
|
|
{
|
|
|
|
// libpng uses setjmp/longjmp for error handling.
|
|
|
|
if (setjmp(png_jmpbuf(mPNG))) {
|
|
|
|
return Transition::TerminateFailure();
|
2008-11-07 00:31:20 +03:00
|
|
|
}
|
2015-08-11 01:34:27 +03:00
|
|
|
|
|
|
|
// Pass the data off to libpng.
|
|
|
|
png_process_data(mPNG, mInfo,
|
2016-06-27 23:38:34 +03:00
|
|
|
reinterpret_cast<unsigned char*>(const_cast<char*>((aData))),
|
|
|
|
aLength);
|
|
|
|
|
|
|
|
if (HasError()) {
|
|
|
|
return Transition::TerminateFailure();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GetDecodeDone()) {
|
|
|
|
return Transition::TerminateSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep reading data.
|
|
|
|
return Transition::ContinueUnbuffered(State::PNG_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
LexerTransition<nsPNGDecoder::State>
|
|
|
|
nsPNGDecoder::FinishedPNGData()
|
|
|
|
{
|
|
|
|
// Since we set up an unbuffered read for SIZE_MAX bytes, if we actually read
|
|
|
|
// all that data something is really wrong.
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Read the entire address space?");
|
|
|
|
return Transition::TerminateFailure();
|
2009-09-13 02:44:18 +04:00
|
|
|
}
|
2002-03-12 10:15:21 +03:00
|
|
|
|
2009-12-04 05:41:00 +03:00
|
|
|
// Sets up gamma pre-correction in libpng before our callback gets called.
|
2008-08-31 02:54:58 +04:00
|
|
|
// We need to do this if we don't end up with a CMS profile.
|
|
|
|
static void
|
|
|
|
PNGDoGammaCorrection(png_structp png_ptr, png_infop info_ptr)
|
|
|
|
{
|
|
|
|
double aGamma;
|
|
|
|
|
|
|
|
if (png_get_gAMA(png_ptr, info_ptr, &aGamma)) {
|
|
|
|
if ((aGamma <= 0.0) || (aGamma > 21474.83)) {
|
|
|
|
aGamma = 0.45455;
|
|
|
|
png_set_gAMA(png_ptr, info_ptr, aGamma);
|
|
|
|
}
|
|
|
|
png_set_gamma(png_ptr, 2.2, aGamma);
|
2014-11-14 20:59:00 +03:00
|
|
|
} else {
|
2008-08-31 02:54:58 +04:00
|
|
|
png_set_gamma(png_ptr, 2.2, 0.45455);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2008-08-31 02:54:58 +04:00
|
|
|
}
|
|
|
|
|
2007-07-24 02:02:17 +04:00
|
|
|
// Adapted from http://www.littlecms.com/pngchrm.c example code
|
2014-11-14 20:59:00 +03:00
|
|
|
static qcms_profile*
|
2007-07-24 02:02:17 +04:00
|
|
|
PNGGetColorProfile(png_structp png_ptr, png_infop info_ptr,
|
2014-11-14 20:59:00 +03:00
|
|
|
int color_type, qcms_data_type* inType, uint32_t* intent)
|
2007-07-24 02:02:17 +04:00
|
|
|
{
|
2014-11-14 20:59:00 +03:00
|
|
|
qcms_profile* profile = nullptr;
|
2009-04-07 20:02:11 +04:00
|
|
|
*intent = QCMS_INTENT_PERCEPTUAL; // Our default
|
2007-07-24 02:02:17 +04:00
|
|
|
|
|
|
|
// First try to see if iCCP chunk is present
|
|
|
|
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_iCCP)) {
|
|
|
|
png_uint_32 profileLen;
|
2011-03-29 04:14:00 +04:00
|
|
|
png_bytep profileData;
|
|
|
|
png_charp profileName;
|
2007-07-24 02:02:17 +04:00
|
|
|
int compression;
|
|
|
|
|
|
|
|
png_get_iCCP(png_ptr, info_ptr, &profileName, &compression,
|
|
|
|
&profileData, &profileLen);
|
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
profile = qcms_profile_from_memory((char*)profileData, profileLen);
|
2009-04-07 20:02:11 +04:00
|
|
|
if (profile) {
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t profileSpace = qcms_profile_get_color_space(profile);
|
2007-07-24 02:02:17 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mismatch = false;
|
2009-04-07 20:02:11 +04:00
|
|
|
if (color_type & PNG_COLOR_MASK_COLOR) {
|
2014-11-14 20:59:00 +03:00
|
|
|
if (profileSpace != icSigRgbData) {
|
2011-10-17 18:59:28 +04:00
|
|
|
mismatch = true;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2009-04-07 20:02:11 +04:00
|
|
|
} else {
|
2014-11-14 20:59:00 +03:00
|
|
|
if (profileSpace == icSigRgbData) {
|
2009-04-07 20:02:11 +04:00
|
|
|
png_set_gray_to_rgb(png_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
} else if (profileSpace != icSigGrayData) {
|
2011-10-17 18:59:28 +04:00
|
|
|
mismatch = true;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2009-04-07 20:02:11 +04:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
|
2009-04-07 20:02:11 +04:00
|
|
|
if (mismatch) {
|
|
|
|
qcms_profile_release(profile);
|
2012-07-30 18:20:58 +04:00
|
|
|
profile = nullptr;
|
2009-04-07 20:02:11 +04:00
|
|
|
} else {
|
|
|
|
*intent = qcms_profile_get_rendering_intent(profile);
|
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check sRGB chunk
|
|
|
|
if (!profile && png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) {
|
2009-04-07 20:02:11 +04:00
|
|
|
profile = qcms_profile_sRGB();
|
2007-07-24 02:02:17 +04:00
|
|
|
|
|
|
|
if (profile) {
|
|
|
|
int fileIntent;
|
2009-12-04 05:41:00 +03:00
|
|
|
png_set_gray_to_rgb(png_ptr);
|
2007-07-24 02:02:17 +04:00
|
|
|
png_get_sRGB(png_ptr, info_ptr, &fileIntent);
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t map[] = { QCMS_INTENT_PERCEPTUAL,
|
2009-12-04 05:41:00 +03:00
|
|
|
QCMS_INTENT_RELATIVE_COLORIMETRIC,
|
|
|
|
QCMS_INTENT_SATURATION,
|
|
|
|
QCMS_INTENT_ABSOLUTE_COLORIMETRIC };
|
2007-07-24 02:02:17 +04:00
|
|
|
*intent = map[fileIntent];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check gAMA/cHRM chunks
|
2009-12-04 05:41:00 +03:00
|
|
|
if (!profile &&
|
2008-08-31 02:54:58 +04:00
|
|
|
png_get_valid(png_ptr, info_ptr, PNG_INFO_gAMA) &&
|
|
|
|
png_get_valid(png_ptr, info_ptr, PNG_INFO_cHRM)) {
|
2009-04-07 20:02:11 +04:00
|
|
|
qcms_CIE_xyYTRIPLE primaries;
|
|
|
|
qcms_CIE_xyY whitePoint;
|
2008-08-31 02:54:58 +04:00
|
|
|
|
|
|
|
png_get_cHRM(png_ptr, info_ptr,
|
|
|
|
&whitePoint.x, &whitePoint.y,
|
2009-04-07 20:02:11 +04:00
|
|
|
&primaries.red.x, &primaries.red.y,
|
|
|
|
&primaries.green.x, &primaries.green.y,
|
|
|
|
&primaries.blue.x, &primaries.blue.y);
|
2008-08-31 02:54:58 +04:00
|
|
|
whitePoint.Y =
|
2009-04-07 20:02:11 +04:00
|
|
|
primaries.red.Y = primaries.green.Y = primaries.blue.Y = 1.0;
|
2007-07-24 02:02:17 +04:00
|
|
|
|
|
|
|
double gammaOfFile;
|
|
|
|
|
|
|
|
png_get_gAMA(png_ptr, info_ptr, &gammaOfFile);
|
|
|
|
|
2009-12-04 05:41:00 +03:00
|
|
|
profile = qcms_profile_create_rgb_with_gamma(whitePoint, primaries,
|
|
|
|
1.0/gammaOfFile);
|
2007-07-24 02:02:17 +04:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (profile) {
|
2007-07-24 02:02:17 +04:00
|
|
|
png_set_gray_to_rgb(png_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (profile) {
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t profileSpace = qcms_profile_get_color_space(profile);
|
2007-07-24 02:02:17 +04:00
|
|
|
if (profileSpace == icSigGrayData) {
|
2014-11-14 20:59:00 +03:00
|
|
|
if (color_type & PNG_COLOR_MASK_ALPHA) {
|
2009-04-07 20:02:11 +04:00
|
|
|
*inType = QCMS_DATA_GRAYA_8;
|
2014-11-14 20:59:00 +03:00
|
|
|
} else {
|
2009-04-07 20:02:11 +04:00
|
|
|
*inType = QCMS_DATA_GRAY_8;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
} else {
|
|
|
|
if (color_type & PNG_COLOR_MASK_ALPHA ||
|
2014-11-14 20:59:00 +03:00
|
|
|
png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
|
2009-04-07 20:02:11 +04:00
|
|
|
*inType = QCMS_DATA_RGBA_8;
|
2014-11-14 20:59:00 +03:00
|
|
|
} else {
|
2009-04-07 20:02:11 +04:00
|
|
|
*inType = QCMS_DATA_RGB_8;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return profile;
|
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::info_callback(png_structp png_ptr, png_infop info_ptr)
|
2001-01-23 01:01:03 +03:00
|
|
|
{
|
2001-01-26 15:05:55 +03:00
|
|
|
png_uint_32 width, height;
|
|
|
|
int bit_depth, color_type, interlace_type, compression_type, filter_type;
|
2008-07-12 00:52:30 +04:00
|
|
|
unsigned int channels;
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2013-08-23 23:51:00 +04:00
|
|
|
png_bytep trans = nullptr;
|
2007-03-21 02:56:50 +03:00
|
|
|
int num_trans = 0;
|
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
nsPNGDecoder* decoder =
|
2009-12-04 05:41:00 +03:00
|
|
|
static_cast<nsPNGDecoder*>(png_get_progressive_ptr(png_ptr));
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// Always decode to 24-bit RGB or 32-bit RGBA
|
2001-01-26 15:05:55 +03:00
|
|
|
png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
|
|
|
|
&interlace_type, &compression_type, &filter_type);
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// Are we too big?
|
2014-11-14 20:59:00 +03:00
|
|
|
if (width > MOZ_PNG_MAX_DIMENSION || height > MOZ_PNG_MAX_DIMENSION) {
|
2014-09-25 01:38:00 +04:00
|
|
|
png_longjmp(decoder->mPNG, 1);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2009-09-13 02:44:18 +04:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
const IntRect frameRect(0, 0, width, height);
|
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
// Post our size to the superclass
|
2016-06-25 01:20:32 +03:00
|
|
|
decoder->PostSize(frameRect.width, frameRect.height);
|
2011-05-11 13:46:59 +04:00
|
|
|
if (decoder->HasError()) {
|
2012-05-19 23:32:37 +04:00
|
|
|
// Setting the size led to an error.
|
2014-09-25 01:38:00 +04:00
|
|
|
png_longjmp(decoder->mPNG, 1);
|
2011-05-11 13:46:59 +04:00
|
|
|
}
|
2004-08-04 18:02:34 +04:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (color_type == PNG_COLOR_TYPE_PALETTE) {
|
2001-01-26 15:05:55 +03:00
|
|
|
png_set_expand(png_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
|
2001-01-26 15:05:55 +03:00
|
|
|
png_set_expand(png_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2001-01-26 15:05:55 +03:00
|
|
|
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
|
2008-08-19 12:12:31 +04:00
|
|
|
png_color_16p trans_values;
|
|
|
|
png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans, &trans_values);
|
2014-09-25 01:38:00 +04:00
|
|
|
// libpng doesn't reject a tRNS chunk with out-of-range samples
|
|
|
|
// so we check it here to avoid setting up a useless opacity
|
2015-01-24 20:43:49 +03:00
|
|
|
// channel or producing unexpected transparent pixels (bug #428045)
|
|
|
|
if (bit_depth < 16) {
|
|
|
|
png_uint_16 sample_max = (1 << bit_depth) - 1;
|
|
|
|
if ((color_type == PNG_COLOR_TYPE_GRAY &&
|
|
|
|
trans_values->gray > sample_max) ||
|
|
|
|
(color_type == PNG_COLOR_TYPE_RGB &&
|
|
|
|
(trans_values->red > sample_max ||
|
|
|
|
trans_values->green > sample_max ||
|
|
|
|
trans_values->blue > sample_max))) {
|
|
|
|
// clear the tRNS valid flag and release tRNS memory
|
|
|
|
png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
|
|
|
|
num_trans = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (num_trans != 0) {
|
2010-01-06 00:46:26 +03:00
|
|
|
png_set_expand(png_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-01-26 15:05:55 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (bit_depth == 16) {
|
2012-03-04 07:18:31 +04:00
|
|
|
png_set_scale_16(png_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2013-09-06 02:55:13 +04:00
|
|
|
qcms_data_type inType = QCMS_DATA_RGBA_8;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t intent = -1;
|
|
|
|
uint32_t pIntent;
|
2011-01-13 04:45:13 +03:00
|
|
|
if (decoder->mCMSMode != eCMSMode_Off) {
|
2013-09-07 07:08:36 +04:00
|
|
|
intent = gfxPlatform::GetRenderingIntent();
|
2007-07-24 02:02:17 +04:00
|
|
|
decoder->mInProfile = PNGGetColorProfile(png_ptr, info_ptr,
|
2008-07-23 21:33:12 +04:00
|
|
|
color_type, &inType, &pIntent);
|
2014-09-25 01:38:00 +04:00
|
|
|
// If we're not mandating an intent, use the one from the image.
|
2014-11-14 20:59:00 +03:00
|
|
|
if (intent == uint32_t(-1)) {
|
2008-07-23 21:33:12 +04:00
|
|
|
intent = pIntent;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
2013-09-07 07:08:36 +04:00
|
|
|
if (decoder->mInProfile && gfxPlatform::GetCMSOutputProfile()) {
|
2009-04-07 20:02:11 +04:00
|
|
|
qcms_data_type outType;
|
2007-07-24 02:02:17 +04:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (color_type & PNG_COLOR_MASK_ALPHA || num_trans) {
|
2009-04-07 20:02:11 +04:00
|
|
|
outType = QCMS_DATA_RGBA_8;
|
2014-11-14 20:59:00 +03:00
|
|
|
} else {
|
2009-04-07 20:02:11 +04:00
|
|
|
outType = QCMS_DATA_RGB_8;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2008-08-18 09:08:53 +04:00
|
|
|
|
2009-04-07 20:02:11 +04:00
|
|
|
decoder->mTransform = qcms_transform_create(decoder->mInProfile,
|
2009-12-04 05:41:00 +03:00
|
|
|
inType,
|
2013-09-07 07:08:36 +04:00
|
|
|
gfxPlatform::GetCMSOutputProfile(),
|
2009-12-04 05:41:00 +03:00
|
|
|
outType,
|
|
|
|
(qcms_intent)intent);
|
2007-07-24 02:02:17 +04:00
|
|
|
} else {
|
2007-12-04 07:43:09 +03:00
|
|
|
png_set_gray_to_rgb(png_ptr);
|
2008-08-31 02:54:58 +04:00
|
|
|
|
2011-01-13 04:45:13 +03:00
|
|
|
// only do gamma correction if CMS isn't entirely disabled
|
2014-11-14 20:59:00 +03:00
|
|
|
if (decoder->mCMSMode != eCMSMode_Off) {
|
2011-01-13 04:45:13 +03:00
|
|
|
PNGDoGammaCorrection(png_ptr, info_ptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2011-01-13 04:45:13 +03:00
|
|
|
|
|
|
|
if (decoder->mCMSMode == eCMSMode_All) {
|
2014-11-14 20:59:00 +03:00
|
|
|
if (color_type & PNG_COLOR_MASK_ALPHA || num_trans) {
|
2013-09-07 07:08:36 +04:00
|
|
|
decoder->mTransform = gfxPlatform::GetCMSRGBATransform();
|
2014-11-14 20:59:00 +03:00
|
|
|
} else {
|
2013-09-07 07:08:36 +04:00
|
|
|
decoder->mTransform = gfxPlatform::GetCMSRGBTransform();
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
// Let libpng expand interlaced images.
|
|
|
|
const bool isInterlaced = interlace_type == PNG_INTERLACE_ADAM7;
|
|
|
|
if (isInterlaced) {
|
2001-04-16 13:41:01 +04:00
|
|
|
png_set_interlace_handling(png_ptr);
|
2001-01-26 15:05:55 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
// now all of those things we set above are used to update various struct
|
|
|
|
// members and whatnot, after which we can get channels, rowbytes, etc.
|
2001-01-26 15:05:55 +03:00
|
|
|
png_read_update_info(png_ptr, info_ptr);
|
2007-07-24 02:02:17 +04:00
|
|
|
decoder->mChannels = channels = png_get_channels(png_ptr, info_ptr);
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2014-09-25 01:38:00 +04:00
|
|
|
//---------------------------------------------------------------//
|
|
|
|
// copy PNG info into imagelib structs (formerly png_set_dims()) //
|
|
|
|
//---------------------------------------------------------------//
|
2001-01-26 15:05:55 +03:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (channels == 1 || channels == 3) {
|
2014-04-20 05:28:38 +04:00
|
|
|
decoder->format = gfx::SurfaceFormat::B8G8R8X8;
|
2014-11-14 20:59:00 +03:00
|
|
|
} else if (channels == 2 || channels == 4) {
|
2014-04-20 05:28:38 +04:00
|
|
|
decoder->format = gfx::SurfaceFormat::B8G8R8A8;
|
2015-05-26 12:48:00 +03:00
|
|
|
} else {
|
|
|
|
png_longjmp(decoder->mPNG, 1); // invalid number of channels
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2015-08-14 10:37:13 +03:00
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
|
|
|
bool isAnimated = png_get_valid(png_ptr, info_ptr, PNG_INFO_acTL);
|
|
|
|
if (isAnimated) {
|
|
|
|
decoder->PostIsAnimated(GetNextFrameDelay(png_ptr, info_ptr));
|
2015-09-02 00:13:17 +03:00
|
|
|
|
|
|
|
if (decoder->mDownscaler && !decoder->IsFirstFrameDecode()) {
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Doing downscale-during-decode "
|
|
|
|
"for an animated image?");
|
2016-06-25 01:20:32 +03:00
|
|
|
png_longjmp(decoder->mPNG, 1); // Abort the decode.
|
2015-09-02 00:13:17 +03:00
|
|
|
}
|
2015-08-14 10:37:13 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-12 20:41:02 +03:00
|
|
|
if (decoder->IsMetadataDecode()) {
|
2016-02-23 22:22:00 +03:00
|
|
|
// If we are animated then the first frame rect is either: 1) the whole image
|
|
|
|
// if the IDAT chunk is part of the animation 2) the frame rect of the first
|
|
|
|
// fDAT chunk otherwise. If we are not animated then we want to make sure to
|
|
|
|
// call PostHasTransparency in the metadata decode if we need to. So it's okay
|
|
|
|
// to pass IntRect(0, 0, width, height) here for animated images; they will
|
|
|
|
// call with the proper first frame rect in the full decode.
|
2016-06-25 01:20:32 +03:00
|
|
|
auto transparency = decoder->GetTransparencyType(decoder->format, frameRect);
|
|
|
|
decoder->PostHasTransparencyIfNeeded(transparency);
|
2015-08-12 20:41:02 +03:00
|
|
|
|
2016-06-27 22:00:16 +03:00
|
|
|
// We have the metadata we're looking for, so stop here, before we allocate
|
|
|
|
// buffers below.
|
|
|
|
png_process_data_pause(png_ptr, /* save = */ false);
|
|
|
|
return;
|
2015-08-12 20:41:02 +03:00
|
|
|
}
|
|
|
|
|
2010-01-06 00:46:26 +03:00
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
2015-08-14 10:37:13 +03:00
|
|
|
if (isAnimated) {
|
2013-08-23 23:51:00 +04:00
|
|
|
png_set_progressive_frame_fn(png_ptr, nsPNGDecoder::frame_info_callback,
|
|
|
|
nullptr);
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2007-04-20 00:40:53 +04:00
|
|
|
if (png_get_first_frame_is_hidden(png_ptr, info_ptr)) {
|
2011-10-17 18:59:28 +04:00
|
|
|
decoder->mFrameIsHidden = true;
|
2007-03-21 02:56:50 +03:00
|
|
|
} else {
|
2010-01-06 00:46:26 +03:00
|
|
|
#endif
|
2016-06-25 01:20:32 +03:00
|
|
|
nsresult rv = decoder->CreateFrame(decoder->format, frameRect, isInterlaced);
|
2015-07-11 05:26:15 +03:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
png_longjmp(decoder->mPNG, 5); // NS_ERROR_OUT_OF_MEMORY
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(decoder->mImageData, "Should have a buffer now");
|
2010-01-06 00:46:26 +03:00
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
2007-03-21 02:56:50 +03:00
|
|
|
}
|
2010-01-06 00:46:26 +03:00
|
|
|
#endif
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
if (decoder->mTransform && (channels <= 2 || isInterlaced)) {
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t bpp[] = { 0, 3, 4, 3, 4 };
|
2007-07-24 02:02:17 +04:00
|
|
|
decoder->mCMSLine =
|
2016-06-25 01:20:32 +03:00
|
|
|
static_cast<uint8_t*>(malloc(bpp[channels] * frameRect.width));
|
2009-09-13 02:44:18 +04:00
|
|
|
if (!decoder->mCMSLine) {
|
2014-09-25 01:38:00 +04:00
|
|
|
png_longjmp(decoder->mPNG, 5); // NS_ERROR_OUT_OF_MEMORY
|
2009-09-13 02:44:18 +04:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
}
|
|
|
|
|
2001-02-21 01:43:56 +03:00
|
|
|
if (interlace_type == PNG_INTERLACE_ADAM7) {
|
2016-06-25 01:20:32 +03:00
|
|
|
if (frameRect.height < INT32_MAX / (frameRect.width * int32_t(channels))) {
|
|
|
|
const size_t bufferSize = channels * frameRect.width * frameRect.height;
|
|
|
|
decoder->interlacebuf = static_cast<uint8_t*>(malloc(bufferSize));
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-02-21 01:43:56 +03:00
|
|
|
if (!decoder->interlacebuf) {
|
2014-09-25 01:38:00 +04:00
|
|
|
png_longjmp(decoder->mPNG, 5); // NS_ERROR_OUT_OF_MEMORY
|
2007-03-21 02:56:50 +03:00
|
|
|
}
|
2001-02-21 01:43:56 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
}
|
|
|
|
|
2015-09-02 00:13:17 +03:00
|
|
|
void
|
2016-06-25 01:20:32 +03:00
|
|
|
nsPNGDecoder::PostInvalidationIfNeeded()
|
2015-09-02 00:13:17 +03:00
|
|
|
{
|
2016-06-25 01:20:32 +03:00
|
|
|
Maybe<SurfaceInvalidRect> invalidRect = mPipe.TakeInvalidRect();
|
|
|
|
if (!invalidRect) {
|
2015-09-02 00:13:17 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
PostInvalidation(invalidRect->mInputSpaceRect,
|
|
|
|
Some(invalidRect->mOutputSpaceRect));
|
2015-09-02 00:13:17 +03:00
|
|
|
}
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
static NextPixel<uint32_t>
|
|
|
|
PackRGBPixelAndAdvance(uint8_t*& aRawPixelInOut)
|
2015-09-02 00:13:17 +03:00
|
|
|
{
|
2016-06-25 01:20:32 +03:00
|
|
|
const uint32_t pixel =
|
|
|
|
gfxPackedPixel(0xFF, aRawPixelInOut[0], aRawPixelInOut[1], aRawPixelInOut[2]);
|
|
|
|
aRawPixelInOut += 3;
|
|
|
|
return AsVariant(pixel);
|
2015-09-02 00:13:17 +03:00
|
|
|
}
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
static NextPixel<uint32_t>
|
|
|
|
PackRGBAPixelAndAdvance(uint8_t*& aRawPixelInOut)
|
2015-11-14 13:33:00 +03:00
|
|
|
{
|
2016-06-25 01:20:32 +03:00
|
|
|
const uint32_t pixel =
|
|
|
|
gfxPackedPixel(aRawPixelInOut[3], aRawPixelInOut[0],
|
|
|
|
aRawPixelInOut[1], aRawPixelInOut[2]);
|
|
|
|
aRawPixelInOut += 4;
|
|
|
|
return AsVariant(pixel);
|
|
|
|
}
|
2015-11-14 13:33:00 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
static NextPixel<uint32_t>
|
|
|
|
PackUnpremultipliedRGBAPixelAndAdvance(uint8_t*& aRawPixelInOut)
|
|
|
|
{
|
|
|
|
const uint32_t pixel =
|
|
|
|
gfxPackedPixelNoPreMultiply(aRawPixelInOut[3], aRawPixelInOut[0],
|
|
|
|
aRawPixelInOut[1], aRawPixelInOut[2]);
|
|
|
|
aRawPixelInOut += 4;
|
|
|
|
return AsVariant(pixel);
|
2015-11-14 13:33:00 +03:00
|
|
|
}
|
|
|
|
|
2001-01-23 01:01:03 +03:00
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::row_callback(png_structp png_ptr, png_bytep new_row,
|
|
|
|
png_uint_32 row_num, int pass)
|
2001-01-23 01:01:03 +03:00
|
|
|
{
|
|
|
|
/* libpng comments:
|
|
|
|
*
|
2015-11-14 13:33:00 +03:00
|
|
|
* This function is called for every row in the image. If the
|
2001-01-23 01:01:03 +03:00
|
|
|
* 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.
|
2013-08-23 23:51:00 +04:00
|
|
|
* When the row is not changed, the new_row variable will be
|
|
|
|
* nullptr. 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.
|
2001-01-23 01:01:03 +03:00
|
|
|
*
|
2013-08-23 23:51:00 +04:00
|
|
|
* For the non-nullptr rows of interlaced images, you must call
|
2001-01-23 01:01:03 +03:00
|
|
|
* png_progressive_combine_row() passing in the row and the
|
2013-08-23 23:51:00 +04:00
|
|
|
* old row. You can call this function for nullptr rows (it will
|
2001-01-23 01:01:03 +03:00
|
|
|
* 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.
|
|
|
|
*/
|
2014-11-14 20:59:00 +03:00
|
|
|
nsPNGDecoder* decoder =
|
2016-06-25 01:20:32 +03:00
|
|
|
static_cast<nsPNGDecoder*>(png_get_progressive_ptr(png_ptr));
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
if (decoder->mFrameIsHidden) {
|
2016-06-25 01:20:32 +03:00
|
|
|
return; // Skip this frame.
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2001-01-23 01:01:03 +03:00
|
|
|
|
2016-06-27 22:00:16 +03:00
|
|
|
MOZ_ASSERT_IF(decoder->IsFirstFrameDecode(), decoder->mNumFrames == 0);
|
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
while (pass > decoder->mPass) {
|
|
|
|
// Advance to the next pass. We may have to do this multiple times because
|
|
|
|
// libpng will skip passes if the image is so small that no pixels have
|
|
|
|
// changed on a given pass, but ADAM7InterpolatingFilter needs to be reset
|
|
|
|
// once for every pass to perform interpolation properly.
|
|
|
|
decoder->mPipe.ResetToFirstRow();
|
|
|
|
decoder->mPass++;
|
2014-11-14 20:59:00 +03:00
|
|
|
}
|
2010-06-25 23:20:18 +04:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
const png_uint_32 height = static_cast<png_uint_32>(decoder->mFrameRect.height);
|
2001-02-21 01:43:56 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
if (row_num >= height) {
|
|
|
|
// Bail if we receive extra rows. This is especially important because if we
|
|
|
|
// didn't, we might overflow the deinterlacing buffer.
|
|
|
|
MOZ_ASSERT_UNREACHABLE("libpng producing extra rows?");
|
2015-11-14 13:33:00 +03:00
|
|
|
return;
|
|
|
|
}
|
2007-02-28 00:13:25 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
// Note that |new_row| may be null here, indicating that this is an interlaced
|
|
|
|
// image and |row_callback| is being called for a row that hasn't changed.
|
|
|
|
MOZ_ASSERT_IF(!new_row, decoder->interlacebuf);
|
|
|
|
uint8_t* rowToWrite = new_row;
|
2015-11-14 13:33:00 +03:00
|
|
|
|
|
|
|
if (decoder->interlacebuf) {
|
2016-06-25 01:20:32 +03:00
|
|
|
uint32_t width = uint32_t(decoder->mFrameRect.width);
|
|
|
|
|
|
|
|
// We'll output the deinterlaced version of the row.
|
|
|
|
rowToWrite = decoder->interlacebuf + (row_num * decoder->mChannels * width);
|
|
|
|
|
|
|
|
// Update the deinterlaced version of this row with the new data.
|
|
|
|
png_progressive_combine_row(png_ptr, rowToWrite, new_row);
|
2015-11-14 13:33:00 +03:00
|
|
|
}
|
2007-07-24 02:02:17 +04:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
decoder->WriteRow(rowToWrite);
|
|
|
|
}
|
2007-12-21 13:26:31 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
void
|
|
|
|
nsPNGDecoder::WriteRow(uint8_t* aRow)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aRow);
|
2008-01-30 09:22:23 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
uint8_t* rowToWrite = aRow;
|
|
|
|
uint32_t width = uint32_t(mFrameRect.width);
|
2007-12-21 13:26:31 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
// Apply color management to the row, if necessary, before writing it out.
|
|
|
|
if (mTransform) {
|
|
|
|
if (mCMSLine) {
|
|
|
|
qcms_transform_data(mTransform, rowToWrite, mCMSLine, width);
|
|
|
|
|
|
|
|
// Copy alpha over.
|
|
|
|
if (mChannels == 2 || mChannels == 4) {
|
|
|
|
for (uint32_t i = 0; i < width; ++i) {
|
|
|
|
mCMSLine[4 * i + 3] = rowToWrite[mChannels * i + mChannels - 1];
|
2001-02-21 01:43:56 +03:00
|
|
|
}
|
2006-03-25 03:34:48 +03:00
|
|
|
}
|
2016-06-25 01:20:32 +03:00
|
|
|
|
|
|
|
rowToWrite = mCMSLine;
|
|
|
|
} else {
|
|
|
|
qcms_transform_data(mTransform, rowToWrite, rowToWrite, width);
|
2001-02-21 01:43:56 +03:00
|
|
|
}
|
2015-11-14 13:33:00 +03:00
|
|
|
}
|
2001-02-21 01:43:56 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
// Write this row to the SurfacePipe.
|
|
|
|
DebugOnly<WriteState> result = WriteState::FAILURE;
|
|
|
|
switch (format) {
|
|
|
|
case SurfaceFormat::B8G8R8X8:
|
|
|
|
result = mPipe.WritePixelsToRow<uint32_t>([&]{
|
|
|
|
return PackRGBPixelAndAdvance(rowToWrite);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SurfaceFormat::B8G8R8A8:
|
|
|
|
if (mDisablePremultipliedAlpha) {
|
|
|
|
result = mPipe.WritePixelsToRow<uint32_t>([&]{
|
|
|
|
return PackUnpremultipliedRGBAPixelAndAdvance(rowToWrite);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
result = mPipe.WritePixelsToRow<uint32_t>([&]{
|
|
|
|
return PackRGBAPixelAndAdvance(rowToWrite);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
png_longjmp(mPNG, 1); // Abort the decode.
|
2015-11-14 13:33:00 +03:00
|
|
|
}
|
|
|
|
|
2016-06-26 00:36:47 +03:00
|
|
|
MOZ_ASSERT(WriteState(result) != WriteState::FAILURE);
|
2015-09-02 00:13:17 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
PostInvalidationIfNeeded();
|
2001-01-23 01:01:03 +03:00
|
|
|
}
|
|
|
|
|
2013-12-04 17:01:34 +04:00
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
2007-03-21 02:56:50 +03:00
|
|
|
// got the header of a new frame that's coming
|
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::frame_info_callback(png_structp png_ptr, png_uint_32 frame_num)
|
2007-03-21 02:56:50 +03:00
|
|
|
{
|
2014-11-14 20:59:00 +03:00
|
|
|
nsPNGDecoder* decoder =
|
2009-12-04 05:41:00 +03:00
|
|
|
static_cast<nsPNGDecoder*>(png_get_progressive_ptr(png_ptr));
|
|
|
|
|
2007-03-21 02:56:50 +03:00
|
|
|
// old frame is done
|
2010-09-12 19:22:30 +04:00
|
|
|
decoder->EndImageFrame();
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2015-08-01 04:10:23 +03:00
|
|
|
if (!decoder->mFrameIsHidden && decoder->IsFirstFrameDecode()) {
|
|
|
|
// We're about to get a second non-hidden frame, but we only want the first.
|
2016-06-27 22:00:16 +03:00
|
|
|
// Stop decoding now. (And avoid allocating the unnecessary buffers below.)
|
2015-08-01 04:10:23 +03:00
|
|
|
decoder->PostDecodeDone();
|
2016-06-27 22:00:16 +03:00
|
|
|
png_process_data_pause(png_ptr, /* save = */ false);
|
|
|
|
return;
|
2015-08-01 04:10:23 +03:00
|
|
|
}
|
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
// Only the first frame can be hidden, so unhide unconditionally here.
|
2011-10-17 18:59:28 +04:00
|
|
|
decoder->mFrameIsHidden = false;
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
const IntRect frameRect(png_get_next_frame_x_offset(png_ptr, decoder->mInfo),
|
|
|
|
png_get_next_frame_y_offset(png_ptr, decoder->mInfo),
|
|
|
|
png_get_next_frame_width(png_ptr, decoder->mInfo),
|
|
|
|
png_get_next_frame_height(png_ptr, decoder->mInfo));
|
|
|
|
|
|
|
|
const bool isInterlaced = bool(decoder->interlacebuf);
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2016-06-25 01:20:32 +03:00
|
|
|
nsresult rv = decoder->CreateFrame(decoder->format, frameRect, isInterlaced);
|
2015-07-11 05:26:15 +03:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
png_longjmp(decoder->mPNG, 5); // NS_ERROR_OUT_OF_MEMORY
|
2013-05-22 05:52:10 +04:00
|
|
|
}
|
2015-07-11 05:26:15 +03:00
|
|
|
MOZ_ASSERT(decoder->mImageData, "Should have a buffer now");
|
2007-03-21 02:56:50 +03:00
|
|
|
}
|
2013-12-04 17:01:34 +04:00
|
|
|
#endif
|
2001-01-23 01:01:03 +03:00
|
|
|
|
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::end_callback(png_structp png_ptr, png_infop info_ptr)
|
2001-01-23 01:01:03 +03:00
|
|
|
{
|
|
|
|
/* libpng comments:
|
|
|
|
*
|
|
|
|
* this function is called when the whole image has been read,
|
|
|
|
* including any chunks after the image (up to and including
|
|
|
|
* the IEND). You will usually have the same info chunk as you
|
|
|
|
* had in the header, although some data may have been added
|
|
|
|
* to the comments and time fields.
|
|
|
|
*
|
|
|
|
* Most people won't do much here, perhaps setting a flag that
|
|
|
|
* marks the image as finished.
|
|
|
|
*/
|
|
|
|
|
2014-11-14 20:59:00 +03:00
|
|
|
nsPNGDecoder* decoder =
|
2009-12-04 05:41:00 +03:00
|
|
|
static_cast<nsPNGDecoder*>(png_get_progressive_ptr(png_ptr));
|
2009-09-13 02:44:18 +04:00
|
|
|
|
|
|
|
// We shouldn't get here if we've hit an error
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!decoder->HasError(), "Finishing up PNG but hit error!");
|
2009-12-04 05:41:00 +03:00
|
|
|
|
2012-12-20 00:11:42 +04:00
|
|
|
int32_t loop_count = 0;
|
2010-01-06 00:46:26 +03:00
|
|
|
#ifdef PNG_APNG_SUPPORTED
|
2007-03-21 22:12:00 +03:00
|
|
|
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_acTL)) {
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t num_plays = png_get_num_plays(png_ptr, info_ptr);
|
2012-12-20 00:11:42 +04:00
|
|
|
loop_count = num_plays - 1;
|
2007-03-21 02:56:50 +03:00
|
|
|
}
|
2010-01-06 00:46:26 +03:00
|
|
|
#endif
|
2007-10-19 04:36:34 +04:00
|
|
|
|
2009-09-13 02:44:18 +04:00
|
|
|
// Send final notifications
|
2010-09-12 19:22:30 +04:00
|
|
|
decoder->EndImageFrame();
|
2012-12-20 00:11:42 +04:00
|
|
|
decoder->PostDecodeDone(loop_count);
|
2001-01-23 01:01:03 +03:00
|
|
|
}
|
|
|
|
|
2002-09-23 21:34:21 +04:00
|
|
|
|
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::error_callback(png_structp png_ptr, png_const_charp error_msg)
|
2002-09-23 21:34:21 +04:00
|
|
|
{
|
2015-10-28 23:08:06 +03:00
|
|
|
MOZ_LOG(sPNGLog, LogLevel::Error, ("libpng error: %s\n", error_msg));
|
2014-09-25 01:38:00 +04:00
|
|
|
png_longjmp(png_ptr, 1);
|
2002-09-23 21:34:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2010-08-23 06:30:46 +04:00
|
|
|
nsPNGDecoder::warning_callback(png_structp png_ptr, png_const_charp warning_msg)
|
2002-09-23 21:34:21 +04:00
|
|
|
{
|
2015-10-28 23:08:06 +03:00
|
|
|
MOZ_LOG(sPNGLog, LogLevel::Warning, ("libpng warning: %s\n", warning_msg));
|
2002-09-23 21:34:21 +04:00
|
|
|
}
|
2010-03-09 21:22:44 +03:00
|
|
|
|
2011-09-23 00:25:56 +04:00
|
|
|
Telemetry::ID
|
|
|
|
nsPNGDecoder::SpeedHistogram()
|
|
|
|
{
|
|
|
|
return Telemetry::IMAGE_DECODE_SPEED_PNG;
|
|
|
|
}
|
|
|
|
|
2016-07-03 06:22:06 +03:00
|
|
|
bool
|
|
|
|
nsPNGDecoder::IsValidICO() const
|
|
|
|
{
|
|
|
|
// Only 32-bit RGBA PNGs are valid ICO resources; see here:
|
|
|
|
// http://blogs.msdn.com/b/oldnewthing/archive/2010/10/22/10079192.aspx
|
|
|
|
|
|
|
|
// If there are errors in the call to png_get_IHDR, the error_callback in
|
|
|
|
// nsPNGDecoder.cpp is called. In this error callback we do a longjmp, so
|
|
|
|
// we need to save the jump buffer here. Oterwise we'll end up without a
|
|
|
|
// proper callstack.
|
|
|
|
if (setjmp(png_jmpbuf(mPNG))) {
|
|
|
|
// We got here from a longjmp call indirectly from png_get_IHDR
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
png_uint_32
|
|
|
|
png_width, // Unused
|
|
|
|
png_height; // Unused
|
|
|
|
|
|
|
|
int png_bit_depth,
|
|
|
|
png_color_type;
|
|
|
|
|
|
|
|
if (png_get_IHDR(mPNG, mInfo, &png_width, &png_height, &png_bit_depth,
|
|
|
|
&png_color_type, nullptr, nullptr, nullptr)) {
|
|
|
|
|
|
|
|
return ((png_color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
|
|
|
|
png_color_type == PNG_COLOR_TYPE_RGB) &&
|
|
|
|
png_bit_depth == 8);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-09-23 00:25:56 +04:00
|
|
|
|
2012-01-06 20:02:27 +04:00
|
|
|
} // namespace image
|
2010-08-23 06:30:46 +04:00
|
|
|
} // namespace mozilla
|