2010-08-23 06:30:45 +04: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/. */
|
2010-08-23 06:30:45 +04:00
|
|
|
|
|
|
|
#include "Decoder.h"
|
2015-01-08 11:01:25 +03:00
|
|
|
|
|
|
|
#include "mozilla/gfx/2D.h"
|
2015-01-16 02:11:36 +03:00
|
|
|
#include "DecodePool.h"
|
|
|
|
#include "GeckoProfiler.h"
|
2015-01-08 11:01:25 +03:00
|
|
|
#include "imgIContainer.h"
|
2010-09-12 19:22:31 +04:00
|
|
|
#include "nsIConsoleService.h"
|
2010-12-20 19:21:59 +03:00
|
|
|
#include "nsIScriptError.h"
|
2015-01-16 02:11:36 +03:00
|
|
|
#include "nsProxyRelease.h"
|
2013-09-07 17:01:08 +04:00
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
2015-02-03 18:05:49 +03:00
|
|
|
#include "mozilla/Telemetry.h"
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2015-01-08 11:01:25 +03:00
|
|
|
using mozilla::gfx::IntSize;
|
|
|
|
using mozilla::gfx::SurfaceFormat;
|
|
|
|
|
2010-08-23 06:30:45 +04:00
|
|
|
namespace mozilla {
|
2012-01-06 20:02:27 +04:00
|
|
|
namespace image {
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2015-01-16 02:11:35 +03:00
|
|
|
Decoder::Decoder(RasterImage* aImage)
|
2011-09-29 17:17:13 +04:00
|
|
|
: mImage(aImage)
|
2014-11-15 07:10:47 +03:00
|
|
|
, mProgress(NoProgress)
|
2013-01-28 21:26:36 +04:00
|
|
|
, mImageData(nullptr)
|
|
|
|
, mColormap(nullptr)
|
2014-11-18 23:06:26 +03:00
|
|
|
, mChunkCount(0)
|
2015-02-03 08:40:35 +03:00
|
|
|
, mFlags(0)
|
2014-10-16 00:52:20 +04:00
|
|
|
, mBytesDecoded(0)
|
2015-01-12 09:29:32 +03:00
|
|
|
, mSendPartialInvalidations(false)
|
2015-01-16 02:11:36 +03:00
|
|
|
, mDataDone(false)
|
2012-01-03 00:23:41 +04:00
|
|
|
, mDecodeDone(false)
|
|
|
|
, mDataError(false)
|
2015-01-16 02:11:36 +03:00
|
|
|
, mDecodeAborted(false)
|
2015-01-27 09:53:20 +03:00
|
|
|
, mShouldReportError(false)
|
2015-01-16 02:11:36 +03:00
|
|
|
, mImageIsTransient(false)
|
2015-01-25 07:26:40 +03:00
|
|
|
, mImageIsLocked(false)
|
2011-01-13 04:45:13 +03:00
|
|
|
, mFrameCount(0)
|
2010-09-12 19:22:27 +04:00
|
|
|
, mFailCode(NS_OK)
|
2015-01-11 22:43:32 +03:00
|
|
|
, mNeedsNewFrame(false)
|
|
|
|
, mNeedsToFlushData(false)
|
2010-08-23 06:30:46 +04:00
|
|
|
, mInitialized(false)
|
2010-08-23 06:30:46 +04:00
|
|
|
, mSizeDecode(false)
|
2010-08-23 06:30:46 +04:00
|
|
|
, mInFrame(false)
|
2011-11-10 01:39:16 +04:00
|
|
|
, mIsAnimated(false)
|
2014-11-15 07:06:19 +03:00
|
|
|
{ }
|
2010-08-23 06:30:45 +04:00
|
|
|
|
|
|
|
Decoder::~Decoder()
|
|
|
|
{
|
2014-11-18 12:48:49 +03:00
|
|
|
MOZ_ASSERT(mProgress == NoProgress,
|
|
|
|
"Destroying Decoder without taking all its progress changes");
|
|
|
|
MOZ_ASSERT(mInvalidRect.IsEmpty(),
|
|
|
|
"Destroying Decoder without taking all its invalidations");
|
2010-08-23 06:30:45 +04:00
|
|
|
mInitialized = false;
|
2015-01-16 02:11:35 +03:00
|
|
|
|
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
// 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 06:30:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Common implementation of the decoder interface.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 19:22:31 +04:00
|
|
|
void
|
2011-09-27 20:24:03 +04:00
|
|
|
Decoder::Init()
|
2010-08-23 06:30:45 +04:00
|
|
|
{
|
2010-08-23 06:30:46 +04:00
|
|
|
// No re-initializing
|
2015-01-16 02:11:36 +03:00
|
|
|
MOZ_ASSERT(!mInitialized, "Can't re-initialize a decoder!");
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2013-01-26 06:39:11 +04:00
|
|
|
// Fire OnStartDecode at init time to support bug 512435.
|
2014-11-15 07:06:19 +03:00
|
|
|
if (!IsSizeDecode()) {
|
2014-11-15 07:10:47 +03:00
|
|
|
mProgress |= FLAG_DECODE_STARTED | FLAG_ONLOAD_BLOCKED;
|
2014-11-15 07:06:19 +03:00
|
|
|
}
|
2013-01-26 06:39:11 +04:00
|
|
|
|
2010-08-23 06:30:45 +04:00
|
|
|
// Implementation-specific initialization
|
2010-09-12 19:22:28 +04:00
|
|
|
InitInternal();
|
2013-02-02 05:06:30 +04:00
|
|
|
|
2010-08-23 06:30:45 +04:00
|
|
|
mInitialized = true;
|
|
|
|
}
|
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
// Initializes a decoder whose image and observer is already being used by a
|
|
|
|
// parent decoder
|
2015-01-11 16:34:20 +03:00
|
|
|
void
|
2015-01-11 22:43:32 +03:00
|
|
|
Decoder::InitSharedDecoder(uint8_t* aImageData, uint32_t aImageDataLength,
|
|
|
|
uint32_t* aColormap, uint32_t aColormapSize,
|
|
|
|
RawAccessFrameRef&& aFrameRef)
|
2015-01-11 16:34:20 +03:00
|
|
|
{
|
2015-01-11 22:43:32 +03:00
|
|
|
// No re-initializing
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!mInitialized, "Can't re-initialize a decoder!");
|
2015-01-11 16:34:20 +03:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
mImageData = aImageData;
|
|
|
|
mImageDataLength = aImageDataLength;
|
|
|
|
mColormap = aColormap;
|
|
|
|
mColormapSize = aColormapSize;
|
|
|
|
mCurrentFrame = Move(aFrameRef);
|
2015-01-11 16:34:20 +03:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
// We have all the frame data, so we've started the frame.
|
|
|
|
if (!IsSizeDecode()) {
|
|
|
|
mFrameCount++;
|
|
|
|
PostFrameStart();
|
|
|
|
}
|
2015-01-11 16:34:20 +03:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
// Implementation-specific initialization
|
|
|
|
InitInternal();
|
|
|
|
mInitialized = true;
|
2015-01-11 16:34:20 +03:00
|
|
|
}
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
nsresult
|
|
|
|
Decoder::Decode()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mInitialized, "Should be initialized here");
|
|
|
|
MOZ_ASSERT(mIterator, "Should have a SourceBufferIterator");
|
|
|
|
|
|
|
|
// We keep decoding chunks until the decode completes or there are no more
|
|
|
|
// chunks available.
|
|
|
|
while (!GetDecodeDone() && !HasError()) {
|
|
|
|
auto newState = mIterator->AdvanceOrScheduleResume(this);
|
|
|
|
|
|
|
|
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 09:53:20 +03:00
|
|
|
CompleteDecode();
|
2015-01-16 02:11:36 +03:00
|
|
|
return finalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(newState == SourceBufferIterator::READY);
|
|
|
|
|
|
|
|
Write(mIterator->Data(), mIterator->Length());
|
|
|
|
}
|
|
|
|
|
2015-01-27 09:53:20 +03:00
|
|
|
CompleteDecode();
|
2015-01-16 02:11:36 +03:00
|
|
|
return HasError() ? NS_ERROR_FAILURE : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::Resume()
|
|
|
|
{
|
|
|
|
DecodePool* decodePool = DecodePool::Singleton();
|
|
|
|
MOZ_ASSERT(decodePool);
|
2015-05-15 03:08:26 +03:00
|
|
|
decodePool->AsyncDecode(this);
|
2015-01-16 02:11:36 +03: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 19:22:31 +04:00
|
|
|
void
|
2015-01-08 11:04:31 +03:00
|
|
|
Decoder::Write(const char* aBuffer, uint32_t aCount)
|
2010-08-23 06:30:45 +04:00
|
|
|
{
|
2014-05-24 01:12:29 +04:00
|
|
|
PROFILER_LABEL("ImageDecoder", "Write",
|
|
|
|
js::ProfileEntry::Category::GRAPHICS);
|
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
// We're strict about decoder errors
|
2014-10-16 00:52:20 +04:00
|
|
|
MOZ_ASSERT(!HasDecoderError(),
|
|
|
|
"Not allowed to make more decoder calls after error!");
|
|
|
|
|
2014-11-18 23:06:26 +03:00
|
|
|
// Begin recording telemetry data.
|
|
|
|
TimeStamp start = TimeStamp::Now();
|
|
|
|
mChunkCount++;
|
|
|
|
|
2014-10-16 00:52:20 +04:00
|
|
|
// Keep track of the total number of bytes written.
|
|
|
|
mBytesDecoded += aCount;
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
// If we're flushing data, clear the flag.
|
|
|
|
if (aBuffer == nullptr && aCount == 0) {
|
|
|
|
MOZ_ASSERT(mNeedsToFlushData, "Flushing when we don't need to");
|
|
|
|
mNeedsToFlushData = false;
|
|
|
|
}
|
|
|
|
|
2014-11-18 23:06:26 +03:00
|
|
|
// If a data error occured, just ignore future data.
|
2015-02-11 03:47:00 +03:00
|
|
|
if (HasDataError()) {
|
2010-09-12 19:22:31 +04:00
|
|
|
return;
|
2015-02-11 03:47:00 +03:00
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2013-03-23 19:05:55 +04:00
|
|
|
if (IsSizeDecode() && HasSize()) {
|
|
|
|
// More data came in since we found the size. We have nothing to do here.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
MOZ_ASSERT(!NeedsNewFrame() || HasDataError(),
|
|
|
|
"Should not need a new frame before writing anything");
|
|
|
|
MOZ_ASSERT(!NeedsToFlushData() || HasDataError(),
|
|
|
|
"Should not need to flush data before writing anything");
|
|
|
|
|
2015-01-08 11:04:31 +03:00
|
|
|
// Pass the data along to the implementation.
|
|
|
|
WriteInternal(aBuffer, aCount);
|
2013-01-28 21:27:35 +04:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
// If we need a new frame to proceed, let's create one and call it again.
|
|
|
|
while (NeedsNewFrame() && !HasDataError()) {
|
|
|
|
MOZ_ASSERT(!IsSizeDecode(), "Shouldn't need new frame for size decode");
|
|
|
|
|
|
|
|
nsresult rv = AllocateFrame();
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// Use the data we saved when we asked for a new frame.
|
|
|
|
WriteInternal(nullptr, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
mNeedsToFlushData = false;
|
|
|
|
}
|
|
|
|
|
2014-11-18 23:06:26 +03:00
|
|
|
// Finish telemetry.
|
|
|
|
mDecodeTime += (TimeStamp::Now() - start);
|
2010-08-23 06:30:45 +04:00
|
|
|
}
|
|
|
|
|
2010-09-12 19:22:31 +04:00
|
|
|
void
|
2015-01-27 09:53:20 +03:00
|
|
|
Decoder::CompleteDecode()
|
2010-08-23 06:30:45 +04:00
|
|
|
{
|
|
|
|
// Implementation-specific finalization
|
2015-02-11 03:47:00 +03:00
|
|
|
if (!HasError()) {
|
2010-09-12 19:22:30 +04:00
|
|
|
FinishInternal();
|
2015-02-11 03:47:00 +03:00
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
|
|
|
|
// If the implementation left us mid-frame, finish that up.
|
2015-02-11 03:47:00 +03:00
|
|
|
if (mInFrame && !HasError()) {
|
2010-09-12 19:22:30 +04:00
|
|
|
PostFrameStop();
|
2015-02-11 03:47:00 +03:00
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2015-01-16 02:11:36 +03: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 09:53:20 +03:00
|
|
|
// decoder, we need to send teardown notifications (and report an error to the
|
|
|
|
// console later).
|
2015-01-16 02:11:36 +03:00
|
|
|
if (!IsSizeDecode() && !mDecodeDone && !WasAborted()) {
|
2015-01-27 09:53:20 +03: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-06 01:42:38 +03:00
|
|
|
|
|
|
|
// Not writing to the entire frame may have left us transparent.
|
|
|
|
PostHasTransparency();
|
|
|
|
|
2015-01-27 09:53:20 +03:00
|
|
|
if (mInFrame) {
|
|
|
|
PostFrameStop();
|
|
|
|
}
|
|
|
|
PostDecodeDone();
|
|
|
|
} else {
|
|
|
|
// We're not usable. Record some final progress indicating the error.
|
|
|
|
if (!IsSizeDecode()) {
|
|
|
|
mProgress |= FLAG_DECODE_COMPLETE | FLAG_ONLOAD_UNBLOCKED;
|
|
|
|
}
|
|
|
|
mProgress |= FLAG_HAS_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2015-01-27 09:53:20 +03:00
|
|
|
void
|
|
|
|
Decoder::Finish()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
MOZ_ASSERT(HasError() || !mInFrame, "Finishing while we're still in a frame");
|
|
|
|
|
|
|
|
// If we detected an error in CompleteDecode(), log it to the error console.
|
|
|
|
if (mShouldReportError && !WasAborted()) {
|
2010-12-20 19:21:59 +03:00
|
|
|
nsCOMPtr<nsIConsoleService> consoleService =
|
|
|
|
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
2011-12-22 01:51:29 +04:00
|
|
|
nsCOMPtr<nsIScriptError> errorObject =
|
2010-12-20 19:21:59 +03:00
|
|
|
do_CreateInstance(NS_SCRIPTERROR_CONTRACTID);
|
|
|
|
|
2012-11-17 01:58:11 +04:00
|
|
|
if (consoleService && errorObject && !HasDecoderError()) {
|
2015-05-21 23:23:42 +03:00
|
|
|
nsAutoString msg(NS_LITERAL_STRING("Image corrupt or truncated."));
|
|
|
|
nsAutoString src;
|
|
|
|
if (mImage->GetURI()) {
|
|
|
|
nsCString uri;
|
|
|
|
if (mImage->GetURI()->GetSpecTruncatedTo1k(uri) == ImageURL::TruncatedTo1k) {
|
|
|
|
msg += NS_LITERAL_STRING(" URI in this note truncated due to length.");
|
|
|
|
}
|
|
|
|
src = NS_ConvertUTF8toUTF16(uri);
|
|
|
|
}
|
2011-12-22 01:51:29 +04:00
|
|
|
if (NS_SUCCEEDED(errorObject->InitWithWindowID(
|
2012-09-10 03:29:12 +04:00
|
|
|
msg,
|
2015-05-21 23:23:42 +03:00
|
|
|
src,
|
2012-09-10 03:29:12 +04:00
|
|
|
EmptyString(), 0, 0, nsIScriptError::errorFlag,
|
2015-01-16 02:11:35 +03:00
|
|
|
"Image", mImage->InnerWindowID()
|
2011-12-22 01:51:29 +04:00
|
|
|
))) {
|
|
|
|
consoleService->LogMessage(errorObject);
|
|
|
|
}
|
2010-09-12 19:22:31 +04:00
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
}
|
2013-01-19 01:47:18 +04:00
|
|
|
|
2014-11-27 00:22:10 +03:00
|
|
|
// Set image metadata before calling DecodingComplete, because
|
|
|
|
// DecodingComplete calls Optimize().
|
2015-01-16 02:11:35 +03:00
|
|
|
mImageMetadata.SetOnImage(mImage);
|
2015-01-12 12:20:23 +03:00
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
if (HasSize()) {
|
|
|
|
SetSizeOnImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mDecodeDone && !IsSizeDecode()) {
|
2014-11-27 00:22:10 +03:00
|
|
|
MOZ_ASSERT(HasError() || mCurrentFrame, "Should have an error or a frame");
|
2015-01-16 02:11:36 +03:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
if (!mIsAnimated && !mImageIsTransient && mCurrentFrame) {
|
|
|
|
mCurrentFrame->SetOptimizable();
|
|
|
|
}
|
|
|
|
|
|
|
|
mImage->OnDecodingComplete();
|
2015-01-11 22:43:32 +03:00
|
|
|
}
|
|
|
|
}
|
2015-01-11 16:34:20 +03:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
void
|
|
|
|
Decoder::FinishSharedDecoder()
|
|
|
|
{
|
|
|
|
if (!HasError()) {
|
|
|
|
FinishInternal();
|
2015-01-10 05:48:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-02 05:06:30 +04:00
|
|
|
nsresult
|
2015-01-19 01:02:14 +03:00
|
|
|
Decoder::AllocateFrame(const nsIntSize& aTargetSize /* = nsIntSize() */)
|
2013-02-02 05:06:30 +04:00
|
|
|
{
|
2015-01-11 22:43:32 +03:00
|
|
|
MOZ_ASSERT(mNeedsNewFrame);
|
|
|
|
|
2015-01-19 01:02:14 +03:00
|
|
|
nsIntSize targetSize = aTargetSize;
|
|
|
|
if (targetSize == nsIntSize()) {
|
|
|
|
MOZ_ASSERT(HasSize());
|
|
|
|
targetSize = mImageMetadata.GetSize();
|
|
|
|
}
|
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
mCurrentFrame = EnsureFrame(mNewFrameData.mFrameNum,
|
2015-01-19 01:02:14 +03:00
|
|
|
targetSize,
|
2015-01-11 22:43:32 +03:00
|
|
|
mNewFrameData.mFrameRect,
|
2015-02-03 08:40:35 +03:00
|
|
|
GetDecodeFlags(),
|
2015-01-11 22:43:32 +03:00
|
|
|
mNewFrameData.mFormat,
|
|
|
|
mNewFrameData.mPaletteDepth,
|
|
|
|
mCurrentFrame.get());
|
2013-06-08 00:42:57 +04:00
|
|
|
|
2014-11-27 00:22:10 +03:00
|
|
|
if (mCurrentFrame) {
|
|
|
|
// Gather the raw pointers the decoders will use.
|
|
|
|
mCurrentFrame->GetImageData(&mImageData, &mImageDataLength);
|
|
|
|
mCurrentFrame->GetPaletteData(&mColormap, &mColormapSize);
|
2014-11-26 13:57:09 +03:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
if (mNewFrameData.mFrameNum + 1 == mFrameCount) {
|
2014-11-27 00:22:10 +03:00
|
|
|
PostFrameStart();
|
|
|
|
}
|
|
|
|
} else {
|
2013-02-27 23:23:08 +04:00
|
|
|
PostDataError();
|
2013-02-02 05:06:30 +04:00
|
|
|
}
|
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
// Mark ourselves as not needing another frame before talking to anyone else
|
|
|
|
// so they can tell us if they need yet another.
|
|
|
|
mNeedsNewFrame = false;
|
|
|
|
|
|
|
|
// If we've received any data at all, we may have pending data that needs to
|
|
|
|
// be flushed now that we have a frame to decode into.
|
|
|
|
if (mBytesDecoded > 0) {
|
|
|
|
mNeedsToFlushData = true;
|
|
|
|
}
|
|
|
|
|
2014-11-27 00:22:10 +03:00
|
|
|
return mCurrentFrame ? NS_OK : NS_ERROR_FAILURE;
|
2013-02-02 05:06:30 +04:00
|
|
|
}
|
|
|
|
|
2015-01-08 11:01:25 +03:00
|
|
|
RawAccessFrameRef
|
2015-01-11 22:43:32 +03:00
|
|
|
Decoder::EnsureFrame(uint32_t aFrameNum,
|
2015-01-19 01:02:14 +03:00
|
|
|
const nsIntSize& aTargetSize,
|
2015-01-11 22:43:32 +03:00
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
uint32_t aDecodeFlags,
|
|
|
|
SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame)
|
2015-01-08 11:01:25 +03:00
|
|
|
{
|
|
|
|
if (mDataError || NS_FAILED(mFailCode)) {
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
MOZ_ASSERT(aFrameNum <= mFrameCount, "Invalid frame index!");
|
|
|
|
if (aFrameNum > mFrameCount) {
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adding a frame that doesn't already exist. This is the normal case.
|
|
|
|
if (aFrameNum == mFrameCount) {
|
2015-01-19 01:02:14 +03:00
|
|
|
return InternalAddFrame(aFrameNum, aTargetSize, aFrameRect, aDecodeFlags,
|
|
|
|
aFormat, aPaletteDepth, aPreviousFrame);
|
2015-01-11 22:43:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// We're replacing a frame. It must be the first frame; there's no reason to
|
|
|
|
// ever replace any other frame, since the first frame is the only one we
|
|
|
|
// speculatively allocate without knowing what the decoder really needs.
|
|
|
|
// XXX(seth): I'm not convinced there's any reason to support this at all. We
|
|
|
|
// should figure out how to avoid triggering this and rip it out.
|
|
|
|
MOZ_ASSERT(aFrameNum == 0, "Replacing a frame other than the first?");
|
|
|
|
MOZ_ASSERT(mFrameCount == 1, "Should have only one frame");
|
|
|
|
MOZ_ASSERT(aPreviousFrame, "Need the previous frame to replace");
|
|
|
|
if (aFrameNum != 0 || !aPreviousFrame || mFrameCount != 1) {
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(!aPreviousFrame->GetRect().IsEqualEdges(aFrameRect) ||
|
|
|
|
aPreviousFrame->GetFormat() != aFormat ||
|
|
|
|
aPreviousFrame->GetPaletteDepth() != aPaletteDepth,
|
|
|
|
"Replacing first frame with the same kind of frame?");
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
// Reset our state.
|
2015-01-11 22:43:32 +03:00
|
|
|
mInFrame = false;
|
2015-01-16 02:11:36 +03:00
|
|
|
RawAccessFrameRef ref = Move(mCurrentFrame);
|
|
|
|
|
|
|
|
MOZ_ASSERT(ref, "No ref to current frame?");
|
|
|
|
|
|
|
|
// Reinitialize the old frame.
|
2015-03-29 17:59:15 +03:00
|
|
|
nsIntSize oldSize = aPreviousFrame->GetImageSize();
|
2015-01-16 02:11:36 +03:00
|
|
|
bool nonPremult =
|
|
|
|
aDecodeFlags & imgIContainer::FLAG_DECODE_NO_PREMULTIPLY_ALPHA;
|
|
|
|
if (NS_FAILED(aPreviousFrame->ReinitForDecoder(oldSize, aFrameRect, aFormat,
|
2015-01-19 01:02:14 +03:00
|
|
|
aPaletteDepth, nonPremult))) {
|
2015-01-16 02:11:36 +03:00
|
|
|
NS_WARNING("imgFrame::ReinitForDecoder should succeed");
|
|
|
|
mFrameCount = 0;
|
|
|
|
aPreviousFrame->Abort();
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
2015-01-11 22:43:32 +03:00
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
return ref;
|
2015-01-11 22:43:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
RawAccessFrameRef
|
|
|
|
Decoder::InternalAddFrame(uint32_t aFrameNum,
|
2015-01-19 01:02:14 +03:00
|
|
|
const nsIntSize& aTargetSize,
|
2015-01-11 22:43:32 +03:00
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
uint32_t aDecodeFlags,
|
|
|
|
SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aFrameNum <= mFrameCount, "Invalid frame index!");
|
|
|
|
if (aFrameNum > mFrameCount) {
|
2015-01-08 11:01:25 +03:00
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-01-19 01:02:14 +03:00
|
|
|
if (aTargetSize.width <= 0 || aTargetSize.height <= 0 ||
|
2015-01-08 11:01:25 +03:00
|
|
|
aFrameRect.width <= 0 || aFrameRect.height <= 0) {
|
|
|
|
NS_WARNING("Trying to add frame with zero or negative size");
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-05-06 08:19:30 +03:00
|
|
|
const uint32_t bytesPerPixel = aPaletteDepth == 0 ? 4 : 1;
|
|
|
|
if (!SurfaceCache::CanHold(aFrameRect.Size(), bytesPerPixel)) {
|
2015-01-08 11:01:25 +03:00
|
|
|
NS_WARNING("Trying to add frame that's too large for the SurfaceCache");
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<imgFrame> frame = new imgFrame();
|
2015-01-08 11:04:31 +03:00
|
|
|
bool nonPremult =
|
|
|
|
aDecodeFlags & imgIContainer::FLAG_DECODE_NO_PREMULTIPLY_ALPHA;
|
2015-01-19 01:02:14 +03:00
|
|
|
if (NS_FAILED(frame->InitForDecoder(aTargetSize, aFrameRect, aFormat,
|
2015-01-08 11:04:31 +03:00
|
|
|
aPaletteDepth, nonPremult))) {
|
2015-01-08 11:01:25 +03:00
|
|
|
NS_WARNING("imgFrame::Init should succeed");
|
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
RawAccessFrameRef ref = frame->RawAccessRef();
|
|
|
|
if (!ref) {
|
2015-01-12 06:28:02 +03:00
|
|
|
frame->Abort();
|
2015-01-08 11:01:25 +03:00
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
2015-01-12 09:29:35 +03:00
|
|
|
InsertOutcome outcome =
|
2015-01-16 02:11:35 +03:00
|
|
|
SurfaceCache::Insert(frame, ImageKey(mImage.get()),
|
2015-03-29 17:59:08 +03:00
|
|
|
RasterSurfaceKey(aTargetSize,
|
2015-01-08 11:01:25 +03:00
|
|
|
aDecodeFlags,
|
|
|
|
aFrameNum),
|
|
|
|
Lifetime::Persistent);
|
2015-05-07 19:25:12 +03: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.
|
2015-01-16 02:11:36 +03:00
|
|
|
mDecodeAborted = true;
|
2015-01-12 06:28:02 +03:00
|
|
|
ref->Abort();
|
2015-01-08 11:01:25 +03:00
|
|
|
return RawAccessFrameRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
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 11:04:31 +03: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 11:01:25 +03: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-01-16 02:11:35 +03:00
|
|
|
mImage->OnAddedFrame(mFrameCount, refreshArea);
|
2015-01-08 11:01:25 +03:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2013-02-27 23:23:08 +04:00
|
|
|
void
|
|
|
|
Decoder::SetSizeOnImage()
|
|
|
|
{
|
2013-08-25 11:19:42 +04:00
|
|
|
MOZ_ASSERT(mImageMetadata.HasSize(), "Should have size");
|
|
|
|
MOZ_ASSERT(mImageMetadata.HasOrientation(), "Should have orientation");
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
nsresult rv = mImage->SetSize(mImageMetadata.GetWidth(),
|
|
|
|
mImageMetadata.GetHeight(),
|
|
|
|
mImageMetadata.GetOrientation());
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
PostResizeError();
|
|
|
|
}
|
2013-02-27 23:23:08 +04:00
|
|
|
}
|
|
|
|
|
2010-08-23 06:30:45 +04:00
|
|
|
/*
|
|
|
|
* Hook stubs. Override these as necessary in decoder implementations.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
void Decoder::InitInternal() { }
|
2015-01-08 11:04:31 +03:00
|
|
|
void Decoder::WriteInternal(const char* aBuffer, uint32_t aCount) { }
|
2010-09-12 19:22:30 +04:00
|
|
|
void Decoder::FinishInternal() { }
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
/*
|
|
|
|
* Progress Notifications
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2013-08-25 11:19:42 +04:00
|
|
|
Decoder::PostSize(int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
|
|
|
Orientation aOrientation /* = Orientation()*/)
|
2010-08-23 06:30:46 +04:00
|
|
|
{
|
|
|
|
// Validate
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aWidth >= 0, "Width can't be negative!");
|
|
|
|
MOZ_ASSERT(aHeight >= 0, "Height can't be negative!");
|
2010-08-23 06:30:46 +04:00
|
|
|
|
|
|
|
// Tell the image
|
2013-08-25 11:19:42 +04:00
|
|
|
mImageMetadata.SetSize(aWidth, aHeight, aOrientation);
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2014-11-15 07:06:19 +03:00
|
|
|
// Record this notification.
|
2014-11-18 01:29:56 +03:00
|
|
|
mProgress |= FLAG_SIZE_AVAILABLE;
|
2010-08-23 06:30:46 +04:00
|
|
|
}
|
|
|
|
|
2014-11-17 22:16:45 +03:00
|
|
|
void
|
|
|
|
Decoder::PostHasTransparency()
|
|
|
|
{
|
|
|
|
mProgress |= FLAG_HAS_TRANSPARENCY;
|
|
|
|
}
|
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
void
|
|
|
|
Decoder::PostFrameStart()
|
|
|
|
{
|
|
|
|
// We shouldn't already be mid-frame
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!mInFrame, "Starting new frame but not done with old one!");
|
2010-08-23 06:30:46 +04:00
|
|
|
|
|
|
|
// Update our state to reflect the new frame
|
|
|
|
mInFrame = true;
|
|
|
|
|
2014-11-15 07:06:19 +03:00
|
|
|
// If we just became animated, record that fact.
|
|
|
|
if (mFrameCount > 1) {
|
|
|
|
mIsAnimated = true;
|
2014-11-15 07:10:47 +03:00
|
|
|
mProgress |= FLAG_IS_ANIMATED;
|
2014-11-15 07:06:19 +03:00
|
|
|
}
|
2010-08-23 06:30:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-02-11 03:47:00 +03:00
|
|
|
Decoder::PostFrameStop(Opacity aFrameOpacity /* = Opacity::TRANSPARENT */,
|
|
|
|
DisposalMethod aDisposalMethod
|
|
|
|
/* = DisposalMethod::KEEP */,
|
|
|
|
int32_t aTimeout /* = 0 */,
|
2015-01-08 00:07:23 +03:00
|
|
|
BlendMethod aBlendMethod /* = BlendMethod::OVER */)
|
2010-08-23 06:30:46 +04:00
|
|
|
{
|
|
|
|
// We should be mid-frame
|
2014-11-15 07:10:48 +03:00
|
|
|
MOZ_ASSERT(!IsSizeDecode(), "Stopping frame during a size decode");
|
|
|
|
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 06:30:46 +04:00
|
|
|
|
|
|
|
// Update our state
|
|
|
|
mInFrame = false;
|
|
|
|
|
2015-01-08 11:04:31 +03:00
|
|
|
mCurrentFrame->Finish(aFrameOpacity, aDisposalMethod, aTimeout, aBlendMethod);
|
2012-12-20 00:11:42 +04:00
|
|
|
|
2014-11-18 01:29:56 +03:00
|
|
|
mProgress |= FLAG_FRAME_COMPLETE | FLAG_ONLOAD_UNBLOCKED;
|
2015-01-12 09:29:32 +03:00
|
|
|
|
|
|
|
// If we're not sending partial invalidations, then we send an invalidation
|
|
|
|
// here when the first frame is complete.
|
|
|
|
if (!mSendPartialInvalidations && !mIsAnimated) {
|
2015-01-19 01:02:13 +03:00
|
|
|
mInvalidRect.UnionRect(mInvalidRect,
|
2015-04-21 18:04:57 +03:00
|
|
|
gfx::IntRect(gfx::IntPoint(0, 0), GetSize()));
|
2015-01-12 09:29:32 +03:00
|
|
|
}
|
2010-08-23 06:30:46 +04:00
|
|
|
}
|
|
|
|
|
2010-08-25 00:40:45 +04:00
|
|
|
void
|
2015-01-19 01:02:13 +03:00
|
|
|
Decoder::PostInvalidation(const nsIntRect& aRect,
|
|
|
|
const Maybe<nsIntRect>& aRectAtTargetSize
|
|
|
|
/* = Nothing() */)
|
2010-08-25 00:40:45 +04:00
|
|
|
{
|
|
|
|
// We should be mid-frame
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mInFrame, "Can't invalidate when not mid-frame!");
|
|
|
|
MOZ_ASSERT(mCurrentFrame, "Can't invalidate when not mid-frame!");
|
2010-08-25 00:40:45 +04:00
|
|
|
|
2015-01-12 09:29:32 +03:00
|
|
|
// Record this invalidation, unless we're not sending partial invalidations
|
|
|
|
// or we're past the first frame.
|
|
|
|
if (mSendPartialInvalidations && !mIsAnimated) {
|
|
|
|
mInvalidRect.UnionRect(mInvalidRect, aRect);
|
2015-01-19 01:02:13 +03:00
|
|
|
mCurrentFrame->ImageUpdated(aRectAtTargetSize.valueOr(aRect));
|
2015-01-12 09:29:32 +03:00
|
|
|
}
|
2010-08-25 00:40:45 +04:00
|
|
|
}
|
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
void
|
2012-12-20 00:11:42 +04:00
|
|
|
Decoder::PostDecodeDone(int32_t aLoopCount /* = 0 */)
|
2010-09-12 19:22:30 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!IsSizeDecode(), "Can't be done with decoding with size decode!");
|
|
|
|
MOZ_ASSERT(!mInFrame, "Can't be done decoding if we're mid-frame!");
|
|
|
|
MOZ_ASSERT(!mDecodeDone, "Decode already done!");
|
2010-09-12 19:22:30 +04:00
|
|
|
mDecodeDone = true;
|
|
|
|
|
2012-12-20 20:49:25 +04:00
|
|
|
mImageMetadata.SetLoopCount(aLoopCount);
|
2012-03-24 02:10:50 +04:00
|
|
|
|
2014-11-18 01:29:56 +03:00
|
|
|
mProgress |= FLAG_DECODE_COMPLETE;
|
2010-09-12 19:22:30 +04:00
|
|
|
}
|
|
|
|
|
2010-09-12 19:22:27 +04:00
|
|
|
void
|
|
|
|
Decoder::PostDataError()
|
|
|
|
{
|
|
|
|
mDataError = true;
|
2015-01-12 06:28:02 +03:00
|
|
|
|
|
|
|
if (mInFrame && mCurrentFrame) {
|
|
|
|
mCurrentFrame->Abort();
|
|
|
|
}
|
2010-09-12 19:22:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::PostDecoderError(nsresult aFailureCode)
|
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(NS_FAILED(aFailureCode), "Not a failure code!");
|
2010-09-12 19:22:27 +04: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 06:28:02 +03:00
|
|
|
|
|
|
|
if (mInFrame && mCurrentFrame) {
|
|
|
|
mCurrentFrame->Abort();
|
|
|
|
}
|
2015-01-11 22:43:32 +03:00
|
|
|
}
|
2015-01-11 07:47:38 +03:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
void
|
|
|
|
Decoder::NeedNewFrame(uint32_t framenum, uint32_t x_offset, uint32_t y_offset,
|
|
|
|
uint32_t width, uint32_t height,
|
|
|
|
gfx::SurfaceFormat format,
|
|
|
|
uint8_t palette_depth /* = 0 */)
|
|
|
|
{
|
|
|
|
// Decoders should never call NeedNewFrame without yielding back to Write().
|
|
|
|
MOZ_ASSERT(!mNeedsNewFrame);
|
|
|
|
|
|
|
|
// We don't want images going back in time or skipping frames.
|
|
|
|
MOZ_ASSERT(framenum == mFrameCount || framenum == (mFrameCount - 1));
|
|
|
|
|
|
|
|
mNewFrameData = NewFrameData(framenum,
|
|
|
|
nsIntRect(x_offset, y_offset, width, height),
|
|
|
|
format, palette_depth);
|
|
|
|
mNeedsNewFrame = true;
|
2010-09-12 19:22:27 +04:00
|
|
|
}
|
|
|
|
|
2015-02-03 18:05:49 +03:00
|
|
|
Telemetry::ID
|
|
|
|
Decoder::SpeedHistogram()
|
|
|
|
{
|
|
|
|
// Use HistogramCount as an invalid Histogram ID.
|
|
|
|
return Telemetry::HistogramCount;
|
|
|
|
}
|
|
|
|
|
2012-01-06 20:02:27 +04:00
|
|
|
} // namespace image
|
2010-08-23 06:30:45 +04:00
|
|
|
} // namespace mozilla
|