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"
|
2013-06-17 13:49:04 -07:00
|
|
|
#include "FrameBlender.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "imgIContainer.h"
|
|
|
|
#include "nsIProperties.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"
|
2014-11-18 18:17:17 -08:00
|
|
|
#include "DecodePool.h"
|
2013-08-25 00:19:42 -07:00
|
|
|
#include "Orientation.h"
|
2013-09-07 06:01:08 -07:00
|
|
|
#include "nsIObserver.h"
|
2014-11-26 13:22:10 -08:00
|
|
|
#include "mozilla/Maybe.h"
|
2013-06-23 05:03:39 -07:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2013-12-17 14:04:31 -08:00
|
|
|
#include "mozilla/ReentrantMonitor.h"
|
2011-08-04 13:25:12 -07:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2014-11-18 12:06:27 -08:00
|
|
|
#include "mozilla/TypedEnum.h"
|
2012-10-04 12:45:07 -07:00
|
|
|
#include "mozilla/WeakPtr.h"
|
2014-09-09 06:39:00 -07:00
|
|
|
#include "mozilla/UniquePtr.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 nsIInputStream;
|
2013-03-01 15:17:24 -08:00
|
|
|
class nsIThreadPool;
|
2013-09-07 06:01:08 -07:00
|
|
|
class nsIRequest;
|
2010-08-13 21:09:48 -07:00
|
|
|
|
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
|
2013-03-29 13:14:19 -07:00
|
|
|
* listed as imgIContainer::cDispose... constants. Notify() calls
|
2007-03-22 10:30:00 -07:00
|
|
|
* 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.
|
|
|
|
*/
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-12-17 14:04:31 -08:00
|
|
|
|
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
|
|
|
}
|
2013-12-17 14:04:31 -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;
|
2013-07-15 11:38:59 -07:00
|
|
|
class FrameAnimator;
|
2014-11-18 12:06:27 -08:00
|
|
|
|
2014-08-05 10:33:55 -07:00
|
|
|
class RasterImage MOZ_FINAL : public ImageResource
|
|
|
|
, public nsIProperties
|
|
|
|
, public SupportsWeakPtr<RasterImage>
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
2014-08-05 10:33:55 -07:00
|
|
|
, public imgIContainerDebug
|
2010-09-07 17:34:18 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2014-06-23 11:49:08 -07:00
|
|
|
// (no public constructor - use ImageFactory)
|
|
|
|
virtual ~RasterImage();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
2014-02-20 18:33:49 -08:00
|
|
|
MOZ_DECLARE_REFCOUNTED_TYPENAME(RasterImage)
|
2013-07-18 19:23:31 -07:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2007-06-21 13:45:49 -07:00
|
|
|
NS_DECL_NSIPROPERTIES
|
2012-10-19 13:27:11 -07:00
|
|
|
NS_DECL_IMGICONTAINER
|
2010-09-07 17:34:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_DECL_IMGICONTAINERDEBUG
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-01-02 16:16:57 -08:00
|
|
|
virtual nsresult StartAnimation() MOZ_OVERRIDE;
|
|
|
|
virtual nsresult StopAnimation() MOZ_OVERRIDE;
|
2010-09-07 17:33:02 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
// Methods inherited from Image
|
2013-02-12 19:00:03 -08:00
|
|
|
nsresult Init(const char* aMimeType,
|
2015-01-02 16:16:57 -08:00
|
|
|
uint32_t aFlags) MOZ_OVERRIDE;
|
2015-01-07 01:40:23 -08:00
|
|
|
|
2014-11-27 19:55:57 -08:00
|
|
|
virtual void OnSurfaceDiscarded() MOZ_OVERRIDE;
|
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 total number of frames in this image. */
|
2013-06-17 13:49:04 -07:00
|
|
|
uint32_t GetNumFrames() const;
|
2010-08-23 15:44:07 -07:00
|
|
|
|
2015-01-02 16:16:57 -08:00
|
|
|
virtual size_t SizeOfSourceWithComputedFallback(MallocSizeOf aMallocSizeOf) const MOZ_OVERRIDE;
|
2014-11-26 18:00:15 -08:00
|
|
|
virtual size_t SizeOfDecoded(gfxMemoryLocation aLocation,
|
2015-01-02 16:16:57 -08:00
|
|
|
MallocSizeOf aMallocSizeOf) const MOZ_OVERRIDE;
|
2014-05-08 02:53:00 -07:00
|
|
|
|
2010-07-01 10:39:44 -07:00
|
|
|
/* Triggers discarding. */
|
2014-11-27 19:56:00 -08:00
|
|
|
void Discard();
|
2010-07-01 10:39:44 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
/* Callbacks for decoders */
|
2013-08-25 00:19:42 -07:00
|
|
|
/** Sets the size and inherent orientation 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.
|
2010-08-13 21:09:49 -07:00
|
|
|
*/
|
2013-08-25 00:19:42 -07:00
|
|
|
nsresult SetSize(int32_t aWidth, int32_t aHeight, Orientation aOrientation);
|
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
|
2014-11-26 13:22:10 -08:00
|
|
|
* returns a RawAccessFrameRef for that frame.
|
2011-07-14 11:47:43 -07:00
|
|
|
* It is not possible to create sparse frame arrays; you can only append
|
2014-11-26 13:22:10 -08:00
|
|
|
* frames to the current frame array, or if there is only one frame in the
|
|
|
|
* array, replace that frame.
|
|
|
|
* If a non-paletted frame is desired, pass 0 for aPaletteDepth.
|
2011-07-14 11:47:43 -07:00
|
|
|
*/
|
2014-11-26 13:22:10 -08:00
|
|
|
RawAccessFrameRef EnsureFrame(uint32_t aFrameNum,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
uint32_t aDecodeFlags,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/* notification that the entire image has been decoded */
|
2014-11-26 13:22:10 -08:00
|
|
|
void DecodingComplete(imgFrame* aFinalFrame);
|
2010-08-13 21:09:49 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
virtual nsresult OnImageDataAvailable(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
|
|
|
nsIInputStream* aInStr,
|
|
|
|
uint64_t aSourceOffset,
|
|
|
|
uint32_t aCount) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult OnImageDataComplete(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
2013-02-13 18:41:10 -08:00
|
|
|
nsresult aStatus,
|
|
|
|
bool aLastPart) MOZ_OVERRIDE;
|
2010-08-13 21:09:49 -07:00
|
|
|
|
2014-11-18 18:17:17 -08:00
|
|
|
static already_AddRefed<nsIEventTarget> GetEventTarget();
|
2013-09-28 11:28:42 -07:00
|
|
|
|
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
|
|
|
|
2013-03-22 16:12:40 -07:00
|
|
|
/* Provide a hint for the requested resolution of the resulting image. */
|
|
|
|
void SetRequestedResolution(const nsIntSize requestedResolution) {
|
|
|
|
mRequestedResolution = requestedResolution;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIntSize GetRequestedResolution() {
|
|
|
|
return mRequestedResolution;
|
|
|
|
}
|
2014-02-28 13:43:14 -08:00
|
|
|
/* Provide a hint for the requested dimension of the resulting image. */
|
|
|
|
void SetRequestedSampleSize(int requestedSampleSize) {
|
|
|
|
mRequestedSampleSize = requestedSampleSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetRequestedSampleSize() {
|
|
|
|
return mRequestedSampleSize;
|
|
|
|
}
|
|
|
|
|
2012-12-19 12:11:42 -08:00
|
|
|
nsCString GetURIString() {
|
2013-01-30 12:11:20 -08:00
|
|
|
nsCString spec;
|
|
|
|
if (GetURI()) {
|
|
|
|
GetURI()->GetSpec(spec);
|
|
|
|
}
|
|
|
|
return spec;
|
|
|
|
}
|
2010-09-12 08:22:31 -07:00
|
|
|
|
2012-09-26 08:33:06 -07:00
|
|
|
static void Initialize();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
2014-11-18 18:17:17 -08:00
|
|
|
friend class DecodePool;
|
|
|
|
friend class DecodeWorker;
|
|
|
|
friend class FrameNeededWorker;
|
|
|
|
friend class NotifyProgressWorker;
|
2013-02-27 11:23:08 -08:00
|
|
|
|
2014-11-18 18:17:17 -08:00
|
|
|
nsresult FinishedSomeDecoding(ShutdownReason aReason = ShutdownReason::DONE,
|
2014-11-14 20:10:47 -08:00
|
|
|
Progress aProgress = NoProgress);
|
2013-01-18 13:47:18 -08:00
|
|
|
|
2014-09-12 18:29:27 -07:00
|
|
|
void DrawWithPreDownscaleIfNeeded(DrawableFrameRef&& aFrameRef,
|
|
|
|
gfxContext* aContext,
|
2014-08-22 13:12:38 -07:00
|
|
|
const nsIntSize& aSize,
|
|
|
|
const ImageRegion& aRegion,
|
2013-10-01 14:01:19 -07:00
|
|
|
GraphicsFilter aFilter,
|
2013-04-25 15:08:58 -07:00
|
|
|
uint32_t aFlags);
|
2012-04-03 14:57:22 -07:00
|
|
|
|
2014-04-19 18:28:38 -07:00
|
|
|
TemporaryRef<gfx::SourceSurface> CopyFrame(uint32_t aWhichFrame,
|
2014-09-26 18:50:24 -07:00
|
|
|
uint32_t aFlags,
|
|
|
|
bool aShouldSyncNotify = true);
|
|
|
|
TemporaryRef<gfx::SourceSurface> GetFrameInternal(uint32_t aWhichFrame,
|
|
|
|
uint32_t aFlags,
|
|
|
|
bool aShouldSyncNotify = true);
|
|
|
|
|
2014-11-26 13:22:10 -08:00
|
|
|
DrawableFrameRef LookupFrameInternal(uint32_t aFrameNum,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
uint32_t aFlags);
|
|
|
|
DrawableFrameRef LookupFrame(uint32_t aFrameNum,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
uint32_t aFlags,
|
|
|
|
bool aShouldSyncNotify = true);
|
2014-09-12 18:29:27 -07:00
|
|
|
uint32_t GetCurrentFrameIndex() const;
|
|
|
|
uint32_t GetRequestedFrameIndex(uint32_t aWhichFrame) const;
|
2012-10-13 19:17:40 -07:00
|
|
|
|
2014-11-10 12:37:35 -08:00
|
|
|
nsIntRect GetFirstFrameRect();
|
|
|
|
|
2013-09-24 13:45:13 -07:00
|
|
|
size_t SizeOfDecodedWithComputedFallbackIfHeap(gfxMemoryLocation aLocation,
|
2014-06-16 15:25:43 -07:00
|
|
|
MallocSizeOf aMallocSizeOf) const;
|
2012-10-13 19:17:40 -07:00
|
|
|
|
2014-11-26 13:22:10 -08:00
|
|
|
RawAccessFrameRef InternalAddFrame(uint32_t aFrameNum,
|
|
|
|
const nsIntRect& aFrameRect,
|
|
|
|
uint32_t aDecodeFlags,
|
|
|
|
gfx::SurfaceFormat aFormat,
|
|
|
|
uint8_t aPaletteDepth,
|
|
|
|
imgFrame* aPreviousFrame);
|
2013-02-13 18:41:10 -08:00
|
|
|
nsresult DoImageDataComplete();
|
|
|
|
|
2012-09-24 13:31:30 -07:00
|
|
|
already_AddRefed<layers::Image> GetCurrentImage();
|
|
|
|
void UpdateImageContainer();
|
|
|
|
|
2012-10-04 13:02:15 -07:00
|
|
|
enum RequestDecodeType {
|
|
|
|
ASYNCHRONOUS,
|
2013-05-09 06:36:57 -07:00
|
|
|
SYNCHRONOUS_NOTIFY,
|
|
|
|
SYNCHRONOUS_NOTIFY_AND_SOME_DECODE
|
2012-10-04 13:02:15 -07:00
|
|
|
};
|
|
|
|
NS_IMETHOD RequestDecodeCore(RequestDecodeType aDecodeType);
|
2012-09-24 13:31:30 -07:00
|
|
|
|
2013-04-26 12:58:17 -07:00
|
|
|
// We would like to just check if we have a zero lock count, but we can't do
|
|
|
|
// that for animated images because in EnsureAnimExists we lock the image and
|
|
|
|
// never unlock so that animated images always have their lock count >= 1. In
|
|
|
|
// that case we use our animation consumers count as a proxy for lock count.
|
|
|
|
bool IsUnlocked() { return (mLockCount == 0 || (mAnim && mAnimationConsumers == 0)); }
|
|
|
|
|
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;
|
2013-08-25 00:19:42 -07:00
|
|
|
Orientation mOrientation;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
2013-06-17 13:49:04 -07:00
|
|
|
// Whether our frames were decoded using any special flags.
|
2011-01-12 17:45:13 -08:00
|
|
|
// 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
|
|
|
|
2014-11-26 13:22:10 -08:00
|
|
|
//! All the frames of the image.
|
|
|
|
Maybe<FrameBlender> mFrameBlender;
|
2013-04-03 19:19:38 -07:00
|
|
|
|
2014-08-22 13:49:54 -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).
|
2014-09-09 06:39:00 -07:00
|
|
|
UniquePtr<FrameAnimator> mAnim;
|
2013-03-29 13:14:19 -07:00
|
|
|
|
2014-11-27 19:55:57 -08:00
|
|
|
// Image locking.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mLockCount;
|
2007-10-18 17:36:34 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Source data members
|
|
|
|
nsCString mSourceDataMimeType;
|
|
|
|
|
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
|
|
|
|
2013-03-22 16:12:40 -07:00
|
|
|
// If the image contains multiple resolutions, a hint as to which one should be used
|
|
|
|
nsIntSize mRequestedResolution;
|
|
|
|
|
2014-02-28 13:43:14 -08:00
|
|
|
// A hint for image decoder that directly scale the image to smaller buffer
|
|
|
|
int mRequestedSampleSize;
|
|
|
|
|
2011-11-08 19:14:41 -08:00
|
|
|
// Cached value for GetImageContainer.
|
2014-06-16 15:25:43 -07:00
|
|
|
nsRefPtr<layers::ImageContainer> mImageContainer;
|
2011-11-08 19:14:41 -08:00
|
|
|
|
2014-02-24 19:37:51 -08:00
|
|
|
// If not cached in mImageContainer, this might have our image container
|
2014-06-16 15:25:43 -07:00
|
|
|
WeakPtr<layers::ImageContainer> mImageContainerCache;
|
2014-02-24 19:37:51 -08:00
|
|
|
|
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
|
|
|
|
|
2013-03-01 15:17:24 -08:00
|
|
|
// Below are the pieces of data that can be accessed on more than one thread
|
2013-12-17 14:04:31 -08:00
|
|
|
// at once, and hence need to be locked by mDecodingMonitor.
|
2013-03-01 15:17:24 -08:00
|
|
|
|
|
|
|
// BEGIN LOCKED MEMBER VARIABLES
|
2014-06-16 15:25:43 -07:00
|
|
|
ReentrantMonitor mDecodingMonitor;
|
2013-03-01 15:17:24 -08:00
|
|
|
|
|
|
|
FallibleTArray<char> mSourceData;
|
|
|
|
|
|
|
|
// Decoder and friends
|
|
|
|
nsRefPtr<Decoder> mDecoder;
|
2014-11-18 12:06:27 -08:00
|
|
|
DecodeStatus mDecodeStatus;
|
2013-07-26 11:57:41 -07:00
|
|
|
// END LOCKED MEMBER VARIABLES
|
2013-03-01 15:17:24 -08:00
|
|
|
|
2013-11-26 17:22:44 -08:00
|
|
|
// Notification state. Used to avoid recursive notifications.
|
2014-11-14 20:10:47 -08:00
|
|
|
Progress mNotifyProgress;
|
|
|
|
nsIntRect mNotifyInvalidRect;
|
2013-11-26 17:22:44 -08:00
|
|
|
bool mNotifying:1;
|
|
|
|
|
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?
|
2015-01-07 01:37:20 -08:00
|
|
|
bool mTransient:1; // Is the image short-lived?
|
2011-09-28 23:19:26 -07:00
|
|
|
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;
|
2014-11-26 13:22:10 -08:00
|
|
|
bool mHasFirstFrame:1;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHasBeenDecoded:1;
|
2010-05-12 14:41:47 -07:00
|
|
|
|
2014-11-26 13:22:10 -08:00
|
|
|
// Whether we're waiting to start animation. If we get a StartAnimation() call
|
|
|
|
// but we don't yet have more than one frame, mPendingAnimation is set so that
|
|
|
|
// we know to start animation later if/when we have more frames.
|
|
|
|
bool mPendingAnimation: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
|
|
|
|
2013-01-31 10:38:24 -08:00
|
|
|
// Whether, once we are done doing a size decode, we should immediately kick
|
|
|
|
// off a full decode.
|
|
|
|
bool mWantFullDecode:1;
|
|
|
|
|
2013-09-12 14:40:16 -07:00
|
|
|
// Set when a decode worker detects an error off-main-thread. Once the error
|
|
|
|
// is handled on the main thread, mError is set, but mPendingError is used to
|
|
|
|
// stop decode work immediately.
|
|
|
|
bool mPendingError:1;
|
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
// Decoding
|
2014-11-18 18:17:17 -08:00
|
|
|
nsresult RequestDecodeIfNeeded(nsresult aStatus, ShutdownReason aReason,
|
|
|
|
bool aDone, bool aWasSize);
|
2014-09-26 18:50:24 -07:00
|
|
|
nsresult WantDecodedFrames(uint32_t aFlags, bool aShouldSyncNotify);
|
2009-09-12 15:44:18 -07:00
|
|
|
nsresult SyncDecode();
|
2013-11-20 17:21:51 -08:00
|
|
|
nsresult InitDecoder(bool aDoSizeDecode);
|
2013-12-17 14:04:24 -08:00
|
|
|
nsresult WriteToDecoder(const char *aBuffer, uint32_t aCount, DecodeStrategy aStrategy);
|
2014-05-08 18:03:35 -07:00
|
|
|
nsresult DecodeSomeData(size_t aMaxBytes, DecodeStrategy aStrategy);
|
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
|
|
|
|
2014-11-14 20:10:47 -08:00
|
|
|
// Initializes ProgressTracker and resets it on RasterImage destruction.
|
|
|
|
nsAutoPtr<ProgressTrackerInit> mProgressTrackerInit;
|
2014-09-19 14:53:29 -07:00
|
|
|
|
2014-11-18 18:17:17 -08:00
|
|
|
nsresult ShutdownDecoder(ShutdownReason aReason);
|
2012-10-12 15:24:47 -07:00
|
|
|
|
|
|
|
|
2014-09-19 14:53:29 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Scaling.
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2012-04-03 14:57:22 -07:00
|
|
|
|
2014-09-19 14:53:29 -07:00
|
|
|
// Initiates an HQ scale for the given frame, if possible.
|
|
|
|
void RequestScale(imgFrame* aFrame, uint32_t aFlags, const nsIntSize& aSize);
|
2012-10-12 15:20:22 -07:00
|
|
|
|
2014-09-19 14:53:29 -07:00
|
|
|
// Determines whether we can perform an HQ scale with the given parameters.
|
|
|
|
bool CanScale(GraphicsFilter aFilter, const nsIntSize& aSize, uint32_t aFlags);
|
2014-09-14 21:51:20 -07:00
|
|
|
|
2014-09-19 14:53:29 -07:00
|
|
|
// Called by the HQ scaler when a new scaled frame is ready.
|
|
|
|
void NotifyNewScaledFrame();
|
|
|
|
|
|
|
|
friend class ScaleRunner;
|
2013-09-28 11:28:44 -07:00
|
|
|
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2013-09-12 14:40:16 -07:00
|
|
|
// Error handling.
|
2009-09-12 15:44:18 -07:00
|
|
|
void DoError();
|
2013-09-12 14:40:16 -07:00
|
|
|
|
|
|
|
class HandleErrorWorker : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Called from decoder threads when DoError() is called, since errors can't
|
|
|
|
* be handled safely off-main-thread. Dispatches an event which reinvokes
|
|
|
|
* DoError on the main thread if there isn't one already pending.
|
|
|
|
*/
|
|
|
|
static void DispatchIfNeeded(RasterImage* aImage);
|
|
|
|
|
|
|
|
NS_IMETHOD Run();
|
|
|
|
|
|
|
|
private:
|
2014-09-02 09:20:24 -07:00
|
|
|
explicit HandleErrorWorker(RasterImage* aImage);
|
2013-09-12 14:40:16 -07:00
|
|
|
|
|
|
|
nsRefPtr<RasterImage> mImage;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Helpers
|
2011-08-05 06:57:16 -07:00
|
|
|
bool CanDiscard();
|
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:
|
2014-11-14 20:10:47 -08:00
|
|
|
explicit RasterImage(ProgressTracker* aProgressTracker = nullptr,
|
2014-09-02 09:20:24 -07:00
|
|
|
ImageURL* aURI = nullptr);
|
2012-12-17 18:35:46 -08:00
|
|
|
|
2015-01-02 16:16:57 -08:00
|
|
|
bool ShouldAnimate() MOZ_OVERRIDE;
|
2012-12-17 14:05:18 -08:00
|
|
|
|
|
|
|
friend class ImageFactory;
|
2009-09-12 15:44:18 -07:00
|
|
|
};
|
|
|
|
|
2012-10-19 13:27:11 -07:00
|
|
|
inline NS_IMETHODIMP RasterImage::GetAnimationMode(uint16_t *aAnimationMode) {
|
|
|
|
return GetAnimationModeInternal(aAnimationMode);
|
|
|
|
}
|
|
|
|
|
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_ */
|