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"
|
2016-06-29 20:43:19 +00:00
|
|
|
#include "IDecodingTask.h"
|
2016-07-02 05:20:32 +00:00
|
|
|
#include "ISurfaceProvider.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
|
|
|
|
2016-07-11 07:03:42 +00:00
|
|
|
class MOZ_STACK_CLASS AutoRecordDecoderTelemetry final
|
|
|
|
{
|
|
|
|
public:
|
2016-07-11 07:44:39 +00:00
|
|
|
explicit AutoRecordDecoderTelemetry(Decoder* aDecoder)
|
2016-07-11 07:03:42 +00:00
|
|
|
: mDecoder(aDecoder)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mDecoder);
|
|
|
|
|
|
|
|
// Begin recording telemetry data.
|
|
|
|
mStartTime = TimeStamp::Now();
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoRecordDecoderTelemetry()
|
|
|
|
{
|
|
|
|
// Finish telemetry.
|
|
|
|
mDecoder->mDecodeTime += (TimeStamp::Now() - mStartTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Decoder* mDecoder;
|
|
|
|
TimeStamp mStartTime;
|
|
|
|
};
|
|
|
|
|
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)
|
2016-07-20 00:14:30 +00:00
|
|
|
, mLoopLength(FrameTimeout::Zero())
|
2015-08-15 00:56:44 +00:00
|
|
|
, mDecoderFlags(DefaultDecoderFlags())
|
|
|
|
, mSurfaceFlags(DefaultSurfaceFlags())
|
2015-07-31 14:29:00 +00:00
|
|
|
, mInitialized(false)
|
|
|
|
, mMetadataDecode(false)
|
2016-08-05 11:17:58 +00:00
|
|
|
, mHaveExplicitOutputSize(false)
|
2015-07-31 14:29:00 +00:00
|
|
|
, mInFrame(false)
|
2016-07-28 00:12:25 +00:00
|
|
|
, mFinishedNewFrame(false)
|
2016-07-11 07:42:56 +00:00
|
|
|
, mReachedTerminalState(false)
|
2012-01-02 20:23:41 +00:00
|
|
|
, mDecodeDone(false)
|
2016-07-11 08:09:10 +00:00
|
|
|
, mError(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.
|
2016-02-10 07:23:00 +00:00
|
|
|
NS_ReleaseOnMainThread(mImage.forget());
|
2015-01-15 23:11:35 +00:00
|
|
|
}
|
2010-08-23 02:30:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Common implementation of the decoder interface.
|
|
|
|
*/
|
|
|
|
|
2016-07-11 07:34:50 +00:00
|
|
|
nsresult
|
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
|
|
|
|
2016-07-03 05:21:00 +00:00
|
|
|
// All decoders must have a SourceBufferIterator.
|
|
|
|
MOZ_ASSERT(mIterator);
|
|
|
|
|
2016-08-05 11:17:58 +00:00
|
|
|
// Metadata decoders must not set an output size.
|
|
|
|
MOZ_ASSERT_IF(mMetadataDecode, !mHaveExplicitOutputSize);
|
|
|
|
|
2016-08-18 07:06:41 +00:00
|
|
|
// All decoders must be anonymous except for metadata decoders.
|
|
|
|
// XXX(seth): Soon that exception will be removed.
|
|
|
|
MOZ_ASSERT_IF(mImage, IsMetadataDecode());
|
2015-08-01 01:10:31 +00:00
|
|
|
|
2016-07-11 07:34:50 +00:00
|
|
|
// Implementation-specific initialization.
|
|
|
|
nsresult rv = InitInternal();
|
2013-02-02 01:06:30 +00:00
|
|
|
|
2010-08-23 02:30:45 +00:00
|
|
|
mInitialized = true;
|
2016-07-11 07:34:50 +00:00
|
|
|
|
|
|
|
return rv;
|
2010-08-23 02:30:45 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 06:46:35 +00:00
|
|
|
LexerResult
|
2016-07-15 05:39:39 +00:00
|
|
|
Decoder::Decode(IResumable* aOnResume /* = nullptr */)
|
2015-01-15 23:11:36 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mInitialized, "Should be initialized here");
|
|
|
|
MOZ_ASSERT(mIterator, "Should have a SourceBufferIterator");
|
|
|
|
|
2016-07-12 06:02:20 +00:00
|
|
|
// If we're already done, don't attempt to keep decoding.
|
|
|
|
if (GetDecodeDone()) {
|
2016-07-19 06:46:35 +00:00
|
|
|
return LexerResult(HasError() ? TerminalState::FAILURE
|
|
|
|
: TerminalState::SUCCESS);
|
2016-07-12 06:02:20 +00:00
|
|
|
}
|
|
|
|
|
2016-07-16 05:27:12 +00:00
|
|
|
LexerResult lexerResult(TerminalState::FAILURE);
|
2016-07-11 07:44:39 +00:00
|
|
|
{
|
2016-07-15 05:39:39 +00:00
|
|
|
PROFILER_LABEL("ImageDecoder", "Decode", js::ProfileEntry::Category::GRAPHICS);
|
2016-07-11 07:44:39 +00:00
|
|
|
AutoRecordDecoderTelemetry telemetry(this);
|
|
|
|
|
2016-07-16 05:27:12 +00:00
|
|
|
lexerResult = DoDecode(*mIterator, aOnResume);
|
|
|
|
};
|
2016-07-15 05:39:39 +00:00
|
|
|
|
2016-07-16 05:27:12 +00:00
|
|
|
if (lexerResult.is<Yield>()) {
|
2016-07-19 06:46:35 +00:00
|
|
|
// We either need more data to continue (in which case either @aOnResume or
|
|
|
|
// the caller will reschedule us to run again later), or the decoder is
|
|
|
|
// yielding to allow the caller access to some intermediate output.
|
|
|
|
return lexerResult;
|
2016-07-11 07:44:39 +00:00
|
|
|
}
|
2016-07-14 19:30:58 +00:00
|
|
|
|
2016-07-15 05:39:39 +00:00
|
|
|
// We reached a terminal state; we're now done decoding.
|
2016-07-16 05:27:12 +00:00
|
|
|
MOZ_ASSERT(lexerResult.is<TerminalState>());
|
2016-07-11 07:42:56 +00:00
|
|
|
mReachedTerminalState = true;
|
2016-07-12 06:19:58 +00:00
|
|
|
|
|
|
|
// If decoding failed, record that fact.
|
2016-07-16 05:27:12 +00:00
|
|
|
if (lexerResult.as<TerminalState>() == TerminalState::FAILURE) {
|
2016-07-11 08:09:10 +00:00
|
|
|
PostError();
|
2016-07-12 06:19:58 +00:00
|
|
|
}
|
2015-01-15 23:11:36 +00:00
|
|
|
|
2016-07-15 05:39:39 +00:00
|
|
|
// Perform final cleanup.
|
2016-07-14 19:30:58 +00:00
|
|
|
CompleteDecode();
|
2016-07-12 06:23:09 +00:00
|
|
|
|
2016-07-19 06:46:35 +00:00
|
|
|
return LexerResult(HasError() ? TerminalState::FAILURE
|
|
|
|
: TerminalState::SUCCESS);
|
2015-01-15 23:11:36 +00:00
|
|
|
}
|
|
|
|
|
2016-08-05 01:59:10 +00:00
|
|
|
LexerResult
|
|
|
|
Decoder::TerminateFailure()
|
|
|
|
{
|
|
|
|
PostError();
|
|
|
|
|
|
|
|
// Perform final cleanup if need be.
|
|
|
|
if (!mReachedTerminalState) {
|
|
|
|
mReachedTerminalState = true;
|
|
|
|
CompleteDecode();
|
|
|
|
}
|
|
|
|
|
|
|
|
return LexerResult(TerminalState::FAILURE);
|
|
|
|
}
|
|
|
|
|
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-27 06:53:20 +00:00
|
|
|
Decoder::CompleteDecode()
|
2010-08-23 02:30:45 +00:00
|
|
|
{
|
2016-07-11 07:38:54 +00:00
|
|
|
// Implementation-specific finalization.
|
|
|
|
nsresult rv = BeforeFinishInternal();
|
|
|
|
if (NS_FAILED(rv)) {
|
2016-07-11 08:09:10 +00:00
|
|
|
PostError();
|
2016-07-11 07:38:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rv = HasError() ? FinishWithErrorInternal()
|
|
|
|
: FinishInternal();
|
|
|
|
if (NS_FAILED(rv)) {
|
2016-07-11 08:09:10 +00:00
|
|
|
PostError();
|
2016-07-11 07:38:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If this was a metadata decode and we never got a size, the decode failed.
|
|
|
|
if (IsMetadataDecode() && !HasSize()) {
|
2016-07-11 08:09:10 +00:00
|
|
|
PostError();
|
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;
|
|
|
|
|
2016-07-11 07:34:50 +00:00
|
|
|
// Even if we encountered an error, we're still usable if we have at least
|
|
|
|
// one complete frame.
|
|
|
|
if (GetCompleteFrameCount() > 0) {
|
2015-01-27 06:53:20 +00:00
|
|
|
// 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
|
|
|
|
2016-08-05 11:17:58 +00:00
|
|
|
void
|
|
|
|
Decoder::SetOutputSize(const gfx::IntSize& aSize)
|
2015-09-19 23:21:08 +00:00
|
|
|
{
|
2016-08-05 11:17:58 +00:00
|
|
|
mOutputSize = Some(aSize);
|
|
|
|
mHaveExplicitOutputSize = true;
|
2015-09-19 23:21:08 +00:00
|
|
|
}
|
|
|
|
|
2016-08-05 11:17:58 +00:00
|
|
|
Maybe<gfx::IntSize>
|
|
|
|
Decoder::ExplicitOutputSize() const
|
2016-07-03 03:20:55 +00:00
|
|
|
{
|
2016-08-05 11:17:58 +00:00
|
|
|
MOZ_ASSERT_IF(mHaveExplicitOutputSize, mOutputSize);
|
|
|
|
return mHaveExplicitOutputSize ? mOutputSize : Nothing();
|
2016-07-03 03:20:55 +00:00
|
|
|
}
|
|
|
|
|
2016-07-28 00:12:25 +00:00
|
|
|
Maybe<uint32_t>
|
|
|
|
Decoder::TakeCompleteFrameCount()
|
|
|
|
{
|
|
|
|
const bool finishedNewFrame = mFinishedNewFrame;
|
|
|
|
mFinishedNewFrame = false;
|
|
|
|
return finishedNewFrame ? Some(GetCompleteFrameCount()) : Nothing();
|
|
|
|
}
|
|
|
|
|
2016-08-03 00:12:36 +00:00
|
|
|
DecoderFinalStatus
|
|
|
|
Decoder::FinalStatus() const
|
|
|
|
{
|
|
|
|
return DecoderFinalStatus(IsMetadataDecode(),
|
|
|
|
GetDecodeDone(),
|
|
|
|
WasAborted(),
|
|
|
|
HasError(),
|
|
|
|
ShouldReportError());
|
|
|
|
}
|
|
|
|
|
2016-08-02 23:34:23 +00:00
|
|
|
DecoderTelemetry
|
2016-08-02 23:45:22 +00:00
|
|
|
Decoder::Telemetry() const
|
2016-08-02 23:34:23 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mIterator);
|
|
|
|
return DecoderTelemetry(SpeedHistogram(),
|
|
|
|
mIterator->ByteCount(),
|
|
|
|
mIterator->ChunkCount(),
|
|
|
|
mDecodeTime);
|
|
|
|
}
|
|
|
|
|
2013-02-02 01:06:30 +00:00
|
|
|
nsresult
|
2015-07-11 02:26:15 +00:00
|
|
|
Decoder::AllocateFrame(uint32_t aFrameNum,
|
2016-08-05 11:17:58 +00:00
|
|
|
const gfx::IntSize& aOutputSize,
|
|
|
|
const gfx::IntRect& aFrameRect,
|
2015-07-11 02:26:15 +00:00
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth)
|
2013-02-02 01:06:30 +00:00
|
|
|
{
|
2016-08-05 11:17:58 +00:00
|
|
|
mCurrentFrame = AllocateFrameInternal(aFrameNum, aOutputSize, 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
|
|
|
|
2016-07-31 21:41:10 +00:00
|
|
|
// We should now be on |aFrameNum|. (Note that we're comparing the frame
|
|
|
|
// number, which is zero-based, with the frame count, which is one-based.)
|
|
|
|
MOZ_ASSERT(aFrameNum + 1 == mFrameCount);
|
2015-08-14 07:37:13 +00:00
|
|
|
|
2016-07-31 21:41:10 +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;
|
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,
|
2016-08-05 11:17:58 +00:00
|
|
|
const gfx::IntSize& aOutputSize,
|
|
|
|
const gfx::IntRect& aFrameRect,
|
2015-07-11 02:26:15 +00:00
|
|
|
SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame)
|
2015-01-08 08:01:25 +00:00
|
|
|
{
|
2016-07-11 07:34:50 +00:00
|
|
|
if (HasError()) {
|
2015-01-08 08:01:25 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2016-08-05 11:17:58 +00:00
|
|
|
if (aOutputSize.width <= 0 || aOutputSize.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();
|
|
|
|
}
|
|
|
|
|
2016-07-02 05:20:32 +00:00
|
|
|
NotNull<RefPtr<imgFrame>> frame = WrapNotNull(new imgFrame());
|
2015-08-15 00:56:44 +00:00
|
|
|
bool nonPremult = bool(mSurfaceFlags & SurfaceFlags::NO_PREMULTIPLY_ALPHA);
|
2016-08-05 11:17:58 +00:00
|
|
|
if (NS_FAILED(frame->InitForDecoder(aOutputSize, 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();
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2016-07-20 06:35:41 +00:00
|
|
|
mFirstFrameRefreshArea = 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.
|
2016-07-20 06:35:41 +00:00
|
|
|
mFirstFrameRefreshArea.UnionRect(mFirstFrameRefreshArea, frame->GetRect());
|
2015-01-08 08:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mFrameCount++;
|
2015-07-31 14:29:18 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2016-07-11 07:34:50 +00:00
|
|
|
nsresult Decoder::InitInternal() { return NS_OK; }
|
2016-07-11 07:38:54 +00:00
|
|
|
nsresult Decoder::BeforeFinishInternal() { return NS_OK; }
|
|
|
|
nsresult Decoder::FinishInternal() { return NS_OK; }
|
|
|
|
nsresult Decoder::FinishWithErrorInternal() { return NS_OK; }
|
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
|
|
|
{
|
2016-08-05 11:17:58 +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
|
|
|
|
2016-08-05 11:17:58 +00:00
|
|
|
// Set our intrinsic size.
|
2013-08-25 07:19:42 +00:00
|
|
|
mImageMetadata.SetSize(aWidth, aHeight, aOrientation);
|
2010-08-23 02:30:46 +00:00
|
|
|
|
2016-08-05 11:17:58 +00:00
|
|
|
// Set our output size if it's not already set.
|
|
|
|
if (!mOutputSize) {
|
|
|
|
mOutputSize = Some(IntSize(aWidth, aHeight));
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(mOutputSize->width <= aWidth && mOutputSize->height <= aHeight,
|
|
|
|
"Output size will result in upscaling");
|
|
|
|
|
|
|
|
// Create a downscaler if we need to downscale. This is used by legacy
|
|
|
|
// decoders that haven't been converted to use SurfacePipe yet.
|
|
|
|
// XXX(seth): Obviously, we'll remove this once all decoders use SurfacePipe.
|
|
|
|
if (mOutputSize->width < aWidth || mOutputSize->height < aHeight) {
|
|
|
|
mDownscaler.emplace(*mOutputSize);
|
|
|
|
}
|
|
|
|
|
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
|
2016-07-19 23:22:34 +00:00
|
|
|
Decoder::PostIsAnimated(FrameTimeout 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 */,
|
2016-07-20 00:14:30 +00:00
|
|
|
FrameTimeout aTimeout /* = FrameTimeout::Forever() */,
|
2016-06-24 22:20:32 +00:00
|
|
|
BlendMethod aBlendMethod /* = BlendMethod::OVER */,
|
|
|
|
const Maybe<nsIntRect>& aBlendRect /* = Nothing() */)
|
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
|
|
|
|
2016-07-28 00:12:25 +00:00
|
|
|
// Update our state.
|
2010-08-23 02:30:46 +00:00
|
|
|
mInFrame = false;
|
2016-07-28 00:12:25 +00:00
|
|
|
mFinishedNewFrame = true;
|
2010-08-23 02:30:46 +00:00
|
|
|
|
2016-06-24 22:20:32 +00:00
|
|
|
mCurrentFrame->Finish(aFrameOpacity, aDisposalMethod, aTimeout,
|
|
|
|
aBlendMethod, aBlendRect);
|
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
|
|
|
|
2016-07-20 00:14:30 +00:00
|
|
|
mLoopLength += aTimeout;
|
|
|
|
|
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.
|
2016-05-07 20:54:39 +00:00
|
|
|
if (!ShouldSendPartialInvalidations() && mFrameCount == 1) {
|
2015-01-18 22:02:13 +00:00
|
|
|
mInvalidRect.UnionRect(mInvalidRect,
|
2016-07-29 21:11:19 +00:00
|
|
|
IntRect(IntPoint(), Size()));
|
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
|
2016-08-05 11:17:58 +00:00
|
|
|
Decoder::PostInvalidation(const gfx::IntRect& aRect,
|
|
|
|
const Maybe<gfx::IntRect>& aRectAtOutputSize
|
2015-01-18 22:02:13 +00:00
|
|
|
/* = 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.
|
2016-05-07 20:54:39 +00:00
|
|
|
if (ShouldSendPartialInvalidations() && mFrameCount == 1) {
|
2015-01-12 06:29:32 +00:00
|
|
|
mInvalidRect.UnionRect(mInvalidRect, aRect);
|
2016-08-05 11:17:58 +00:00
|
|
|
mCurrentFrame->ImageUpdated(aRectAtOutputSize.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
|
|
|
|
2016-07-20 06:35:41 +00:00
|
|
|
// Some metadata that we track should take into account every frame in the
|
|
|
|
// image. If this is a first-frame-only decode, our accumulated loop length
|
|
|
|
// and first frame refresh area only includes the first frame, so it's not
|
|
|
|
// correct and we don't record it.
|
2016-07-20 00:14:30 +00:00
|
|
|
if (!IsFirstFrameDecode()) {
|
|
|
|
mImageMetadata.SetLoopLength(mLoopLength);
|
2016-07-20 06:35:41 +00:00
|
|
|
mImageMetadata.SetFirstFrameRefreshArea(mFirstFrameRefreshArea);
|
2016-07-20 00:14:30 +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
|
2016-07-11 08:09:10 +00:00
|
|
|
Decoder::PostError()
|
2010-09-12 15:22:27 +00:00
|
|
|
{
|
2016-07-11 08:09:10 +00:00
|
|
|
mError = true;
|
2015-01-12 03:28:02 +00:00
|
|
|
|
|
|
|
if (mInFrame && mCurrentFrame) {
|
|
|
|
mCurrentFrame->Abort();
|
|
|
|
}
|
2010-09-12 15:22:27 +00:00
|
|
|
}
|
|
|
|
|
2012-01-06 16:02:27 +00:00
|
|
|
} // namespace image
|
2010-08-23 02:30:45 +00:00
|
|
|
} // namespace mozilla
|