2010-08-22 19:30:45 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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-22 19:30:45 -07:00
|
|
|
|
|
|
|
#ifndef MOZILLA_IMAGELIB_DECODER_H_
|
|
|
|
#define MOZILLA_IMAGELIB_DECODER_H_
|
|
|
|
|
2015-01-07 13:07:23 -08:00
|
|
|
#include "FrameAnimator.h"
|
2010-08-22 19:30:45 -07:00
|
|
|
#include "RasterImage.h"
|
2012-12-18 08:37:15 -08:00
|
|
|
#include "mozilla/RefPtr.h"
|
2014-11-18 18:17:17 -08:00
|
|
|
#include "DecodePool.h"
|
2012-12-20 08:49:25 -08:00
|
|
|
#include "ImageMetadata.h"
|
2013-08-25 00:19:42 -07:00
|
|
|
#include "Orientation.h"
|
2013-09-07 06:01:08 -07:00
|
|
|
#include "mozilla/Telemetry.h"
|
2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2014-06-18 19:29:00 -07:00
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
class Decoder
|
2010-08-22 19:30:45 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-01-11 05:34:20 -08:00
|
|
|
explicit Decoder(RasterImage* aImage);
|
2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
/**
|
2010-08-22 19:30:46 -07:00
|
|
|
* Initialize an image decoder. Decoders may not be re-initialized.
|
2010-08-22 19:30:45 -07:00
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2011-09-27 09:24:03 -07:00
|
|
|
void Init();
|
2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes data to the decoder.
|
|
|
|
*
|
|
|
|
* @param aBuffer buffer containing the data to be written
|
|
|
|
* @param aCount the number of bytes to write
|
|
|
|
*
|
|
|
|
* Any errors are reported by setting the appropriate state on the decoder.
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2015-01-08 00:04:31 -08:00
|
|
|
void Write(const char* aBuffer, uint32_t aCount);
|
2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the decoder that all the data has been written.
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2014-11-18 18:17:17 -08:00
|
|
|
void Finish(ShutdownReason aReason);
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
/**
|
2014-11-10 12:37:35 -08: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-24 13:40:45 -07:00
|
|
|
*/
|
2014-11-10 12:37:35 -08:00
|
|
|
nsIntRect TakeInvalidRect()
|
|
|
|
{
|
|
|
|
nsIntRect invalidRect = mInvalidRect;
|
|
|
|
mInvalidRect.SetEmpty();
|
|
|
|
return invalidRect;
|
|
|
|
}
|
2010-08-24 13:40:45 -07:00
|
|
|
|
2014-11-18 01:48:49 -08: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;
|
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
// We're not COM-y, so we don't get refcounts by default
|
2013-03-01 15:17:24 -08:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(Decoder)
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
/*
|
|
|
|
* State.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// If we're doing a "size decode", we more or less pass through the image
|
|
|
|
// data, stopping only to scoop out the image dimensions. A size decode
|
|
|
|
// must be enabled by SetSizeDecode() _before_calling Init().
|
2012-12-09 09:23:19 -08:00
|
|
|
bool IsSizeDecode() { return mSizeDecode; }
|
2010-08-22 19:30:46 -07:00
|
|
|
void SetSizeDecode(bool aSizeDecode)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(!mInitialized, "Can't set size decode after Init()!");
|
|
|
|
mSizeDecode = aSizeDecode;
|
|
|
|
}
|
|
|
|
|
2015-01-10 20:47:38 -08:00
|
|
|
/**
|
|
|
|
* Set whether should send partial invalidations.
|
|
|
|
*
|
|
|
|
* If @aSend is true, we'll send partial invalidations when decoding the first
|
|
|
|
* frame of the image, so image notifications observers will be able to
|
|
|
|
* gradually draw in the image as it downloads.
|
|
|
|
*
|
|
|
|
* If @aSend is false (the default), we'll only send an invalidation when we
|
|
|
|
* complete the first frame.
|
|
|
|
*
|
|
|
|
* This must be called before Init() is called.
|
|
|
|
*/
|
|
|
|
void SetSendPartialInvalidations(bool aSend)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mInitialized, "Shouldn't be initialized yet");
|
|
|
|
mSendPartialInvalidations = aSend;
|
|
|
|
}
|
|
|
|
|
2014-10-15 13:52:20 -07:00
|
|
|
size_t BytesDecoded() const { return mBytesDecoded; }
|
|
|
|
|
2014-11-18 12:06:26 -08:00
|
|
|
// The amount of time we've spent inside Write() so far for this decoder.
|
|
|
|
TimeDuration DecodeTime() const { return mDecodeTime; }
|
|
|
|
|
|
|
|
// The number of times Write() has been called so far for this decoder.
|
|
|
|
uint32_t ChunkCount() const { return mChunkCount; }
|
|
|
|
|
2010-08-22 19:30:46 -07: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 08:56:38 -07:00
|
|
|
uint32_t GetFrameCount() { return mFrameCount; }
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
// The number of complete frames we have (ie, not including anything in-progress).
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetCompleteFrameCount() { return mInFrame ? mFrameCount - 1 : mFrameCount; }
|
2010-09-12 08:22:30 -07:00
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
// Error tracking
|
2012-12-09 09:23:19 -08:00
|
|
|
bool HasError() { return HasDataError() || HasDecoderError(); }
|
|
|
|
bool HasDataError() { return mDataError; }
|
|
|
|
bool HasDecoderError() { return NS_FAILED(mFailCode); }
|
|
|
|
nsresult GetDecoderError() { return mFailCode; }
|
2011-05-11 02:46:59 -07:00
|
|
|
void PostResizeError() { PostDataError(); }
|
2011-08-25 13:09:01 -07:00
|
|
|
bool GetDecodeDone() const {
|
|
|
|
return mDecodeDone;
|
|
|
|
}
|
2010-09-12 08:22:27 -07:00
|
|
|
|
2011-01-12 17:45:13 -08:00
|
|
|
// flags. Keep these in sync with imgIContainer.idl.
|
|
|
|
// SetDecodeFlags must be called before Init(), otherwise
|
|
|
|
// default flags are assumed.
|
|
|
|
enum {
|
2012-03-23 15:10:50 -07:00
|
|
|
DECODER_NO_PREMULTIPLY_ALPHA = 0x2, // imgIContainer::FLAG_DECODE_NO_PREMULTIPLY_ALPHA
|
|
|
|
DECODER_NO_COLORSPACE_CONVERSION = 0x4 // imgIContainer::FLAG_DECODE_NO_COLORSPACE_CONVERSION
|
2011-01-12 17:45:13 -08:00
|
|
|
};
|
2012-11-18 17:18:52 -08:00
|
|
|
|
|
|
|
enum DecodeStyle {
|
|
|
|
PROGRESSIVE, // produce intermediate frames representing the partial state of the image
|
|
|
|
SEQUENTIAL // decode to final image immediately
|
|
|
|
};
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
void SetDecodeFlags(uint32_t aFlags) { mDecodeFlags = aFlags; }
|
|
|
|
uint32_t GetDecodeFlags() { return mDecodeFlags; }
|
2011-01-12 17:45:13 -08:00
|
|
|
|
2015-01-10 18:47:44 -08:00
|
|
|
nsIntSize GetSize() const { return mImageMetadata.GetSize(); }
|
2013-02-27 11:23:08 -08:00
|
|
|
bool HasSize() const { return mImageMetadata.HasSize(); }
|
|
|
|
void SetSizeOnImage();
|
|
|
|
|
2011-09-22 13:25:56 -07:00
|
|
|
// Use HistogramCount as an invalid Histogram ID
|
|
|
|
virtual Telemetry::ID SpeedHistogram() { return Telemetry::HistogramCount; }
|
|
|
|
|
2013-01-18 13:47:18 -08:00
|
|
|
ImageMetadata& GetImageMetadata() { return mImageMetadata; }
|
|
|
|
|
2015-01-11 05:34:20 -08:00
|
|
|
/**
|
|
|
|
* Returns a weak pointer to the image associated with this decoder.
|
|
|
|
*/
|
|
|
|
RasterImage* GetImage() const { MOZ_ASSERT(mImage); return mImage.get(); }
|
|
|
|
|
2014-11-26 13:22:10 -08:00
|
|
|
already_AddRefed<imgFrame> GetCurrentFrame()
|
2014-08-22 13:49:54 -07:00
|
|
|
{
|
2014-11-26 13:22:10 -08:00
|
|
|
nsRefPtr<imgFrame> frame = mCurrentFrame.get();
|
2014-08-22 13:49:54 -07:00
|
|
|
return frame.forget();
|
|
|
|
}
|
2013-03-22 19:05:44 -07:00
|
|
|
|
2014-11-26 13:22:10 -08:00
|
|
|
RawAccessFrameRef GetCurrentFrameRef()
|
|
|
|
{
|
2014-12-03 10:02:19 -08:00
|
|
|
return mCurrentFrame ? mCurrentFrame->RawAccessRef()
|
|
|
|
: RawAccessFrameRef();
|
2014-11-26 13:22:10 -08:00
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
protected:
|
2015-01-10 18:47:44 -08:00
|
|
|
friend class nsICODecoder;
|
|
|
|
|
2014-09-09 19:47:02 -07:00
|
|
|
virtual ~Decoder();
|
2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal hooks. Decoder implementations may override these and
|
|
|
|
* only these methods.
|
|
|
|
*/
|
2010-09-12 08:22:30 -07:00
|
|
|
virtual void InitInternal();
|
2015-01-08 00:04:31 -08:00
|
|
|
virtual void WriteInternal(const char* aBuffer, uint32_t aCount);
|
2010-09-12 08:22:30 -07:00
|
|
|
virtual void FinishInternal();
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07: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 00:19:42 -07:00
|
|
|
void PostSize(int32_t aWidth,
|
|
|
|
int32_t aHeight,
|
|
|
|
Orientation aOrientation = Orientation());
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2014-11-17 11:16:45 -08:00
|
|
|
// Called by decoders if they determine that the image has transparency.
|
2014-11-24 23:42:43 -08:00
|
|
|
//
|
|
|
|
// This should be fired as early as possible to allow observers to do things
|
2014-11-25 00:00:00 -08: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-07 13:07:23 -08:00
|
|
|
// immediately. PostFrameStop's aFrameOpacity argument, on the other hand, is
|
2014-11-25 00:00:00 -08: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 11:16:45 -08:00
|
|
|
void PostHasTransparency();
|
|
|
|
|
2012-12-19 12:11:42 -08:00
|
|
|
// Called by decoders when they begin a frame. Informs the image, sends
|
2010-08-22 19:30:46 -07:00
|
|
|
// notifications, and does internal book-keeping.
|
|
|
|
void PostFrameStart();
|
2012-12-19 12:11:42 -08: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-07 13:07:23 -08:00
|
|
|
void PostFrameStop(Opacity aFrameOpacity = Opacity::SOME_TRANSPARENCY,
|
|
|
|
DisposalMethod aDisposalMethod = DisposalMethod::KEEP,
|
2012-12-19 12:11:42 -08:00
|
|
|
int32_t aTimeout = 0,
|
2015-01-07 13:07:23 -08:00
|
|
|
BlendMethod aBlendMethod = BlendMethod::OVER);
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
// Called by the decoders when they have a region to invalidate. We may not
|
|
|
|
// actually pass these invalidations on right away.
|
|
|
|
void PostInvalidation(nsIntRect& aRect);
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-09-12 08:22:30 -07: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-19 12:11:42 -08: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 08:22:30 -07:00
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
// Data errors are the fault of the source data, decoder errors are our fault
|
|
|
|
void PostDataError();
|
|
|
|
void PostDecoderError(nsresult aFailCode);
|
|
|
|
|
2015-01-08 00:01:25 -08:00
|
|
|
/**
|
2015-01-10 18:47:44 -08:00
|
|
|
* Allocates a new frame, making it our new 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-08 00:01:25 -08:00
|
|
|
* If a non-paletted frame is desired, pass 0 for aPaletteDepth.
|
|
|
|
*/
|
2015-01-10 18:47:44 -08:00
|
|
|
nsresult AllocateFrame(uint32_t aFrameNum,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth = 0);
|
|
|
|
|
|
|
|
RawAccessFrameRef AllocateFrameInternal(uint32_t aFrameNum,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
uint32_t aDecodeFlags,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame);
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
/*
|
|
|
|
* Member variables.
|
|
|
|
*
|
|
|
|
*/
|
2015-01-11 05:34:20 -08:00
|
|
|
nsRefPtr<RasterImage> mImage;
|
2014-11-26 13:22:10 -08:00
|
|
|
RawAccessFrameRef mCurrentFrame;
|
2012-12-20 08:49:25 -08:00
|
|
|
ImageMetadata mImageMetadata;
|
2014-11-18 01:48:48 -08:00
|
|
|
nsIntRect mInvalidRect; // Tracks an invalidation region in the current frame.
|
2014-11-14 20:10:47 -08:00
|
|
|
Progress mProgress;
|
2010-09-12 08:22:30 -07:00
|
|
|
|
2013-01-28 09:26:36 -08: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;
|
|
|
|
|
2014-11-18 12:06:26 -08:00
|
|
|
// Telemetry data for this decoder.
|
|
|
|
TimeDuration mDecodeTime;
|
|
|
|
uint32_t mChunkCount;
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mDecodeFlags;
|
2014-10-15 13:52:20 -07:00
|
|
|
size_t mBytesDecoded;
|
2015-01-10 20:47:38 -08:00
|
|
|
bool mSendPartialInvalidations;
|
2011-08-25 13:09:01 -07:00
|
|
|
bool mDecodeDone;
|
|
|
|
bool mDataError;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFrameCount; // Number of frames, including anything in-progress
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
nsresult mFailCode;
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
bool mInitialized;
|
2010-08-22 19:30:46 -07:00
|
|
|
bool mSizeDecode;
|
2010-08-22 19:30:46 -07:00
|
|
|
bool mInFrame;
|
2011-11-09 13:39:16 -08:00
|
|
|
bool mIsAnimated;
|
2013-11-20 17:21:51 -08:00
|
|
|
};
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-08-22 19:30:45 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // MOZILLA_IMAGELIB_DECODER_H_
|