2007-03-22 10:30:00 -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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** @file
|
2010-08-13 21:09:49 -07:00
|
|
|
* This file declares the RasterImage class, which
|
|
|
|
* handles static and animated rasterized images.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @author Stuart Parmenter <pavlov@netscape.com>
|
|
|
|
* @author Chris Saari <saari@netscape.com>
|
|
|
|
* @author Arron Mogge <paper@animecity.nu>
|
|
|
|
* @author Andrew Smith <asmith15@learn.senecac.on.ca>
|
|
|
|
*/
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
#ifndef mozilla_imagelib_RasterImage_h_
|
|
|
|
#define mozilla_imagelib_RasterImage_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-13 21:09:48 -07:00
|
|
|
#include "Image.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "imgIContainer.h"
|
|
|
|
#include "nsIProperties.h"
|
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsWeakReference.h"
|
2007-10-18 17:36:34 -07:00
|
|
|
#include "nsTArray.h"
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
#include "imgFrame.h"
|
2009-09-12 15:44:18 -07:00
|
|
|
#include "nsThreadUtils.h"
|
2010-08-13 21:09:49 -07:00
|
|
|
#include "DiscardTracker.h"
|
2011-08-04 13:25:12 -07:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2011-09-22 13:25:56 -07:00
|
|
|
#include "mozilla/Telemetry.h"
|
2012-02-09 12:04:30 -08:00
|
|
|
#include "mozilla/LinkedList.h"
|
2012-07-26 12:33:45 -07:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include "imgIContainerDebug.h"
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-13 21:09:48 -07:00
|
|
|
class imgIDecoder;
|
2011-11-09 13:39:16 -08:00
|
|
|
class imgIContainerObserver;
|
2010-08-13 21:09:48 -07:00
|
|
|
class nsIInputStream;
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
#define NS_RASTERIMAGE_CID \
|
2010-08-05 07:53:43 -07:00
|
|
|
{ /* 376ff2c1-9bf6-418a-b143-3340c00112f7 */ \
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
0x376ff2c1, \
|
|
|
|
0x9bf6, \
|
|
|
|
0x418a, \
|
|
|
|
{0xb1, 0x43, 0x33, 0x40, 0xc0, 0x01, 0x12, 0xf7} \
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles static and animated image containers.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @par A Quick Walk Through
|
|
|
|
* The decoder initializes this class and calls AppendFrame() to add a frame.
|
2010-08-13 21:09:49 -07:00
|
|
|
* Once RasterImage detects more than one frame, it starts the animation
|
2011-11-09 13:39:16 -08:00
|
|
|
* with StartAnimation(). Note that the invalidation events for RasterImage are
|
|
|
|
* generated automatically using nsRefreshDriver.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
2011-11-09 13:39:16 -08:00
|
|
|
* StartAnimation() initializes the animation helper object and sets the time
|
|
|
|
* the first frame was displayed to the current clock time.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
2011-11-09 13:39:16 -08:00
|
|
|
* When the refresh driver corresponding to the imgIContainer that this image is
|
|
|
|
* a part of notifies the RasterImage that it's time to invalidate,
|
|
|
|
* RequestRefresh() is called with a given TimeStamp to advance to. As long as
|
|
|
|
* the timeout of the given frame (the frame's "delay") plus the time that frame
|
|
|
|
* was first displayed is less than or equal to the TimeStamp given,
|
|
|
|
* RequestRefresh() calls AdvanceFrame().
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* AdvanceFrame() is responsible for advancing a single frame of the animation.
|
|
|
|
* It can return true, meaning that the frame advanced, or false, meaning that
|
|
|
|
* the frame failed to advance (usually because the next frame hasn't been
|
|
|
|
* decoded yet). It is also responsible for performing the final animation stop
|
|
|
|
* procedure if the final frame of a non-looping animation is reached.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* Each frame can have a different method of removing itself. These are
|
|
|
|
* listed as imgIContainer::cDispose... constants. Notify() calls
|
|
|
|
* DoComposite() to handle any special frame destruction.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* The basic path through DoComposite() is:
|
|
|
|
* 1) Calculate Area that needs updating, which is at least the area of
|
|
|
|
* aNextFrame.
|
|
|
|
* 2) Dispose of previous frame.
|
|
|
|
* 3) Draw new image onto compositingFrame.
|
|
|
|
* See comments in DoComposite() for more information and optimizations.
|
|
|
|
*
|
|
|
|
* @par
|
2010-08-13 21:09:49 -07:00
|
|
|
* The rest of the RasterImage specific functions are used by DoComposite to
|
2007-03-22 10:30:00 -07:00
|
|
|
* destroy the old frame and build the new one.
|
|
|
|
*
|
|
|
|
* @note
|
2010-05-13 05:19:50 -07:00
|
|
|
* <li> "Mask", "Alpha", and "Alpha Level" are interchangeable phrases in
|
2010-08-13 21:09:49 -07:00
|
|
|
* respects to RasterImage.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* <li> GIFs never have more than a 1 bit alpha.
|
|
|
|
* <li> APNGs may have a full alpha channel.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* <li> Background color specified in GIF is ignored by web browsers.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* <li> If Frame 3 wants to dispose by restoring previous, what it wants is to
|
|
|
|
* restore the composition up to and including Frame 2, as well as Frame 2s
|
|
|
|
* disposal. So, in the middle of DoComposite when composing Frame 3, right
|
|
|
|
* after destroying Frame 2's area, we copy compositingFrame to
|
|
|
|
* prevCompositingFrame. When DoComposite gets called to do Frame 4, we
|
|
|
|
* copy prevCompositingFrame back, and then draw Frame 4 on top.
|
|
|
|
*
|
|
|
|
* @par
|
|
|
|
* The mAnim structure has members only needed for animated images, so
|
|
|
|
* it's not allocated until the second frame is added.
|
|
|
|
*
|
|
|
|
* @note
|
|
|
|
* mAnimationMode, mLoopCount and mObserver are not in the mAnim structure
|
|
|
|
* because the first two have public setters and the observer we only get
|
|
|
|
* in Init().
|
|
|
|
*/
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2011-11-08 19:14:41 -08:00
|
|
|
namespace layers {
|
|
|
|
class LayerManager;
|
|
|
|
class ImageContainer;
|
2012-09-24 13:31:30 -07:00
|
|
|
class Image;
|
2011-11-08 19:14:41 -08:00
|
|
|
}
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
class Decoder;
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2011-08-04 14:34:19 -07:00
|
|
|
class RasterImage : public Image
|
2010-09-07 17:34:18 -07:00
|
|
|
, public nsIProperties
|
|
|
|
, public nsSupportsWeakReference
|
|
|
|
#ifdef DEBUG
|
|
|
|
, public imgIContainerDebug
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
2007-06-21 13:45:49 -07:00
|
|
|
NS_DECL_NSIPROPERTIES
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_IMGICONTAINERDEBUG
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-11-17 12:39:23 -08:00
|
|
|
// BEGIN NS_DECL_IMGICONTAINER (minus GetAnimationMode/SetAnimationMode)
|
2010-11-17 12:37:08 -08:00
|
|
|
// ** Don't edit this chunk except to mirror changes in imgIContainer.idl **
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetWidth(int32_t *aWidth);
|
|
|
|
NS_IMETHOD GetHeight(int32_t *aHeight);
|
|
|
|
NS_IMETHOD GetType(uint16_t *aType);
|
|
|
|
NS_IMETHOD_(uint16_t) GetType(void);
|
2012-07-06 13:31:49 -07:00
|
|
|
NS_IMETHOD GetAnimated(bool *aAnimated);
|
|
|
|
NS_IMETHOD GetCurrentFrameIsOpaque(bool *aCurrentFrameIsOpaque);
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetFrame(uint32_t aWhichFrame, uint32_t aFlags, gfxASurface **_retval);
|
2012-07-06 13:14:07 -07:00
|
|
|
NS_IMETHOD GetImageContainer(mozilla::layers::ImageContainer **_retval);
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD CopyFrame(uint32_t aWhichFrame, uint32_t aFlags, gfxImageSurface **_retval);
|
|
|
|
NS_IMETHOD ExtractFrame(uint32_t aWhichFrame, const nsIntRect & aRect, uint32_t aFlags, imgIContainer **_retval);
|
|
|
|
NS_IMETHOD Draw(gfxContext *aContext, gfxPattern::GraphicsFilter aFilter, const gfxMatrix & aUserSpaceToImageSpace, const gfxRect & aFill, const nsIntRect & aSubimage, const nsIntSize & aViewportSize, uint32_t aFlags);
|
2010-11-17 12:37:08 -08:00
|
|
|
NS_IMETHOD_(nsIFrame *) GetRootLayoutFrame(void);
|
2012-07-06 13:31:49 -07:00
|
|
|
NS_IMETHOD RequestDecode(void);
|
|
|
|
NS_IMETHOD LockImage(void);
|
|
|
|
NS_IMETHOD UnlockImage(void);
|
|
|
|
NS_IMETHOD RequestDiscard(void);
|
|
|
|
NS_IMETHOD ResetAnimation(void);
|
2011-11-09 13:39:15 -08:00
|
|
|
NS_IMETHOD_(void) RequestRefresh(const mozilla::TimeStamp& aTime);
|
2010-11-17 12:37:08 -08:00
|
|
|
// END NS_DECL_IMGICONTAINER
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
RasterImage(imgStatusTracker* aStatusTracker = nullptr);
|
2010-08-13 21:09:49 -07:00
|
|
|
virtual ~RasterImage();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-09-07 17:33:02 -07:00
|
|
|
virtual nsresult StartAnimation();
|
|
|
|
virtual nsresult StopAnimation();
|
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
// Methods inherited from Image
|
2010-08-23 15:44:07 -07:00
|
|
|
nsresult Init(imgIDecoderObserver* aObserver,
|
2010-08-13 21:09:49 -07:00
|
|
|
const char* aMimeType,
|
2010-09-12 08:22:26 -07:00
|
|
|
const char* aURIString,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags);
|
2010-08-23 15:44:07 -07:00
|
|
|
void GetCurrentFrameRect(nsIntRect& aRect);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
// Raster-specific methods
|
2010-08-13 21:09:51 -07:00
|
|
|
static NS_METHOD WriteToRasterImage(nsIInputStream* aIn, void* aClosure,
|
|
|
|
const char* aFromRawSegment,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aToOffset, uint32_t aCount,
|
|
|
|
uint32_t* aWriteCount);
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-08-23 15:44:07 -07:00
|
|
|
/* The index of the current frame that would be drawn if the image was to be
|
|
|
|
* drawn now. */
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetCurrentFrameIndex();
|
2010-08-23 15:44:07 -07:00
|
|
|
|
|
|
|
/* The total number of frames in this image. */
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetNumFrames();
|
2010-08-23 15:44:07 -07:00
|
|
|
|
2012-02-19 19:51:48 -08:00
|
|
|
virtual size_t HeapSizeOfSourceWithComputedFallback(nsMallocSizeOfFun aMallocSizeOf) const;
|
|
|
|
virtual size_t HeapSizeOfDecodedWithComputedFallback(nsMallocSizeOfFun aMallocSizeOf) const;
|
|
|
|
virtual size_t NonHeapSizeOfDecoded() const;
|
|
|
|
virtual size_t OutOfProcessSizeOfDecoded() const;
|
2010-05-21 21:10:14 -07:00
|
|
|
|
2010-07-01 10:39:44 -07:00
|
|
|
/* Triggers discarding. */
|
2011-01-12 17:45:13 -08:00
|
|
|
void Discard(bool force = false);
|
|
|
|
void ForceDiscard() { Discard(/* force = */ true); }
|
2010-07-01 10:39:44 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
/* Callbacks for decoders */
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetFrameDisposalMethod(uint32_t aFrameNum,
|
|
|
|
int32_t aDisposalMethod);
|
|
|
|
nsresult SetFrameTimeout(uint32_t aFrameNum, int32_t aTimeout);
|
|
|
|
nsresult SetFrameBlendMethod(uint32_t aFrameNum, int32_t aBlendMethod);
|
|
|
|
nsresult SetFrameHasNoAlpha(uint32_t aFrameNum);
|
|
|
|
nsresult SetFrameAsNonPremult(uint32_t aFrameNum, bool aIsNonPremult);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the size of the container. This should only be called by the
|
|
|
|
* decoder. This function may be called multiple times, but will throw an
|
|
|
|
* error if subsequent calls do not match the first.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetSize(int32_t aWidth, int32_t aHeight);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2011-07-14 11:47:43 -07:00
|
|
|
* Ensures that a given frame number exists with the given parameters, and
|
|
|
|
* returns pointers to the data storage for that frame.
|
|
|
|
* It is not possible to create sparse frame arrays; you can only append
|
|
|
|
* frames to the current frame array.
|
2010-08-13 21:09:49 -07:00
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult EnsureFrame(uint32_t aFramenum, int32_t aX, int32_t aY,
|
|
|
|
int32_t aWidth, int32_t aHeight,
|
2010-08-13 21:09:49 -07:00
|
|
|
gfxASurface::gfxImageFormat aFormat,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
uint8_t** imageData,
|
|
|
|
uint32_t* imageLength,
|
|
|
|
uint32_t** paletteData,
|
|
|
|
uint32_t* paletteLength);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2011-07-14 11:47:43 -07:00
|
|
|
/**
|
|
|
|
* A shorthand for EnsureFrame, above, with aPaletteDepth = 0 and paletteData
|
|
|
|
* and paletteLength set to null.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult EnsureFrame(uint32_t aFramenum, int32_t aX, int32_t aY,
|
|
|
|
int32_t aWidth, int32_t aHeight,
|
2011-07-14 11:47:43 -07:00
|
|
|
gfxASurface::gfxImageFormat aFormat,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t** imageData,
|
|
|
|
uint32_t* imageLength);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
void FrameUpdated(uint32_t aFrameNum, nsIntRect& aUpdatedRect);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* notification that the entire image has been decoded */
|
|
|
|
nsresult DecodingComplete();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Number of times to loop the image.
|
|
|
|
* @note -1 means forever.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void SetLoopCount(int32_t aLoopCount);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* Add compressed source data to the imgContainer.
|
|
|
|
*
|
|
|
|
* The decoder will use this data, either immediately or at draw time, to
|
|
|
|
* decode the image.
|
|
|
|
*
|
|
|
|
* XXX This method's only caller (WriteToContainer) ignores the return
|
|
|
|
* value. Should this just return void?
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult AddSourceData(const char *aBuffer, uint32_t aCount);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* Called after the all the source data has been added with addSourceData. */
|
2011-06-11 12:23:00 -07:00
|
|
|
nsresult SourceDataComplete();
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* Called for multipart images when there's a new source image to add. */
|
2012-09-06 15:05:23 -07:00
|
|
|
nsresult NewSourceData();
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A hint of the number of bytes of source data that the image contains. If
|
|
|
|
* called early on, this can help reduce copying and reallocations by
|
|
|
|
* appropriately preallocating the source data buffer.
|
|
|
|
*
|
|
|
|
* We take this approach rather than having the source data management code do
|
|
|
|
* something more complicated (like chunklisting) because HTTP is by far the
|
|
|
|
* dominant source of images, and the Content-Length header is quite reliable.
|
|
|
|
* Thus, pre-allocation simplifies code and reduces the total number of
|
|
|
|
* allocations.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetSourceSizeHint(uint32_t sizeHint);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
// "Blend" method indicates how the current image is combined with the
|
|
|
|
// previous image.
|
|
|
|
enum {
|
|
|
|
// All color components of the frame, including alpha, overwrite the current
|
|
|
|
// contents of the frame's output buffer region
|
|
|
|
kBlendSource = 0,
|
|
|
|
|
|
|
|
// The frame should be composited onto the output buffer based on its alpha,
|
|
|
|
// using a simple OVER operation
|
|
|
|
kBlendOver
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kDisposeClearAll = -1, // Clear the whole image, revealing
|
|
|
|
// what was there before the gif displayed
|
|
|
|
kDisposeNotSpecified, // Leave frame, let new frame draw on top
|
|
|
|
kDisposeKeep, // Leave frame, let new frame draw on top
|
|
|
|
kDisposeClear, // Clear the frame's area, revealing bg
|
|
|
|
kDisposeRestorePrevious // Restore the previous (composited) frame
|
|
|
|
};
|
|
|
|
|
2010-09-12 08:22:31 -07:00
|
|
|
const char* GetURIString() { return mURIString.get();}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
struct Anim
|
|
|
|
{
|
|
|
|
//! Area of the first frame that needs to be redrawn on subsequent loops.
|
|
|
|
nsIntRect firstFrameRefreshArea;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t currentAnimationFrameIndex; // 0 to numFrames-1
|
2011-11-09 13:39:16 -08:00
|
|
|
|
|
|
|
// the time that the animation advanced to the current frame
|
|
|
|
TimeStamp currentAnimationFrameTime;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//! Track the last composited frame for Optimizations (See DoComposite code)
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t lastCompositedFrameIndex;
|
2007-03-22 10:30:00 -07:00
|
|
|
/** For managing blending of frames
|
|
|
|
*
|
|
|
|
* Some animations will use the compositingFrame to composite images
|
|
|
|
* and just hand this back to the caller when it is time to draw the frame.
|
|
|
|
* NOTE: When clearing compositingFrame, remember to set
|
|
|
|
* lastCompositedFrameIndex to -1. Code assume that if
|
|
|
|
* lastCompositedFrameIndex >= 0 then compositingFrame exists.
|
|
|
|
*/
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
nsAutoPtr<imgFrame> compositingFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
/** the previous composited frame, for DISPOSE_RESTORE_PREVIOUS
|
|
|
|
*
|
|
|
|
* The Previous Frame (all frames composited up to the current) needs to be
|
|
|
|
* stored in cases where the image specifies it wants the last frame back
|
|
|
|
* when it's done with the current frame.
|
|
|
|
*/
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
nsAutoPtr<imgFrame> compositingPrevFrame;
|
2010-05-12 14:41:47 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
Anim() :
|
|
|
|
firstFrameRefreshArea(),
|
|
|
|
currentAnimationFrameIndex(0),
|
2011-11-09 13:39:16 -08:00
|
|
|
lastCompositedFrameIndex(-1) {}
|
|
|
|
~Anim() {}
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2012-02-09 12:04:30 -08:00
|
|
|
/**
|
|
|
|
* DecodeWorker keeps a linked list of DecodeRequests to keep track of the
|
|
|
|
* images it needs to decode.
|
|
|
|
*
|
|
|
|
* Each RasterImage has a single DecodeRequest member.
|
|
|
|
*/
|
|
|
|
struct DecodeRequest : public LinkedListElement<DecodeRequest>
|
|
|
|
{
|
|
|
|
DecodeRequest(RasterImage* aImage)
|
|
|
|
: mImage(aImage)
|
|
|
|
, mIsASAP(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RasterImage* const mImage;
|
|
|
|
|
|
|
|
/* Keeps track of how much time we've burned decoding this particular decode
|
|
|
|
* request. */
|
|
|
|
TimeDuration mDecodeTime;
|
|
|
|
|
|
|
|
/* True if we need to handle this decode as soon as possible. */
|
|
|
|
bool mIsASAP;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DecodeWorker is a singleton class we use when decoding large images.
|
|
|
|
*
|
|
|
|
* When we wish to decode an image larger than
|
|
|
|
* image.mem.max_bytes_for_sync_decode, we call DecodeWorker::RequestDecode()
|
|
|
|
* for the image. This adds the image to a queue of pending requests and posts
|
|
|
|
* the DecodeWorker singleton to the event queue, if it's not already pending
|
|
|
|
* there.
|
|
|
|
*
|
|
|
|
* When the DecodeWorker is run from the event queue, it decodes the image (and
|
|
|
|
* all others it's managing) in chunks, periodically yielding control back to
|
|
|
|
* the event loop.
|
|
|
|
*
|
|
|
|
* An image being decoded may have one of two priorities: normal or ASAP. ASAP
|
|
|
|
* images are always decoded before normal images. (We currently give ASAP
|
|
|
|
* priority to images which appear onscreen but are not yet decoded.)
|
|
|
|
*/
|
|
|
|
class DecodeWorker : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static DecodeWorker* Singleton();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ask the DecodeWorker to asynchronously decode this image.
|
|
|
|
*/
|
|
|
|
void RequestDecode(RasterImage* aImg);
|
|
|
|
|
2012-08-13 11:12:15 -07:00
|
|
|
/**
|
|
|
|
* Decode aImg for a short amount of time, and post the remainder to the
|
|
|
|
* queue.
|
|
|
|
*/
|
|
|
|
void DecodeABitOf(RasterImage* aImg);
|
|
|
|
|
2012-02-09 12:04:30 -08:00
|
|
|
/**
|
|
|
|
* Give this image ASAP priority; it will be decoded before all non-ASAP
|
|
|
|
* images. You can call MarkAsASAP before or after you call RequestDecode
|
|
|
|
* for the image, but if you MarkAsASAP before you call RequestDecode, you
|
|
|
|
* still need to call RequestDecode.
|
|
|
|
*
|
|
|
|
* StopDecoding() resets the image's ASAP flag.
|
|
|
|
*/
|
|
|
|
void MarkAsASAP(RasterImage* aImg);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ask the DecodeWorker to stop decoding this image. Internally, we also
|
|
|
|
* call this function when we finish decoding an image.
|
|
|
|
*
|
|
|
|
* Since the DecodeWorker keeps raw pointers to RasterImages, make sure you
|
|
|
|
* call this before a RasterImage is destroyed!
|
|
|
|
*/
|
|
|
|
void StopDecoding(RasterImage* aImg);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronously decode the beginning of the image until we run out of
|
|
|
|
* bytes or we get the image's size. Note that this done on a best-effort
|
|
|
|
* basis; if the size is burried too deep in the image, we'll give up.
|
|
|
|
*
|
|
|
|
* @return NS_ERROR if an error is encountered, and NS_OK otherwise. (Note
|
|
|
|
* that we return NS_OK even when the size was not found.)
|
|
|
|
*/
|
|
|
|
nsresult DecodeUntilSizeAvailable(RasterImage* aImg);
|
|
|
|
|
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
|
|
|
private: /* statics */
|
2012-07-26 12:33:45 -07:00
|
|
|
static StaticRefPtr<DecodeWorker> sSingleton;
|
2012-02-09 12:04:30 -08:00
|
|
|
|
|
|
|
private: /* methods */
|
|
|
|
DecodeWorker()
|
|
|
|
: mPendingInEventLoop(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
/* Post ourselves to the event loop if we're not currently pending. */
|
|
|
|
void EnsurePendingInEventLoop();
|
|
|
|
|
|
|
|
/* Add the given request to the appropriate list of decode requests, but
|
|
|
|
* don't ensure that we're pending in the event loop. */
|
|
|
|
void AddDecodeRequest(DecodeRequest* aRequest);
|
|
|
|
|
|
|
|
enum DecodeType {
|
|
|
|
DECODE_TYPE_NORMAL,
|
|
|
|
DECODE_TYPE_UNTIL_SIZE
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Decode some chunks of the given image. If aDecodeType is UNTIL_SIZE,
|
|
|
|
* decode until we have the image's size, then stop. */
|
|
|
|
nsresult DecodeSomeOfImage(RasterImage* aImg,
|
|
|
|
DecodeType aDecodeType = DECODE_TYPE_NORMAL);
|
|
|
|
|
|
|
|
private: /* members */
|
|
|
|
|
|
|
|
LinkedList<DecodeRequest> mASAPDecodeRequests;
|
|
|
|
LinkedList<DecodeRequest> mNormalDecodeRequests;
|
|
|
|
|
|
|
|
/* True if we've posted ourselves to the event loop and expect Run() to
|
|
|
|
* be called sometime in the future. */
|
|
|
|
bool mPendingInEventLoop;
|
|
|
|
};
|
|
|
|
|
2011-11-09 13:39:16 -08:00
|
|
|
/**
|
|
|
|
* Advances the animation. Typically, this will advance a single frame, but it
|
|
|
|
* may advance multiple frames. This may happen if we have infrequently
|
|
|
|
* "ticking" refresh drivers (e.g. in background tabs), or extremely short-
|
|
|
|
* lived animation frames.
|
|
|
|
*
|
|
|
|
* @param aTime the time that the animation should advance to. This will
|
|
|
|
* typically be <= TimeStamp::Now().
|
|
|
|
*
|
|
|
|
* @param [out] aDirtyRect a pointer to an nsIntRect which encapsulates the
|
|
|
|
* area to be repainted after the frame is advanced.
|
|
|
|
*
|
|
|
|
* @returns true, if the frame was successfully advanced, false if it was not
|
|
|
|
* able to be advanced (e.g. the frame to which we want to advance is
|
|
|
|
* still decoding). Note: If false is returned, then aDirtyRect will
|
|
|
|
* remain unmodified.
|
|
|
|
*/
|
|
|
|
bool AdvanceFrame(mozilla::TimeStamp aTime, nsIntRect* aDirtyRect);
|
|
|
|
|
2010-03-08 11:01:04 -08:00
|
|
|
/**
|
|
|
|
* Deletes and nulls out the frame in mFrames[framenum].
|
|
|
|
*
|
|
|
|
* Does not change the size of mFrames.
|
|
|
|
*
|
|
|
|
* @param framenum The index of the frame to be deleted.
|
|
|
|
* Must lie in [0, mFrames.Length() )
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void DeleteImgFrame(uint32_t framenum);
|
2010-03-08 11:01:04 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
imgFrame* GetImgFrameNoDecode(uint32_t framenum);
|
|
|
|
imgFrame* GetImgFrame(uint32_t framenum);
|
|
|
|
imgFrame* GetDrawableImgFrame(uint32_t framenum);
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
imgFrame* GetCurrentImgFrame();
|
2009-11-12 15:18:40 -08:00
|
|
|
imgFrame* GetCurrentDrawableImgFrame();
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetCurrentImgFrameIndex() const;
|
2011-11-09 13:39:16 -08:00
|
|
|
mozilla::TimeStamp GetCurrentImgFrameEndTime() const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-07-23 11:49:00 -07:00
|
|
|
inline void EnsureAnimExists()
|
2009-09-12 15:44:18 -07:00
|
|
|
{
|
|
|
|
if (!mAnim) {
|
|
|
|
|
|
|
|
// Create the animation context
|
2007-03-22 10:30:00 -07:00
|
|
|
mAnim = new Anim();
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2009-09-15 17:30:52 -07:00
|
|
|
// We don't support discarding animated images (See bug 414259).
|
|
|
|
// Lock the image and throw away the key.
|
|
|
|
//
|
|
|
|
// Note that this is inefficient, since we could get rid of the source
|
|
|
|
// data too. However, doing this is actually hard, because we're probably
|
|
|
|
// calling ensureAnimExists mid-decode, and thus we're decoding out of
|
|
|
|
// the source buffer. Since we're going to fix this anyway later, and
|
|
|
|
// since we didn't kill the source data in the old world either, locking
|
|
|
|
// is acceptable for the moment.
|
|
|
|
LockImage();
|
2011-11-09 13:39:16 -08:00
|
|
|
|
|
|
|
// Notify our observers that we are starting animation.
|
|
|
|
mStatusTracker->RecordImageIsAnimated();
|
2009-09-12 15:44:18 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-11-09 13:39:16 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** Function for doing the frame compositing of animations
|
|
|
|
*
|
|
|
|
* @param aDirtyRect Area that the display will need to update
|
|
|
|
* @param aPrevFrame Last Frame seen/processed
|
|
|
|
* @param aNextFrame Frame we need to incorperate/display
|
|
|
|
* @param aNextFrameIndex Position of aNextFrame in mFrames list
|
|
|
|
*/
|
2011-10-07 21:03:47 -07:00
|
|
|
nsresult DoComposite(nsIntRect* aDirtyRect,
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
imgFrame* aPrevFrame,
|
|
|
|
imgFrame* aNextFrame,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aNextFrameIndex);
|
2011-11-09 13:39:16 -08:00
|
|
|
|
2007-06-07 08:10:25 -07:00
|
|
|
/** Clears an area of <aFrame> with transparent black.
|
2007-04-25 14:21:28 -07:00
|
|
|
*
|
|
|
|
* @param aFrame Target Frame
|
|
|
|
*
|
2007-06-07 08:10:25 -07:00
|
|
|
* @note Does also clears the transparancy mask
|
2007-04-25 14:21:28 -07:00
|
|
|
*/
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
static void ClearFrame(imgFrame* aFrame);
|
2011-11-09 13:39:16 -08:00
|
|
|
|
2007-04-25 14:21:28 -07:00
|
|
|
//! @overload
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
static void ClearFrame(imgFrame* aFrame, nsIntRect &aRect);
|
2007-04-25 14:21:28 -07:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
//! Copy one frames's image and mask into another
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool CopyFrameImage(imgFrame *aSrcFrame,
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
imgFrame *aDstFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
/** Draws one frames's image to into another,
|
2007-08-25 12:18:44 -07:00
|
|
|
* at the position specified by aRect
|
|
|
|
*
|
|
|
|
* @param aSrcFrame Frame providing the source image
|
|
|
|
* @param aDstFrame Frame where the image is drawn into
|
|
|
|
* @param aRect The position and size to draw the image
|
|
|
|
*/
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
static nsresult DrawFrameTo(imgFrame *aSrcFrame,
|
|
|
|
imgFrame *aDstFrame,
|
2007-08-25 12:18:44 -07:00
|
|
|
nsIntRect& aRect);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult InternalAddFrameHelper(uint32_t framenum, imgFrame *frame,
|
|
|
|
uint8_t **imageData, uint32_t *imageLength,
|
|
|
|
uint32_t **paletteData, uint32_t *paletteLength);
|
|
|
|
nsresult InternalAddFrame(uint32_t framenum, int32_t aX, int32_t aY, int32_t aWidth, int32_t aHeight,
|
|
|
|
gfxASurface::gfxImageFormat aFormat, uint8_t aPaletteDepth,
|
|
|
|
uint8_t **imageData, uint32_t *imageLength,
|
|
|
|
uint32_t **paletteData, uint32_t *paletteLength);
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
bool ApplyDecodeFlags(uint32_t aNewFlags);
|
2012-08-13 09:35:32 -07:00
|
|
|
|
2012-09-24 13:31:30 -07:00
|
|
|
already_AddRefed<layers::Image> GetCurrentImage();
|
|
|
|
void UpdateImageContainer();
|
|
|
|
|
|
|
|
void SetInUpdateImageContainer(bool aInUpdate) { mInUpdateImageContainer = aInUpdate; }
|
|
|
|
bool IsInUpdateImageContainer() { return mInUpdateImageContainer; }
|
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
private: // data
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIntSize mSize;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
|
|
|
// Whether mFrames below were decoded using any special flags.
|
|
|
|
// Some flags (e.g. unpremultiplied data) may not be compatible
|
|
|
|
// with the browser's needs for displaying the image to the user.
|
|
|
|
// As such, we may need to redecode if we're being asked for
|
|
|
|
// a frame with different flags. 0 indicates default flags.
|
|
|
|
//
|
|
|
|
// Valid flag bits are imgIContainer::FLAG_DECODE_NO_PREMULTIPLY_ALPHA
|
|
|
|
// and imgIContainer::FLAG_DECODE_NO_COLORSPACE_CONVERSION.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFrameDecodeFlags;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
//! All the frames of the image
|
2009-09-12 15:44:18 -07:00
|
|
|
// IMPORTANT: if you use mFrames in a method, call EnsureImageIsDecoded() first
|
|
|
|
// to ensure that the frames actually exist (they may have been discarded to save
|
|
|
|
// memory, or we may be decoding on draw).
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-20 18:50:15 -07:00
|
|
|
nsTArray<imgFrame *> mFrames;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIProperties> mProperties;
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// IMPORTANT: if you use mAnim in a method, call EnsureImageIsDecoded() first to ensure
|
|
|
|
// that the frames actually exist (they may have been discarded to save memory, or
|
|
|
|
// we maybe decoding on draw).
|
2010-08-13 21:09:49 -07:00
|
|
|
RasterImage::Anim* mAnim;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//! # loops remaining before animation stops (-1 no stop)
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mLoopCount;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
//! imgIDecoderObserver
|
2007-03-22 10:30:00 -07:00
|
|
|
nsWeakPtr mObserver;
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Discard members
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mLockCount;
|
2012-03-15 13:30:41 -07:00
|
|
|
DiscardTracker::Node mDiscardTrackerNode;
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Source data members
|
2011-06-08 19:21:53 -07:00
|
|
|
FallibleTArray<char> mSourceData;
|
2009-09-12 15:44:18 -07:00
|
|
|
nsCString mSourceDataMimeType;
|
2010-09-12 08:22:26 -07:00
|
|
|
nsCString mURIString;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
friend class DiscardTracker;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
|
|
|
// Decoder and friends
|
2010-08-22 19:30:46 -07:00
|
|
|
nsRefPtr<Decoder> mDecoder;
|
2012-02-09 12:04:30 -08:00
|
|
|
DecodeRequest mDecodeRequest;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mBytesDecoded;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2011-09-08 11:05:11 -07:00
|
|
|
// How many times we've decoded this image.
|
|
|
|
// This is currently only used for statistics
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mDecodeCount;
|
2011-09-08 11:05:11 -07:00
|
|
|
|
2011-11-08 19:14:41 -08:00
|
|
|
// Cached value for GetImageContainer.
|
|
|
|
nsRefPtr<mozilla::layers::ImageContainer> mImageContainer;
|
|
|
|
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFramesNotified;
|
2010-09-07 17:34:18 -07:00
|
|
|
#endif
|
|
|
|
|
2010-05-12 14:41:47 -07:00
|
|
|
// Boolean flags (clustered together to conserve space):
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHasSize:1; // Has SetSize() been called?
|
|
|
|
bool mDecodeOnDraw:1; // Decoding on draw?
|
|
|
|
bool mMultipart:1; // Multipart?
|
|
|
|
bool mDiscardable:1; // Is container discardable?
|
|
|
|
bool mHasSourceData:1; // Do we have source data?
|
2010-05-12 14:41:47 -07:00
|
|
|
|
|
|
|
// Do we have the frames in decoded form?
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDecoded:1;
|
|
|
|
bool mHasBeenDecoded:1;
|
2010-05-12 14:41:47 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mInDecoder:1;
|
2010-05-12 14:41:47 -07:00
|
|
|
|
2010-09-07 17:33:02 -07:00
|
|
|
// Whether the animation can stop, due to running out
|
|
|
|
// of frames, or no more owning request
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mAnimationFinished:1;
|
2010-09-07 17:33:02 -07:00
|
|
|
|
2012-09-17 18:53:37 -07:00
|
|
|
// Whether we're calling Decoder::Finish() from ShutdownDecoder.
|
|
|
|
bool mFinishing:1;
|
|
|
|
|
2012-09-24 13:31:30 -07:00
|
|
|
bool mInUpdateImageContainer:1;
|
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Decoding
|
|
|
|
nsresult WantDecodedFrames();
|
|
|
|
nsresult SyncDecode();
|
2010-08-22 19:30:46 -07:00
|
|
|
nsresult InitDecoder(bool aDoSizeDecode);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult WriteToDecoder(const char *aBuffer, uint32_t aCount);
|
|
|
|
nsresult DecodeSomeData(uint32_t aMaxBytes);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsDecodeFinished();
|
2011-08-10 16:12:08 -07:00
|
|
|
TimeStamp mDrawStartTime;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
|
|
|
// Decoder shutdown
|
|
|
|
enum eShutdownIntent {
|
|
|
|
eShutdownIntent_Done = 0,
|
|
|
|
eShutdownIntent_Interrupted = 1,
|
|
|
|
eShutdownIntent_Error = 2,
|
|
|
|
eShutdownIntent_AllCount = 3
|
|
|
|
};
|
|
|
|
nsresult ShutdownDecoder(eShutdownIntent aIntent);
|
|
|
|
|
|
|
|
// Helpers
|
|
|
|
void DoError();
|
2011-08-05 06:57:16 -07:00
|
|
|
bool CanDiscard();
|
|
|
|
bool CanForciblyDiscard();
|
|
|
|
bool DiscardingActive();
|
2012-02-19 19:51:48 -08:00
|
|
|
bool StoringSourceData() const;
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-09-07 17:33:02 -07:00
|
|
|
protected:
|
2011-08-05 06:57:16 -07:00
|
|
|
bool ShouldAnimate();
|
2009-09-12 15:44:18 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// Asynchronous Decode Requestor
|
|
|
|
//
|
|
|
|
// We use this class when someone calls requestDecode() from within a decode
|
|
|
|
// notification. Since requestDecode() involves modifying the decoder's state
|
|
|
|
// (for example, possibly shutting down a header-only decode and starting a
|
|
|
|
// full decode), we don't want to do this from inside a decoder.
|
|
|
|
class imgDecodeRequestor : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
imgDecodeRequestor(imgIContainer *aContainer) {
|
|
|
|
mContainer = do_GetWeakReference(aContainer);
|
|
|
|
}
|
|
|
|
NS_IMETHOD Run() {
|
|
|
|
nsCOMPtr<imgIContainer> con = do_QueryReferent(mContainer);
|
|
|
|
if (con)
|
|
|
|
con->RequestDecode();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsWeakPtr mContainer;
|
|
|
|
};
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-08-13 21:09:49 -07:00
|
|
|
} // namespace mozilla
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
#endif /* mozilla_imagelib_RasterImage_h_ */
|