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
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#ifndef mozilla_image_Decoder_h
|
|
|
|
#define mozilla_image_Decoder_h
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2015-01-08 00:07:23 +03:00
|
|
|
#include "FrameAnimator.h"
|
2010-08-23 06:30:45 +04:00
|
|
|
#include "RasterImage.h"
|
2016-07-11 10:07:07 +03:00
|
|
|
#include "mozilla/Maybe.h"
|
2016-06-29 23:43:19 +03:00
|
|
|
#include "mozilla/NotNull.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2014-11-19 05:17:17 +03:00
|
|
|
#include "DecodePool.h"
|
2015-08-15 03:56:44 +03:00
|
|
|
#include "DecoderFlags.h"
|
2015-09-20 02:21:08 +03:00
|
|
|
#include "Downscaler.h"
|
2012-12-20 20:49:25 +04:00
|
|
|
#include "ImageMetadata.h"
|
2013-08-25 11:19:42 +04:00
|
|
|
#include "Orientation.h"
|
2015-01-16 02:11:36 +03:00
|
|
|
#include "SourceBuffer.h"
|
2016-07-11 10:07:07 +03:00
|
|
|
#include "StreamingLexer.h"
|
2015-08-15 03:56:44 +03:00
|
|
|
#include "SurfaceFlags.h"
|
2010-08-23 06:30:45 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2014-06-19 06:29:00 +04:00
|
|
|
|
2015-02-03 18:05:49 +03:00
|
|
|
namespace Telemetry {
|
|
|
|
enum ID : uint32_t;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace Telemetry
|
2015-02-03 18:05:49 +03:00
|
|
|
|
2012-01-06 20:02:27 +04:00
|
|
|
namespace image {
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2016-06-29 23:43:19 +03:00
|
|
|
class Decoder
|
2010-08-23 06:30:45 +04:00
|
|
|
{
|
|
|
|
public:
|
2016-06-29 23:43:19 +03:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(Decoder)
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2015-01-16 02:11:35 +03:00
|
|
|
explicit Decoder(RasterImage* aImage);
|
2010-08-23 06:30:45 +04:00
|
|
|
|
|
|
|
/**
|
2010-08-23 06:30:46 +04:00
|
|
|
* Initialize an image decoder. Decoders may not be re-initialized.
|
2016-07-11 10:34:50 +03:00
|
|
|
*
|
|
|
|
* @return NS_OK if the decoder could be initialized successfully.
|
2010-08-23 06:30:45 +04:00
|
|
|
*/
|
2016-07-11 10:34:50 +03:00
|
|
|
nsresult Init();
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2015-01-11 22:43:32 +03:00
|
|
|
/**
|
2015-08-20 00:04:01 +03:00
|
|
|
* Decodes, reading all data currently available in the SourceBuffer.
|
|
|
|
*
|
2016-07-15 08:39:39 +03:00
|
|
|
* If more data is needed and @aOnResume is non-null, Decode() will schedule
|
|
|
|
* @aOnResume to be called when more data is available.
|
2010-08-23 06:30:45 +04:00
|
|
|
*
|
|
|
|
* Any errors are reported by setting the appropriate state on the decoder.
|
|
|
|
*/
|
2016-07-15 08:39:39 +03:00
|
|
|
nsresult Decode(IResumable* aOnResume = nullptr);
|
2015-01-12 12:20:23 +03:00
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
/**
|
|
|
|
* Given a maximum number of bytes we're willing to decode, @aByteLimit,
|
|
|
|
* returns true if we should attempt to run this decoder synchronously.
|
2015-01-11 16:34:20 +03:00
|
|
|
*/
|
2015-01-16 02:11:36 +03:00
|
|
|
bool ShouldSyncDecode(size_t aByteLimit);
|
2015-01-11 16:34:20 +03:00
|
|
|
|
2010-08-25 00:40:45 +04:00
|
|
|
/**
|
2014-11-10 23:37:35 +03:00
|
|
|
* Gets the invalidation region accumulated by the decoder so far, and clears
|
|
|
|
* the decoder's invalidation region. This means that each call to
|
|
|
|
* TakeInvalidRect() returns only the invalidation region accumulated since
|
|
|
|
* the last call to TakeInvalidRect().
|
2010-08-25 00:40:45 +04:00
|
|
|
*/
|
2014-11-10 23:37:35 +03:00
|
|
|
nsIntRect TakeInvalidRect()
|
|
|
|
{
|
|
|
|
nsIntRect invalidRect = mInvalidRect;
|
|
|
|
mInvalidRect.SetEmpty();
|
|
|
|
return invalidRect;
|
|
|
|
}
|
2010-08-25 00:40:45 +04:00
|
|
|
|
2014-11-18 12:48:49 +03:00
|
|
|
/**
|
|
|
|
* Gets the progress changes accumulated by the decoder so far, and clears
|
|
|
|
* them. This means that each call to TakeProgress() returns only the changes
|
|
|
|
* accumulated since the last call to TakeProgress().
|
|
|
|
*/
|
|
|
|
Progress TakeProgress()
|
|
|
|
{
|
|
|
|
Progress progress = mProgress;
|
|
|
|
mProgress = NoProgress;
|
|
|
|
return progress;
|
|
|
|
}
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
/**
|
|
|
|
* Returns true if there's any progress to report.
|
|
|
|
*/
|
|
|
|
bool HasProgress() const
|
|
|
|
{
|
|
|
|
return mProgress != NoProgress || !mInvalidRect.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
/*
|
|
|
|
* State.
|
|
|
|
*/
|
|
|
|
|
2015-07-23 08:39:54 +03:00
|
|
|
/**
|
|
|
|
* If we're doing a metadata decode, we only decode the image's headers, which
|
|
|
|
* is enough to determine the image's intrinsic size. A metadata decode is
|
|
|
|
* enabled by calling SetMetadataDecode() *before* calling Init().
|
|
|
|
*/
|
|
|
|
void SetMetadataDecode(bool aMetadataDecode)
|
2010-08-23 06:30:46 +04:00
|
|
|
{
|
2015-01-16 02:11:36 +03:00
|
|
|
MOZ_ASSERT(!mInitialized, "Shouldn't be initialized yet");
|
2015-07-23 08:39:54 +03:00
|
|
|
mMetadataDecode = aMetadataDecode;
|
2010-08-23 06:30:46 +04:00
|
|
|
}
|
2015-07-31 17:29:15 +03:00
|
|
|
bool IsMetadataDecode() const { return mMetadataDecode; }
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2015-01-19 01:02:13 +03:00
|
|
|
/**
|
|
|
|
* If this decoder supports downscale-during-decode, sets the target size that
|
|
|
|
* this image should be decoded to.
|
|
|
|
*
|
2015-09-20 02:21:08 +03:00
|
|
|
* If the provided size is unacceptable, an error is returned.
|
2015-01-19 01:02:13 +03:00
|
|
|
*
|
|
|
|
* Returning NS_OK from this method is a promise that the decoder will decode
|
|
|
|
* the image to the requested target size unless it encounters an error.
|
|
|
|
*
|
|
|
|
* This must be called before Init() is called.
|
|
|
|
*/
|
2016-07-03 06:20:55 +03:00
|
|
|
nsresult SetTargetSize(const gfx::IntSize& aSize);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If this decoder supports downscale-during-decode and is configured to
|
|
|
|
* downscale, returns the target size that the output size will be decoded to.
|
|
|
|
* Otherwise, returns Nothing().
|
|
|
|
*/
|
|
|
|
Maybe<gfx::IntSize> GetTargetSize();
|
2015-01-19 01:02:13 +03:00
|
|
|
|
2015-07-31 17:29:03 +03:00
|
|
|
/**
|
|
|
|
* Set the requested sample size for this decoder. Used to implement the
|
|
|
|
* -moz-sample-size media fragment.
|
|
|
|
*
|
|
|
|
* XXX(seth): Support for -moz-sample-size will be removed in bug 1120056.
|
|
|
|
*/
|
|
|
|
virtual void SetSampleSize(int aSampleSize) { }
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
/**
|
|
|
|
* Set an iterator to the SourceBuffer which will feed data to this decoder.
|
2016-07-03 08:21:00 +03:00
|
|
|
* This must always be called before calling Init(). (And only before Init().)
|
2015-01-16 02:11:36 +03:00
|
|
|
*
|
2016-07-03 08:21:00 +03:00
|
|
|
* XXX(seth): We should eliminate this method and pass a SourceBufferIterator
|
|
|
|
* to the various decoder constructors instead.
|
2015-01-16 02:11:36 +03:00
|
|
|
*/
|
|
|
|
void SetIterator(SourceBufferIterator&& aIterator)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mInitialized, "Shouldn't be initialized yet");
|
|
|
|
mIterator.emplace(Move(aIterator));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-15 03:56:44 +03:00
|
|
|
* Should this decoder send partial invalidations?
|
2015-01-16 02:11:36 +03:00
|
|
|
*/
|
2015-08-15 03:56:44 +03:00
|
|
|
bool ShouldSendPartialInvalidations() const
|
2015-01-16 02:11:36 +03:00
|
|
|
{
|
2015-08-15 03:56:44 +03:00
|
|
|
return !(mDecoderFlags & DecoderFlags::IS_REDECODE);
|
2015-01-16 02:11:36 +03:00
|
|
|
}
|
|
|
|
|
2015-08-01 04:10:23 +03:00
|
|
|
/**
|
2015-08-15 03:56:44 +03:00
|
|
|
* Should we stop decoding after the first frame?
|
2015-08-01 04:10:23 +03:00
|
|
|
*/
|
2015-08-15 03:56:44 +03:00
|
|
|
bool IsFirstFrameDecode() const
|
2015-08-01 04:10:23 +03:00
|
|
|
{
|
2015-08-15 03:56:44 +03:00
|
|
|
return bool(mDecoderFlags & DecoderFlags::FIRST_FRAME_ONLY);
|
2015-08-01 04:10:23 +03:00
|
|
|
}
|
|
|
|
|
2016-07-11 10:44:39 +03:00
|
|
|
size_t BytesDecoded() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mIterator);
|
|
|
|
return mIterator->ByteCount();
|
|
|
|
}
|
2014-10-16 00:52:20 +04:00
|
|
|
|
2016-07-11 10:04:44 +03:00
|
|
|
// The amount of time we've spent inside DoDecode() so far for this decoder.
|
2014-11-18 23:06:26 +03:00
|
|
|
TimeDuration DecodeTime() const { return mDecodeTime; }
|
|
|
|
|
2016-07-11 10:04:44 +03:00
|
|
|
// The number of chunks this decoder's input was divided into.
|
2016-07-11 10:44:39 +03:00
|
|
|
uint32_t ChunkCount() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mIterator);
|
|
|
|
return mIterator->ChunkCount();
|
|
|
|
}
|
2014-11-18 23:06:26 +03:00
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
// The number of frames we have, including anything in-progress. Thus, this
|
|
|
|
// is only 0 if we haven't begun any frames.
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t GetFrameCount() { return mFrameCount; }
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2015-02-11 03:47:00 +03:00
|
|
|
// The number of complete frames we have (ie, not including anything
|
|
|
|
// in-progress).
|
|
|
|
uint32_t GetCompleteFrameCount() {
|
|
|
|
return mInFrame ? mFrameCount - 1 : mFrameCount;
|
|
|
|
}
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2015-07-31 17:29:15 +03:00
|
|
|
// Did we discover that the image we're decoding is animated?
|
2015-08-14 10:37:13 +03:00
|
|
|
bool HasAnimation() const { return mImageMetadata.HasAnimation(); }
|
2015-07-31 17:29:15 +03:00
|
|
|
|
2010-09-12 19:22:27 +04:00
|
|
|
// Error tracking
|
2016-07-11 11:09:10 +03:00
|
|
|
bool HasError() const { return mError; }
|
2015-07-31 17:29:15 +03:00
|
|
|
bool ShouldReportError() const { return mShouldReportError; }
|
2015-01-16 02:11:36 +03:00
|
|
|
|
2015-07-31 17:29:15 +03:00
|
|
|
/// Did we finish decoding enough that calling Decode() again would be useless?
|
2015-01-16 02:11:36 +03:00
|
|
|
bool GetDecodeDone() const
|
|
|
|
{
|
2016-07-11 10:42:56 +03:00
|
|
|
return mReachedTerminalState || mDecodeDone ||
|
|
|
|
(mMetadataDecode && HasSize()) || HasError();
|
2011-08-26 00:09:01 +04:00
|
|
|
}
|
2010-09-12 19:22:27 +04:00
|
|
|
|
2015-07-31 17:29:15 +03:00
|
|
|
/// Are we in the middle of a frame right now? Used for assertions only.
|
|
|
|
bool InFrame() const { return mInFrame; }
|
|
|
|
|
2015-07-31 17:29:18 +03:00
|
|
|
/// Should we store surfaces created by this decoder in the SurfaceCache?
|
|
|
|
bool ShouldUseSurfaceCache() const { return bool(mImage); }
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
/**
|
|
|
|
* Returns true if this decoder was aborted.
|
|
|
|
*
|
|
|
|
* This may happen due to a low-memory condition, or because another decoder
|
|
|
|
* was racing with this one to decode the same frames with the same flags and
|
|
|
|
* this decoder lost the race. Either way, this is not a permanent situation
|
|
|
|
* and does not constitute an error, so we don't report any errors when this
|
|
|
|
* happens.
|
|
|
|
*/
|
|
|
|
bool WasAborted() const { return mDecodeAborted; }
|
|
|
|
|
2012-11-19 05:18:52 +04:00
|
|
|
enum DecodeStyle {
|
2015-02-11 03:47:00 +03:00
|
|
|
PROGRESSIVE, // produce intermediate frames representing the partial
|
|
|
|
// state of the image
|
|
|
|
SEQUENTIAL // decode to final image immediately
|
2012-11-19 05:18:52 +04:00
|
|
|
};
|
|
|
|
|
2015-08-15 03:56:44 +03:00
|
|
|
/**
|
|
|
|
* Get or set the DecoderFlags that influence the behavior of this decoder.
|
|
|
|
*/
|
|
|
|
void SetDecoderFlags(DecoderFlags aDecoderFlags)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mInitialized);
|
|
|
|
mDecoderFlags = aDecoderFlags;
|
|
|
|
}
|
|
|
|
DecoderFlags GetDecoderFlags() const { return mDecoderFlags; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get or set the SurfaceFlags that select the kind of output this decoder
|
|
|
|
* will produce.
|
|
|
|
*/
|
|
|
|
void SetSurfaceFlags(SurfaceFlags aSurfaceFlags)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mInitialized);
|
|
|
|
mSurfaceFlags = aSurfaceFlags;
|
|
|
|
}
|
|
|
|
SurfaceFlags GetSurfaceFlags() const { return mSurfaceFlags; }
|
2011-01-13 04:45:13 +03:00
|
|
|
|
2013-02-27 23:23:08 +04:00
|
|
|
bool HasSize() const { return mImageMetadata.HasSize(); }
|
|
|
|
|
2015-01-19 01:02:13 +03:00
|
|
|
nsIntSize GetSize() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(HasSize());
|
|
|
|
return mImageMetadata.GetSize();
|
|
|
|
}
|
|
|
|
|
2015-02-03 18:05:49 +03:00
|
|
|
virtual Telemetry::ID SpeedHistogram();
|
2011-09-23 00:25:56 +04:00
|
|
|
|
2013-01-19 01:47:18 +04:00
|
|
|
ImageMetadata& GetImageMetadata() { return mImageMetadata; }
|
|
|
|
|
2015-01-16 02:11:35 +03:00
|
|
|
/**
|
2016-07-03 06:20:55 +03:00
|
|
|
* @return a weak pointer to the image associated with this decoder. Illegal
|
|
|
|
* to call if this decoder is not associated with an image.
|
2015-01-16 02:11:35 +03:00
|
|
|
*/
|
|
|
|
RasterImage* GetImage() const { MOZ_ASSERT(mImage); return mImage.get(); }
|
|
|
|
|
2016-07-03 06:20:55 +03:00
|
|
|
/**
|
|
|
|
* @return a possibly-null weak pointer to the image associated with this
|
|
|
|
* decoder. May be called even if this decoder is not associated with an
|
|
|
|
* image.
|
|
|
|
*/
|
|
|
|
RasterImage* GetImageMaybeNull() const { return mImage.get(); }
|
|
|
|
|
2014-11-27 00:22:10 +03:00
|
|
|
RawAccessFrameRef GetCurrentFrameRef()
|
|
|
|
{
|
2014-12-03 21:02:19 +03:00
|
|
|
return mCurrentFrame ? mCurrentFrame->RawAccessRef()
|
|
|
|
: RawAccessFrameRef();
|
2014-11-27 00:22:10 +03:00
|
|
|
}
|
|
|
|
|
2015-01-16 02:11:36 +03:00
|
|
|
|
2010-08-23 06:30:45 +04:00
|
|
|
protected:
|
2016-07-11 10:03:42 +03:00
|
|
|
friend class AutoRecordDecoderTelemetry;
|
2015-07-11 05:26:15 +03:00
|
|
|
friend class nsICODecoder;
|
2016-02-26 03:21:29 +03:00
|
|
|
friend class PalettedSurfaceSink;
|
|
|
|
friend class SurfaceSink;
|
2015-07-11 05:26:15 +03:00
|
|
|
|
2014-09-10 06:47:02 +04:00
|
|
|
virtual ~Decoder();
|
2010-08-23 06:30:45 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal hooks. Decoder implementations may override these and
|
|
|
|
* only these methods.
|
2016-01-28 03:15:06 +03:00
|
|
|
*
|
|
|
|
* BeforeFinishInternal() can be used to detect if decoding is in an
|
|
|
|
* incomplete state, e.g. due to file truncation, in which case it should
|
2016-07-11 10:38:54 +03:00
|
|
|
* return a failing nsresult.
|
2010-08-23 06:30:45 +04:00
|
|
|
*/
|
2016-07-11 10:34:50 +03:00
|
|
|
virtual nsresult InitInternal();
|
2016-07-15 08:39:39 +03:00
|
|
|
virtual Maybe<TerminalState> DoDecode(SourceBufferIterator& aIterator,
|
|
|
|
IResumable* aOnResume) = 0;
|
2016-07-11 10:38:54 +03:00
|
|
|
virtual nsresult BeforeFinishInternal();
|
|
|
|
virtual nsresult FinishInternal();
|
|
|
|
virtual nsresult FinishWithErrorInternal();
|
2010-08-23 06:30:45 +04:00
|
|
|
|
2010-08-23 06:30:46 +04:00
|
|
|
/*
|
|
|
|
* Progress notifications.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Called by decoders when they determine the size of the image. Informs
|
|
|
|
// the image of its size and sends notifications.
|
2013-08-25 11:19:42 +04:00
|
|
|
void PostSize(int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
|
|
|
Orientation aOrientation = Orientation());
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2014-11-17 22:16:45 +03:00
|
|
|
// Called by decoders if they determine that the image has transparency.
|
2014-11-25 10:42:43 +03:00
|
|
|
//
|
|
|
|
// This should be fired as early as possible to allow observers to do things
|
2014-11-25 11:00:00 +03:00
|
|
|
// that affect content, so it's necessarily pessimistic - if there's a
|
|
|
|
// possibility that the image has transparency, for example because its header
|
|
|
|
// specifies that it has an alpha channel, we fire PostHasTransparency
|
2015-01-08 00:07:23 +03:00
|
|
|
// immediately. PostFrameStop's aFrameOpacity argument, on the other hand, is
|
2014-11-25 11:00:00 +03:00
|
|
|
// only used internally to ImageLib. Because PostFrameStop isn't delivered
|
|
|
|
// until the entire frame has been decoded, decoders may take into account the
|
|
|
|
// actual contents of the frame and give a more accurate result.
|
2014-11-17 22:16:45 +03:00
|
|
|
void PostHasTransparency();
|
|
|
|
|
2015-08-14 10:37:13 +03:00
|
|
|
// Called by decoders if they determine that the image is animated.
|
|
|
|
//
|
|
|
|
// @param aTimeout The time for which the first frame should be shown before
|
|
|
|
// we advance to the next frame.
|
|
|
|
void PostIsAnimated(int32_t aFirstFrameTimeout);
|
2012-12-20 00:11:42 +04:00
|
|
|
|
|
|
|
// Called by decoders when they end a frame. Informs the image, sends
|
|
|
|
// notifications, and does internal book-keeping.
|
|
|
|
// Specify whether this frame is opaque as an optimization.
|
|
|
|
// For animated images, specify the disposal, blend method and timeout for
|
|
|
|
// this frame.
|
2015-01-08 00:07:23 +03:00
|
|
|
void PostFrameStop(Opacity aFrameOpacity = Opacity::SOME_TRANSPARENCY,
|
|
|
|
DisposalMethod aDisposalMethod = DisposalMethod::KEEP,
|
2012-12-20 00:11:42 +04:00
|
|
|
int32_t aTimeout = 0,
|
2016-06-25 01:20:32 +03:00
|
|
|
BlendMethod aBlendMethod = BlendMethod::OVER,
|
|
|
|
const Maybe<nsIntRect>& aBlendRect = Nothing());
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2015-01-19 01:02:13 +03:00
|
|
|
/**
|
|
|
|
* Called by the decoders when they have a region to invalidate. We may not
|
|
|
|
* actually pass these invalidations on right away.
|
|
|
|
*
|
|
|
|
* @param aRect The invalidation rect in the coordinate system of the unscaled
|
|
|
|
* image (that is, the image at its intrinsic size).
|
|
|
|
* @param aRectAtTargetSize If not Nothing(), the invalidation rect in the
|
|
|
|
* coordinate system of the scaled image (that is,
|
|
|
|
* the image at our target decoding size). This must
|
|
|
|
* be supplied if we're downscaling during decode.
|
|
|
|
*/
|
|
|
|
void PostInvalidation(const nsIntRect& aRect,
|
|
|
|
const Maybe<nsIntRect>& aRectAtTargetSize = Nothing());
|
2010-08-23 06:30:46 +04:00
|
|
|
|
2010-09-12 19:22:30 +04:00
|
|
|
// Called by the decoders when they have successfully decoded the image. This
|
|
|
|
// may occur as the result of the decoder getting to the appropriate point in
|
|
|
|
// the stream, or by us calling FinishInternal().
|
|
|
|
//
|
|
|
|
// May not be called mid-frame.
|
2012-12-20 00:11:42 +04:00
|
|
|
//
|
|
|
|
// For animated images, specify the loop count. -1 means loop forever, 0
|
|
|
|
// means a single iteration, stopping on the last frame.
|
|
|
|
void PostDecodeDone(int32_t aLoopCount = 0);
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2015-01-11 16:34:20 +03:00
|
|
|
/**
|
2015-07-11 05:26:15 +03:00
|
|
|
* Allocates a new frame, making it our current frame if successful.
|
|
|
|
*
|
|
|
|
* The @aFrameNum parameter only exists as a sanity check; it's illegal to
|
|
|
|
* create a new frame anywhere but immediately after the existing frames.
|
2015-01-19 01:02:14 +03:00
|
|
|
*
|
2015-01-11 22:43:32 +03:00
|
|
|
* If a non-paletted frame is desired, pass 0 for aPaletteDepth.
|
2015-01-11 16:34:20 +03:00
|
|
|
*/
|
2015-07-11 05:26:15 +03:00
|
|
|
nsresult AllocateFrame(uint32_t aFrameNum,
|
|
|
|
const nsIntSize& aTargetSize,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth = 0);
|
|
|
|
|
|
|
|
/// Helper method for decoders which only have 'basic' frame allocation needs.
|
|
|
|
nsresult AllocateBasicFrame() {
|
|
|
|
nsIntSize size = GetSize();
|
|
|
|
return AllocateFrame(0, size, nsIntRect(nsIntPoint(), size),
|
|
|
|
gfx::SurfaceFormat::B8G8R8A8);
|
|
|
|
}
|
|
|
|
|
2016-07-11 11:09:10 +03:00
|
|
|
private:
|
|
|
|
/// Report that an error was encountered while decoding.
|
|
|
|
void PostError();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CompleteDecode() finishes up the decoding process after Decode() determines
|
|
|
|
* that we're finished. It records final progress and does all the cleanup
|
|
|
|
* that's possible off-main-thread.
|
|
|
|
*/
|
|
|
|
void CompleteDecode();
|
|
|
|
|
2015-07-11 05:26:15 +03:00
|
|
|
RawAccessFrameRef AllocateFrameInternal(uint32_t aFrameNum,
|
|
|
|
const nsIntSize& aTargetSize,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame);
|
2015-01-16 02:11:36 +03:00
|
|
|
|
2015-07-31 17:29:00 +03:00
|
|
|
protected:
|
2015-09-20 02:21:08 +03:00
|
|
|
Maybe<Downscaler> mDownscaler;
|
|
|
|
|
2015-07-31 17:29:00 +03:00
|
|
|
uint8_t* mImageData; // Pointer to image data in either Cairo or 8bit format
|
|
|
|
uint32_t mImageDataLength;
|
|
|
|
uint32_t* mColormap; // Current colormap to be used in Cairo format
|
|
|
|
uint32_t mColormapSize;
|
|
|
|
|
|
|
|
private:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<RasterImage> mImage;
|
2015-01-16 02:11:36 +03:00
|
|
|
Maybe<SourceBufferIterator> mIterator;
|
2014-11-27 00:22:10 +03:00
|
|
|
RawAccessFrameRef mCurrentFrame;
|
2012-12-20 20:49:25 +04:00
|
|
|
ImageMetadata mImageMetadata;
|
2014-11-18 12:48:48 +03:00
|
|
|
nsIntRect mInvalidRect; // Tracks an invalidation region in the current frame.
|
2014-11-15 07:10:47 +03:00
|
|
|
Progress mProgress;
|
2010-09-12 19:22:30 +04:00
|
|
|
|
2015-07-31 17:29:00 +03:00
|
|
|
uint32_t mFrameCount; // Number of frames, including anything in-progress
|
|
|
|
|
2014-11-18 23:06:26 +03:00
|
|
|
// Telemetry data for this decoder.
|
|
|
|
TimeDuration mDecodeTime;
|
|
|
|
|
2015-08-15 03:56:44 +03:00
|
|
|
DecoderFlags mDecoderFlags;
|
|
|
|
SurfaceFlags mSurfaceFlags;
|
2010-09-12 19:22:27 +04:00
|
|
|
|
2015-07-31 17:29:00 +03:00
|
|
|
bool mInitialized : 1;
|
|
|
|
bool mMetadataDecode : 1;
|
|
|
|
bool mInFrame : 1;
|
2016-07-11 10:42:56 +03:00
|
|
|
bool mReachedTerminalState : 1;
|
2015-07-31 17:29:00 +03:00
|
|
|
bool mDecodeDone : 1;
|
2016-07-11 11:09:10 +03:00
|
|
|
bool mError : 1;
|
2015-07-31 17:29:00 +03:00
|
|
|
bool mDecodeAborted : 1;
|
|
|
|
bool mShouldReportError : 1;
|
2013-11-21 05:21:51 +04:00
|
|
|
};
|
|
|
|
|
2012-01-06 20:02:27 +04:00
|
|
|
} // namespace image
|
2010-08-23 06:30:45 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#endif // mozilla_image_Decoder_h
|