2010-08-23 02:30:45 +00:00
|
|
|
|
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2010-08-23 02:30:45 +00:00
|
|
|
|
|
|
|
#include "Decoder.h"
|
2015-01-08 08:01:25 +00:00
|
|
|
|
|
|
|
#include "mozilla/gfx/2D.h"
|
2015-01-15 23:11:36 +00:00
|
|
|
#include "DecodePool.h"
|
|
|
|
#include "GeckoProfiler.h"
|
2015-01-08 08:01:25 +00:00
|
|
|
#include "imgIContainer.h"
|
2015-01-15 23:11:36 +00:00
|
|
|
#include "nsProxyRelease.h"
|
2013-09-07 13:01:08 +00:00
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
2015-02-03 15:05:49 +00:00
|
|
|
#include "mozilla/Telemetry.h"
|
2010-08-23 02:30:45 +00:00
|
|
|
|
2015-01-08 08:01:25 +00:00
|
|
|
using mozilla::gfx::IntSize;
|
|
|
|
using mozilla::gfx::SurfaceFormat;
|
|
|
|
|
2010-08-23 02:30:45 +00:00
|
|
|
namespace mozilla {
|
2012-01-06 16:02:27 +00:00
|
|
|
namespace image {
|
2010-08-23 02:30:45 +00:00
|
|
|
|
2015-01-15 23:11:35 +00:00
|
|
|
Decoder::Decoder(RasterImage* aImage)
|
2015-07-31 14:29:00 +00:00
|
|
|
: mImageData(nullptr)
|
|
|
|
, mImageDataLength(0)
|
2013-01-28 17:26:36 +00:00
|
|
|
, mColormap(nullptr)
|
2015-07-31 14:29:00 +00:00
|
|
|
, mColormapSize(0)
|
|
|
|
, mImage(aImage)
|
|
|
|
, mProgress(NoProgress)
|
|
|
|
, mFrameCount(0)
|
|
|
|
, mFailCode(NS_OK)
|
2014-11-18 20:06:26 +00:00
|
|
|
, mChunkCount(0)
|
2015-08-15 00:56:44 +00:00
|
|
|
, mDecoderFlags(DefaultDecoderFlags())
|
|
|
|
, mSurfaceFlags(DefaultSurfaceFlags())
|
2014-10-15 20:52:20 +00:00
|
|
|
, mBytesDecoded(0)
|
2015-07-31 14:29:00 +00:00
|
|
|
, mInitialized(false)
|
|
|
|
, mMetadataDecode(false)
|
|
|
|
, mInFrame(false)
|
2015-01-15 23:11:36 +00:00
|
|
|
, mDataDone(false)
|
2012-01-02 20:23:41 +00:00
|
|
|
, mDecodeDone(false)
|
|
|
|
, mDataError(false)
|
2015-01-15 23:11:36 +00:00
|
|
|
, mDecodeAborted(false)
|
2015-01-27 06:53:20 +00:00
|
|
|
, mShouldReportError(false)
|
2014-11-15 04:06:19 +00:00
|
|
|
{ }
|
2010-08-23 02:30:45 +00:00
|
|
|
|
|
|
|
Decoder::~Decoder()
|
|
|
|
{
|
2015-07-31 14:29:18 +00:00
|
|
|
MOZ_ASSERT(mProgress == NoProgress || !mImage,
|
2014-11-18 09:48:49 +00:00
|
|
|
"Destroying Decoder without taking all its progress changes");
|
2015-07-31 14:29:18 +00:00
|
|
|
MOZ_ASSERT(mInvalidRect.IsEmpty() || !mImage,
|
2014-11-18 09:48:49 +00:00
|
|
|
"Destroying Decoder without taking all its invalidations");
|
2010-08-23 02:30:45 +00:00
|
|
|
mInitialized = false;
|
2015-01-15 23:11:35 +00:00
|
|
|
|
2015-07-31 14:29:07 +00:00
|
|
|
if (mImage && !NS_IsMainThread()) {
|
2015-01-15 23:11:35 +00:00
|
|
|
// Dispatch mImage to main thread to prevent it from being destructed by the
|
|
|
|
// decode thread.
|
|
|
|
nsCOMPtr<nsIThread> mainThread = do_GetMainThread();
|
|
|
|
NS_WARN_IF_FALSE(mainThread, "Couldn't get the main thread!");
|
|
|
|
if (mainThread) {
|
|
|
|
// Handle ambiguous nsISupports inheritance.
|
|
|
|
RasterImage* rawImg = nullptr;
|
|
|
|
mImage.swap(rawImg);
|
|
|
|
DebugOnly<nsresult> rv =
|
|
|
|
NS_ProxyRelease(mainThread, NS_ISUPPORTS_CAST(ImageResource*, rawImg));
|
|
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv), "Failed to proxy release to main thread");
|
|
|
|
}
|
|
|
|
}
|
2010-08-23 02:30:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Common implementation of the decoder interface.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 15:22:31 +00:00
|
|
|
void
|
2011-09-27 16:24:03 +00:00
|
|
|
Decoder::Init()
|
2010-08-23 02:30:45 +00:00
|
|
|
{
|
2010-08-23 02:30:46 +00:00
|
|
|
// No re-initializing
|
2015-01-15 23:11:36 +00:00
|
|
|
MOZ_ASSERT(!mInitialized, "Can't re-initialize a decoder!");
|
2010-08-23 02:30:45 +00:00
|
|
|
|
2015-08-01 01:10:31 +00:00
|
|
|
// It doesn't make sense to decode anything but the first frame if we can't
|
|
|
|
// store anything in the SurfaceCache, since only the last frame we decode
|
|
|
|
// will be retrievable.
|
|
|
|
MOZ_ASSERT(ShouldUseSurfaceCache() || IsFirstFrameDecode());
|
|
|
|
|
2010-08-23 02:30:45 +00:00
|
|
|
// Implementation-specific initialization
|
2010-09-12 15:22:28 +00:00
|
|
|
InitInternal();
|
2013-02-02 01:06:30 +00:00
|
|
|
|
2010-08-23 02:30:45 +00:00
|
|
|
mInitialized = true;
|
|
|
|
}
|
|
|
|
|
2015-01-15 23:11:36 +00:00
|
|
|
nsresult
|
2015-08-19 21:04:01 +00:00
|
|
|
Decoder::Decode(IResumable* aOnResume)
|
2015-01-15 23:11:36 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mInitialized, "Should be initialized here");
|
|
|
|
MOZ_ASSERT(mIterator, "Should have a SourceBufferIterator");
|
|
|
|
|
2015-08-19 21:04:01 +00:00
|
|
|
// If no IResumable was provided, default to |this|.
|
|
|
|
IResumable* onResume = aOnResume ? aOnResume : this;
|
|
|
|
|
2015-01-15 23:11:36 +00:00
|
|
|
// We keep decoding chunks until the decode completes or there are no more
|
|
|
|
// chunks available.
|
|
|
|
while (!GetDecodeDone() && !HasError()) {
|
2015-08-19 21:04:01 +00:00
|
|
|
auto newState = mIterator->AdvanceOrScheduleResume(onResume);
|
2015-01-15 23:11:36 +00:00
|
|
|
|
|
|
|
if (newState == SourceBufferIterator::WAITING) {
|
|
|
|
// We can't continue because the rest of the data hasn't arrived from the
|
|
|
|
// network yet. We don't have to do anything special; the
|
|
|
|
// SourceBufferIterator will ensure that Decode() gets called again on a
|
|
|
|
// DecodePool thread when more data is available.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newState == SourceBufferIterator::COMPLETE) {
|
|
|
|
mDataDone = true;
|
|
|
|
|
|
|
|
nsresult finalStatus = mIterator->CompletionStatus();
|
|
|
|
if (NS_FAILED(finalStatus)) {
|
|
|
|
PostDataError();
|
|
|
|
}
|
|
|
|
|
2015-01-27 06:53:20 +00:00
|
|
|
CompleteDecode();
|
2015-01-15 23:11:36 +00:00
|
|
|
return finalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(newState == SourceBufferIterator::READY);
|
|
|
|
|
|
|
|
Write(mIterator->Data(), mIterator->Length());
|
|
|
|
}
|
|
|
|
|
2015-01-27 06:53:20 +00:00
|
|
|
CompleteDecode();
|
2015-01-15 23:11:36 +00:00
|
|
|
return HasError() ? NS_ERROR_FAILURE : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::Resume()
|
|
|
|
{
|
|
|
|
DecodePool* decodePool = DecodePool::Singleton();
|
|
|
|
MOZ_ASSERT(decodePool);
|
2015-05-15 00:08:26 +00:00
|
|
|
decodePool->AsyncDecode(this);
|
2015-01-15 23:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Decoder::ShouldSyncDecode(size_t aByteLimit)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aByteLimit > 0);
|
|
|
|
MOZ_ASSERT(mIterator, "Should have a SourceBufferIterator");
|
|
|
|
|
|
|
|
return mIterator->RemainingBytesIsNoMoreThan(aByteLimit);
|
|
|
|
}
|
|
|
|
|
2010-09-12 15:22:31 +00:00
|
|
|
void
|
2015-01-08 08:04:31 +00:00
|
|
|
Decoder::Write(const char* aBuffer, uint32_t aCount)
|
2010-08-23 02:30:45 +00:00
|
|
|
{
|
2014-05-23 21:12:29 +00:00
|
|
|
PROFILER_LABEL("ImageDecoder", "Write",
|
|
|
|
js::ProfileEntry::Category::GRAPHICS);
|
|
|
|
|
2015-07-11 02:26:15 +00:00
|
|
|
MOZ_ASSERT(aBuffer);
|
|
|
|
MOZ_ASSERT(aCount > 0);
|
|
|
|
|
2010-09-12 15:22:30 +00:00
|
|
|
// We're strict about decoder errors
|
2014-10-15 20:52:20 +00:00
|
|
|
MOZ_ASSERT(!HasDecoderError(),
|
|
|
|
"Not allowed to make more decoder calls after error!");
|
|
|
|
|
2014-11-18 20:06:26 +00:00
|
|
|
// Begin recording telemetry data.
|
|
|
|
TimeStamp start = TimeStamp::Now();
|
|
|
|
mChunkCount++;
|
|
|
|
|
2014-10-15 20:52:20 +00:00
|
|
|
// Keep track of the total number of bytes written.
|
|
|
|
mBytesDecoded += aCount;
|
2010-09-12 15:22:30 +00:00
|
|
|
|
2014-11-18 20:06:26 +00:00
|
|
|
// If a data error occured, just ignore future data.
|
2015-02-11 00:47:00 +00:00
|
|
|
if (HasDataError()) {
|
2010-09-12 15:22:31 +00:00
|
|
|
return;
|
2015-02-11 00:47:00 +00:00
|
|
|
}
|
2010-09-12 15:22:30 +00:00
|
|
|
|
2015-07-23 05:39:54 +00:00
|
|
|
if (IsMetadataDecode() && HasSize()) {
|
2013-03-23 15:05:55 +00:00
|
|
|
// More data came in since we found the size. We have nothing to do here.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-08 08:04:31 +00:00
|
|
|
// Pass the data along to the implementation.
|
|
|
|
WriteInternal(aBuffer, aCount);
|
2013-01-28 17:27:35 +00:00
|
|
|
|
2014-11-18 20:06:26 +00:00
|
|
|
// Finish telemetry.
|
|
|
|
mDecodeTime += (TimeStamp::Now() - start);
|
2010-08-23 02:30:45 +00:00
|
|
|
}
|
|
|
|
|
2010-09-12 15:22:31 +00:00
|
|
|
void
|
2015-01-27 06:53:20 +00:00
|
|
|
Decoder::CompleteDecode()
|
2010-08-23 02:30:45 +00:00
|
|
|
{
|
|
|
|
// Implementation-specific finalization
|
2015-02-11 00:47:00 +00:00
|
|
|
if (!HasError()) {
|
2010-09-12 15:22:30 +00:00
|
|
|
FinishInternal();
|
2015-07-11 02:26:15 +00:00
|
|
|
} else {
|
|
|
|
FinishWithErrorInternal();
|
2015-02-11 00:47:00 +00:00
|
|
|
}
|
2010-09-12 15:22:30 +00:00
|
|
|
|
|
|
|
// If the implementation left us mid-frame, finish that up.
|
2015-02-11 00:47:00 +00:00
|
|
|
if (mInFrame && !HasError()) {
|
2010-09-12 15:22:30 +00:00
|
|
|
PostFrameStop();
|
2015-02-11 00:47:00 +00:00
|
|
|
}
|
2010-09-12 15:22:30 +00:00
|
|
|
|
2015-01-15 23:11:36 +00:00
|
|
|
// If PostDecodeDone() has not been called, and this decoder wasn't aborted
|
|
|
|
// early because of low-memory conditions or losing a race with another
|
2015-01-27 06:53:20 +00:00
|
|
|
// decoder, we need to send teardown notifications (and report an error to the
|
|
|
|
// console later).
|
2015-07-23 05:39:54 +00:00
|
|
|
if (!IsMetadataDecode() && !mDecodeDone && !WasAborted()) {
|
2015-01-27 06:53:20 +00:00
|
|
|
mShouldReportError = true;
|
|
|
|
|
|
|
|
// If we only have a data error, we're usable if we have at least one
|
|
|
|
// complete frame.
|
|
|
|
if (!HasDecoderError() && GetCompleteFrameCount() > 0) {
|
|
|
|
// We're usable, so do exactly what we should have when the decoder
|
|
|
|
// completed.
|
2015-02-05 22:42:38 +00:00
|
|
|
|
|
|
|
// Not writing to the entire frame may have left us transparent.
|
|
|
|
PostHasTransparency();
|
|
|
|
|
2015-01-27 06:53:20 +00:00
|
|
|
if (mInFrame) {
|
|
|
|
PostFrameStop();
|
|
|
|
}
|
|
|
|
PostDecodeDone();
|
|
|
|
} else {
|
|
|
|
// We're not usable. Record some final progress indicating the error.
|
2015-07-23 05:39:54 +00:00
|
|
|
if (!IsMetadataDecode()) {
|
2015-06-19 22:55:12 +00:00
|
|
|
mProgress |= FLAG_DECODE_COMPLETE;
|
2015-01-27 06:53:20 +00:00
|
|
|
}
|
|
|
|
mProgress |= FLAG_HAS_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2015-07-31 14:29:10 +00:00
|
|
|
|
|
|
|
if (mDecodeDone && !IsMetadataDecode()) {
|
|
|
|
MOZ_ASSERT(HasError() || mCurrentFrame, "Should have an error or a frame");
|
|
|
|
|
|
|
|
// If this image wasn't animated and isn't a transient image, mark its frame
|
|
|
|
// as optimizable. We don't support optimizing animated images and
|
|
|
|
// optimizing transient images isn't worth it.
|
2015-08-15 00:56:44 +00:00
|
|
|
if (!HasAnimation() &&
|
|
|
|
!(mDecoderFlags & DecoderFlags::IMAGE_IS_TRANSIENT) &&
|
|
|
|
mCurrentFrame) {
|
2015-07-31 14:29:10 +00:00
|
|
|
mCurrentFrame->SetOptimizable();
|
|
|
|
}
|
|
|
|
}
|
2015-01-27 06:53:20 +00:00
|
|
|
}
|
2010-09-12 15:22:30 +00:00
|
|
|
|
2015-09-19 23:21:08 +00:00
|
|
|
nsresult
|
|
|
|
Decoder::SetTargetSize(const nsIntSize& aSize)
|
|
|
|
{
|
|
|
|
// Make sure the size is reasonable.
|
|
|
|
if (MOZ_UNLIKELY(aSize.width <= 0 || aSize.height <= 0)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a downscaler that we'll filter our output through.
|
|
|
|
mDownscaler.emplace(aSize);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-02-02 01:06:30 +00:00
|
|
|
nsresult
|
2015-07-11 02:26:15 +00:00
|
|
|
Decoder::AllocateFrame(uint32_t aFrameNum,
|
|
|
|
const nsIntSize& aTargetSize,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth)
|
2013-02-02 01:06:30 +00:00
|
|
|
{
|
2015-07-11 02:26:15 +00:00
|
|
|
mCurrentFrame = AllocateFrameInternal(aFrameNum, aTargetSize, aFrameRect,
|
2015-08-15 00:56:44 +00:00
|
|
|
aFormat, aPaletteDepth,
|
|
|
|
mCurrentFrame.get());
|
2013-06-07 20:42:57 +00:00
|
|
|
|
2014-11-26 21:22:10 +00:00
|
|
|
if (mCurrentFrame) {
|
|
|
|
// Gather the raw pointers the decoders will use.
|
|
|
|
mCurrentFrame->GetImageData(&mImageData, &mImageDataLength);
|
|
|
|
mCurrentFrame->GetPaletteData(&mColormap, &mColormapSize);
|
2014-11-26 10:57:09 +00:00
|
|
|
|
2015-07-11 02:26:15 +00:00
|
|
|
if (aFrameNum + 1 == mFrameCount) {
|
2015-08-14 07:37:13 +00:00
|
|
|
// If we're past the first frame, PostIsAnimated() should've been called.
|
|
|
|
MOZ_ASSERT_IF(mFrameCount > 1, HasAnimation());
|
|
|
|
|
|
|
|
// Update our state to reflect the new frame
|
|
|
|
MOZ_ASSERT(!mInFrame, "Starting new frame but not done with old one!");
|
|
|
|
mInFrame = true;
|
2014-11-26 21:22:10 +00:00
|
|
|
}
|
|
|
|
} else {
|
2013-02-27 19:23:08 +00:00
|
|
|
PostDataError();
|
2013-02-02 01:06:30 +00:00
|
|
|
}
|
|
|
|
|
2014-11-26 21:22:10 +00:00
|
|
|
return mCurrentFrame ? NS_OK : NS_ERROR_FAILURE;
|
2013-02-02 01:06:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 08:01:25 +00:00
|
|
|
RawAccessFrameRef
|
2015-07-11 02:26:15 +00:00
|
|
|
Decoder::AllocateFrameInternal(uint32_t aFrameNum,
|
|
|
|
const nsIntSize& aTargetSize,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame)
|
2015-01-08 08:01:25 +00:00
|
|
|
{
|
|
|
|
if (mDataError || NS_FAILED(mFailCode)) {
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-07-11 02:26:15 +00:00
|
|
|
if (aFrameNum != mFrameCount) {
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Allocating frames out of order");
|
2015-01-08 08:01:25 +00:00
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-01-18 22:02:14 +00:00
|
|
|
if (aTargetSize.width <= 0 || aTargetSize.height <= 0 ||
|
2015-01-08 08:01:25 +00:00
|
|
|
aFrameRect.width <= 0 || aFrameRect.height <= 0) {
|
|
|
|
NS_WARNING("Trying to add frame with zero or negative size");
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-05-06 05:19:30 +00:00
|
|
|
const uint32_t bytesPerPixel = aPaletteDepth == 0 ? 4 : 1;
|
2015-07-31 14:29:18 +00:00
|
|
|
if (ShouldUseSurfaceCache() &&
|
|
|
|
!SurfaceCache::CanHold(aFrameRect.Size(), bytesPerPixel)) {
|
2015-01-08 08:01:25 +00:00
|
|
|
NS_WARNING("Trying to add frame that's too large for the SurfaceCache");
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<imgFrame> frame = new imgFrame();
|
2015-08-15 00:56:44 +00:00
|
|
|
bool nonPremult = bool(mSurfaceFlags & SurfaceFlags::NO_PREMULTIPLY_ALPHA);
|
2015-01-18 22:02:14 +00:00
|
|
|
if (NS_FAILED(frame->InitForDecoder(aTargetSize, aFrameRect, aFormat,
|
2015-01-08 08:04:31 +00:00
|
|
|
aPaletteDepth, nonPremult))) {
|
2015-01-08 08:01:25 +00:00
|
|
|
NS_WARNING("imgFrame::Init should succeed");
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
RawAccessFrameRef ref = frame->RawAccessRef();
|
|
|
|
if (!ref) {
|
2015-01-12 03:28:02 +00:00
|
|
|
frame->Abort();
|
2015-01-08 08:01:25 +00:00
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-07-31 14:29:18 +00:00
|
|
|
if (ShouldUseSurfaceCache()) {
|
|
|
|
InsertOutcome outcome =
|
|
|
|
SurfaceCache::Insert(frame, ImageKey(mImage.get()),
|
|
|
|
RasterSurfaceKey(aTargetSize,
|
2015-08-15 00:56:44 +00:00
|
|
|
mSurfaceFlags,
|
2015-09-19 23:20:59 +00:00
|
|
|
aFrameNum));
|
2015-07-31 14:29:18 +00:00
|
|
|
if (outcome == InsertOutcome::FAILURE) {
|
|
|
|
// We couldn't insert the surface, almost certainly due to low memory. We
|
|
|
|
// treat this as a permanent error to help the system recover; otherwise,
|
|
|
|
// we might just end up attempting to decode this image again immediately.
|
|
|
|
ref->Abort();
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
} else if (outcome == InsertOutcome::FAILURE_ALREADY_PRESENT) {
|
|
|
|
// Another decoder beat us to decoding this frame. We abort this decoder
|
|
|
|
// rather than treat this as a real error.
|
|
|
|
mDecodeAborted = true;
|
|
|
|
ref->Abort();
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
2015-01-08 08:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIntRect refreshArea;
|
|
|
|
|
|
|
|
if (aFrameNum == 1) {
|
|
|
|
MOZ_ASSERT(aPreviousFrame, "Must provide a previous frame when animated");
|
|
|
|
aPreviousFrame->SetRawAccessOnly();
|
|
|
|
|
|
|
|
// If we dispose of the first frame by clearing it, then the first frame's
|
|
|
|
// refresh area is all of itself.
|
|
|
|
// RESTORE_PREVIOUS is invalid (assumed to be DISPOSE_CLEAR).
|
2015-01-08 08:04:31 +00:00
|
|
|
AnimationData previousFrameData = aPreviousFrame->GetAnimationData();
|
|
|
|
if (previousFrameData.mDisposalMethod == DisposalMethod::CLEAR ||
|
|
|
|
previousFrameData.mDisposalMethod == DisposalMethod::CLEAR_ALL ||
|
|
|
|
previousFrameData.mDisposalMethod == DisposalMethod::RESTORE_PREVIOUS) {
|
|
|
|
refreshArea = previousFrameData.mRect;
|
2015-01-08 08:01:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFrameNum > 0) {
|
|
|
|
ref->SetRawAccessOnly();
|
|
|
|
|
|
|
|
// Some GIFs are huge but only have a small area that they animate. We only
|
|
|
|
// need to refresh that small area when frame 0 comes around again.
|
|
|
|
refreshArea.UnionRect(refreshArea, frame->GetRect());
|
|
|
|
}
|
|
|
|
|
|
|
|
mFrameCount++;
|
2015-07-31 14:29:18 +00:00
|
|
|
|
|
|
|
if (mImage) {
|
|
|
|
mImage->OnAddedFrame(mFrameCount, refreshArea);
|
|
|
|
}
|
2015-01-08 08:01:25 +00:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2010-08-23 02:30:45 +00:00
|
|
|
/*
|
|
|
|
* Hook stubs. Override these as necessary in decoder implementations.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 15:22:30 +00:00
|
|
|
void Decoder::InitInternal() { }
|
|
|
|
void Decoder::FinishInternal() { }
|
2015-07-11 02:26:15 +00:00
|
|
|
void Decoder::FinishWithErrorInternal() { }
|
2010-08-23 02:30:45 +00:00
|
|
|
|
2010-08-23 02:30:46 +00:00
|
|
|
/*
|
|
|
|
* Progress Notifications
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2013-08-25 07:19:42 +00:00
|
|
|
Decoder::PostSize(int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
|
|
|
Orientation aOrientation /* = Orientation()*/)
|
2010-08-23 02:30:46 +00:00
|
|
|
{
|
|
|
|
// Validate
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(aWidth >= 0, "Width can't be negative!");
|
|
|
|
MOZ_ASSERT(aHeight >= 0, "Height can't be negative!");
|
2010-08-23 02:30:46 +00:00
|
|
|
|
|
|
|
// Tell the image
|
2013-08-25 07:19:42 +00:00
|
|
|
mImageMetadata.SetSize(aWidth, aHeight, aOrientation);
|
2010-08-23 02:30:46 +00:00
|
|
|
|
2014-11-15 04:06:19 +00:00
|
|
|
// Record this notification.
|
2014-11-17 22:29:56 +00:00
|
|
|
mProgress |= FLAG_SIZE_AVAILABLE;
|
2010-08-23 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 19:16:45 +00:00
|
|
|
void
|
|
|
|
Decoder::PostHasTransparency()
|
|
|
|
{
|
|
|
|
mProgress |= FLAG_HAS_TRANSPARENCY;
|
|
|
|
}
|
|
|
|
|
2010-08-23 02:30:46 +00:00
|
|
|
void
|
2015-08-14 07:37:13 +00:00
|
|
|
Decoder::PostIsAnimated(int32_t aFirstFrameTimeout)
|
2010-08-23 02:30:46 +00:00
|
|
|
{
|
2015-08-14 07:37:13 +00:00
|
|
|
mProgress |= FLAG_IS_ANIMATED;
|
|
|
|
mImageMetadata.SetHasAnimation();
|
|
|
|
mImageMetadata.SetFirstFrameTimeout(aFirstFrameTimeout);
|
2010-08-23 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-09-09 05:07:15 +00:00
|
|
|
Decoder::PostFrameStop(Opacity aFrameOpacity
|
|
|
|
/* = Opacity::SOME_TRANSPARENCY */,
|
2015-02-11 00:47:00 +00:00
|
|
|
DisposalMethod aDisposalMethod
|
2015-09-09 05:07:15 +00:00
|
|
|
/* = DisposalMethod::KEEP */,
|
2015-02-11 00:47:00 +00:00
|
|
|
int32_t aTimeout /* = 0 */,
|
2015-01-07 21:07:23 +00:00
|
|
|
BlendMethod aBlendMethod /* = BlendMethod::OVER */)
|
2010-08-23 02:30:46 +00:00
|
|
|
{
|
|
|
|
// We should be mid-frame
|
2015-07-23 05:39:54 +00:00
|
|
|
MOZ_ASSERT(!IsMetadataDecode(), "Stopping frame during metadata decode");
|
2014-11-15 04:10:48 +00:00
|
|
|
MOZ_ASSERT(mInFrame, "Stopping frame when we didn't start one");
|
|
|
|
MOZ_ASSERT(mCurrentFrame, "Stopping frame when we don't have one");
|
2010-08-23 02:30:46 +00:00
|
|
|
|
|
|
|
// Update our state
|
|
|
|
mInFrame = false;
|
|
|
|
|
2015-01-08 08:04:31 +00:00
|
|
|
mCurrentFrame->Finish(aFrameOpacity, aDisposalMethod, aTimeout, aBlendMethod);
|
2012-12-19 20:11:42 +00:00
|
|
|
|
2015-06-19 22:55:12 +00:00
|
|
|
mProgress |= FLAG_FRAME_COMPLETE;
|
2015-01-12 06:29:32 +00:00
|
|
|
|
|
|
|
// If we're not sending partial invalidations, then we send an invalidation
|
|
|
|
// here when the first frame is complete.
|
2015-08-15 00:56:44 +00:00
|
|
|
if (!ShouldSendPartialInvalidations() && !HasAnimation()) {
|
2015-01-18 22:02:13 +00:00
|
|
|
mInvalidRect.UnionRect(mInvalidRect,
|
2015-04-21 15:04:57 +00:00
|
|
|
gfx::IntRect(gfx::IntPoint(0, 0), GetSize()));
|
2015-01-12 06:29:32 +00:00
|
|
|
}
|
2010-08-23 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
2010-08-24 20:40:45 +00:00
|
|
|
void
|
2015-01-18 22:02:13 +00:00
|
|
|
Decoder::PostInvalidation(const nsIntRect& aRect,
|
|
|
|
const Maybe<nsIntRect>& aRectAtTargetSize
|
|
|
|
/* = Nothing() */)
|
2010-08-24 20:40:45 +00:00
|
|
|
{
|
|
|
|
// We should be mid-frame
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(mInFrame, "Can't invalidate when not mid-frame!");
|
|
|
|
MOZ_ASSERT(mCurrentFrame, "Can't invalidate when not mid-frame!");
|
2010-08-24 20:40:45 +00:00
|
|
|
|
2015-01-12 06:29:32 +00:00
|
|
|
// Record this invalidation, unless we're not sending partial invalidations
|
|
|
|
// or we're past the first frame.
|
2015-08-15 00:56:44 +00:00
|
|
|
if (ShouldSendPartialInvalidations() && !HasAnimation()) {
|
2015-01-12 06:29:32 +00:00
|
|
|
mInvalidRect.UnionRect(mInvalidRect, aRect);
|
2015-01-18 22:02:13 +00:00
|
|
|
mCurrentFrame->ImageUpdated(aRectAtTargetSize.valueOr(aRect));
|
2015-01-12 06:29:32 +00:00
|
|
|
}
|
2010-08-24 20:40:45 +00:00
|
|
|
}
|
|
|
|
|
2010-09-12 15:22:30 +00:00
|
|
|
void
|
2012-12-19 20:11:42 +00:00
|
|
|
Decoder::PostDecodeDone(int32_t aLoopCount /* = 0 */)
|
2010-09-12 15:22:30 +00:00
|
|
|
{
|
2015-07-23 05:39:54 +00:00
|
|
|
MOZ_ASSERT(!IsMetadataDecode(), "Done with decoding in metadata decode");
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(!mInFrame, "Can't be done decoding if we're mid-frame!");
|
|
|
|
MOZ_ASSERT(!mDecodeDone, "Decode already done!");
|
2010-09-12 15:22:30 +00:00
|
|
|
mDecodeDone = true;
|
|
|
|
|
2012-12-20 16:49:25 +00:00
|
|
|
mImageMetadata.SetLoopCount(aLoopCount);
|
2012-03-23 22:10:50 +00:00
|
|
|
|
2014-11-17 22:29:56 +00:00
|
|
|
mProgress |= FLAG_DECODE_COMPLETE;
|
2010-09-12 15:22:30 +00:00
|
|
|
}
|
|
|
|
|
2010-09-12 15:22:27 +00:00
|
|
|
void
|
|
|
|
Decoder::PostDataError()
|
|
|
|
{
|
|
|
|
mDataError = true;
|
2015-01-12 03:28:02 +00:00
|
|
|
|
|
|
|
if (mInFrame && mCurrentFrame) {
|
|
|
|
mCurrentFrame->Abort();
|
|
|
|
}
|
2010-09-12 15:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::PostDecoderError(nsresult aFailureCode)
|
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(NS_FAILED(aFailureCode), "Not a failure code!");
|
2010-09-12 15:22:27 +00:00
|
|
|
|
|
|
|
mFailCode = aFailureCode;
|
|
|
|
|
|
|
|
// XXXbholley - we should report the image URI here, but imgContainer
|
|
|
|
// needs to know its URI first
|
|
|
|
NS_WARNING("Image decoding error - This is probably a bug!");
|
2015-01-12 03:28:02 +00:00
|
|
|
|
|
|
|
if (mInFrame && mCurrentFrame) {
|
|
|
|
mCurrentFrame->Abort();
|
|
|
|
}
|
2015-01-11 19:43:32 +00:00
|
|
|
}
|
2015-01-11 04:47:38 +00:00
|
|
|
|
2015-02-03 15:05:49 +00:00
|
|
|
Telemetry::ID
|
|
|
|
Decoder::SpeedHistogram()
|
|
|
|
{
|
|
|
|
// Use HistogramCount as an invalid Histogram ID.
|
|
|
|
return Telemetry::HistogramCount;
|
|
|
|
}
|
|
|
|
|
2012-01-06 16:02:27 +00:00
|
|
|
} // namespace image
|
2010-08-23 02:30:45 +00:00
|
|
|
} // namespace mozilla
|