2012-02-01 02:18:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Corporation code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Bas Schouten <bschouten@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "mozilla/ipc/Shmem.h"
|
2012-02-16 03:26:19 +00:00
|
|
|
#include "mozilla/ipc/CrossProcessMutex.h"
|
2012-02-01 02:18:30 +00:00
|
|
|
#include "ImageLayers.h"
|
|
|
|
#include "gfxImageSurface.h"
|
|
|
|
#include "yuv_convert.h"
|
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#include "nsCoreAnimationSupport.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace mozilla::ipc;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
already_AddRefed<Image>
|
|
|
|
ImageFactory::CreateImage(const Image::Format *aFormats,
|
|
|
|
PRUint32 aNumFormats,
|
|
|
|
const gfxIntSize &,
|
|
|
|
BufferRecycleBin *aRecycleBin)
|
|
|
|
{
|
|
|
|
if (!aNumFormats) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
nsRefPtr<Image> img;
|
|
|
|
if (FormatInList(aFormats, aNumFormats, Image::PLANAR_YCBCR)) {
|
|
|
|
img = new PlanarYCbCrImage(aRecycleBin);
|
|
|
|
} else if (FormatInList(aFormats, aNumFormats, Image::CAIRO_SURFACE)) {
|
|
|
|
img = new CairoImage();
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
} else if (FormatInList(aFormats, aNumFormats, Image::MAC_IO_SURFACE)) {
|
|
|
|
img = new MacIOSurfaceImage();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return img.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferRecycleBin::BufferRecycleBin()
|
|
|
|
: mLock("mozilla.layers.BufferRecycleBin.mLock")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BufferRecycleBin::RecycleBuffer(PRUint8* aBuffer, PRUint32 aSize)
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mLock);
|
|
|
|
|
|
|
|
if (!mRecycledBuffers.IsEmpty() && aSize != mRecycledBufferSize) {
|
|
|
|
mRecycledBuffers.Clear();
|
|
|
|
}
|
|
|
|
mRecycledBufferSize = aSize;
|
|
|
|
mRecycledBuffers.AppendElement(aBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8*
|
|
|
|
BufferRecycleBin::GetBuffer(PRUint32 aSize)
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mLock);
|
|
|
|
|
|
|
|
if (mRecycledBuffers.IsEmpty() || mRecycledBufferSize != aSize)
|
|
|
|
return new PRUint8[aSize];
|
|
|
|
|
|
|
|
PRUint32 last = mRecycledBuffers.Length() - 1;
|
|
|
|
PRUint8* result = mRecycledBuffers[last].forget();
|
|
|
|
mRecycledBuffers.RemoveElementAt(last);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageContainer::~ImageContainer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Image>
|
|
|
|
ImageContainer::CreateImage(const Image::Format *aFormats,
|
|
|
|
PRUint32 aNumFormats)
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
return mImageFactory->CreateImage(aFormats, aNumFormats, mScaleHint, mRecycleBin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ImageContainer::SetCurrentImage(Image *aImage)
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
2012-02-16 03:26:19 +00:00
|
|
|
if (mRemoteData) {
|
|
|
|
NS_ASSERTION(mRemoteDataMutex, "Should have remote data mutex when having remote data!");
|
|
|
|
mRemoteDataMutex->Lock();
|
|
|
|
// This is important since it ensures we won't change the active image
|
|
|
|
// when we currently have a locked image that depends on mRemoteData.
|
|
|
|
}
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
mActiveImage = aImage;
|
|
|
|
CurrentImageChanged();
|
2012-02-16 03:26:19 +00:00
|
|
|
|
|
|
|
if (mRemoteData) {
|
|
|
|
mRemoteDataMutex->Unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ImageContainer::HasCurrentImage()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
|
|
|
if (mRemoteData) {
|
|
|
|
CrossProcessMutexAutoLock autoLock(*mRemoteDataMutex);
|
|
|
|
|
|
|
|
EnsureActiveImage();
|
|
|
|
|
|
|
|
return !!mActiveImage.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
return !!mActiveImage.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Image>
|
|
|
|
ImageContainer::LockCurrentImage()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
|
|
|
if (mRemoteData) {
|
|
|
|
NS_ASSERTION(mRemoteDataMutex, "Should have remote data mutex when having remote data!");
|
|
|
|
mRemoteDataMutex->Lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
EnsureActiveImage();
|
|
|
|
|
|
|
|
nsRefPtr<Image> retval = mActiveImage;
|
|
|
|
return retval.forget();
|
2012-02-01 02:18:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface>
|
2012-02-16 03:26:19 +00:00
|
|
|
ImageContainer::LockCurrentAsSurface(gfxIntSize *aSize, Image** aCurrentImage)
|
2012-02-01 02:18:30 +00:00
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
2012-02-16 03:26:19 +00:00
|
|
|
if (mRemoteData) {
|
|
|
|
NS_ASSERTION(mRemoteDataMutex, "Should have remote data mutex when having remote data!");
|
|
|
|
mRemoteDataMutex->Lock();
|
|
|
|
|
|
|
|
EnsureActiveImage();
|
|
|
|
|
|
|
|
if (aCurrentImage) {
|
|
|
|
NS_IF_ADDREF(mActiveImage);
|
|
|
|
*aCurrentImage = mActiveImage.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mActiveImage) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mActiveImage->GetFormat() == Image::REMOTE_IMAGE_BITMAP) {
|
|
|
|
nsRefPtr<gfxImageSurface> newSurf =
|
|
|
|
new gfxImageSurface(mRemoteData->mBitmap.mData, mRemoteData->mSize, mRemoteData->mBitmap.mStride,
|
|
|
|
mRemoteData->mFormat == RemoteImageData::BGRX32 ?
|
|
|
|
gfxASurface::ImageFormatARGB32 :
|
|
|
|
gfxASurface::ImageFormatRGB24);
|
|
|
|
|
|
|
|
*aSize = newSurf->GetSize();
|
|
|
|
|
|
|
|
return newSurf.forget();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aCurrentImage) {
|
|
|
|
NS_IF_ADDREF(mActiveImage);
|
|
|
|
*aCurrentImage = mActiveImage.get();
|
|
|
|
}
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
if (!mActiveImage) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aSize = mActiveImage->GetSize();
|
|
|
|
return mActiveImage->GetAsSurface();
|
|
|
|
}
|
|
|
|
|
2012-02-16 03:26:19 +00:00
|
|
|
void
|
|
|
|
ImageContainer::UnlockCurrentImage()
|
|
|
|
{
|
|
|
|
if (mRemoteData) {
|
|
|
|
NS_ASSERTION(mRemoteDataMutex, "Should have remote data mutex when having remote data!");
|
|
|
|
mRemoteDataMutex->Unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface>
|
|
|
|
ImageContainer::GetCurrentAsSurface(gfxIntSize *aSize)
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
|
|
|
if (mRemoteData) {
|
|
|
|
CrossProcessMutexAutoLock autoLock(*mRemoteDataMutex);
|
|
|
|
EnsureActiveImage();
|
|
|
|
|
|
|
|
*aSize = mRemoteData->mSize;
|
|
|
|
return mActiveImage ? mActiveImage->GetAsSurface() : nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aSize = mActiveImage->GetSize();
|
|
|
|
return mActiveImage ? mActiveImage->GetAsSurface() : nsnull;
|
|
|
|
}
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
gfxIntSize
|
|
|
|
ImageContainer::GetCurrentSize()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
|
2012-02-16 03:26:19 +00:00
|
|
|
if (mRemoteData) {
|
|
|
|
CrossProcessMutexAutoLock autoLock(*mRemoteDataMutex);
|
|
|
|
|
|
|
|
// We don't need to ensure we have an active image here, as we need to
|
|
|
|
// be in the mutex anyway, and this is easiest to return from there.
|
|
|
|
return mRemoteData->mSize;
|
|
|
|
}
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
if (!mActiveImage) {
|
|
|
|
return gfxIntSize(0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mActiveImage->GetSize();
|
|
|
|
}
|
|
|
|
|
2012-02-16 03:26:19 +00:00
|
|
|
void
|
|
|
|
ImageContainer::SetRemoteImageData(RemoteImageData *aData, CrossProcessMutex *aMutex)
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
NS_ASSERTION(!mActiveImage, "No active image expected when SetRemoteImageData is called.");
|
|
|
|
NS_ASSERTION(!mRemoteData, "No remote data expected when SetRemoteImageData is called.");
|
|
|
|
|
|
|
|
mRemoteData = aData;
|
|
|
|
|
|
|
|
if (aData) {
|
|
|
|
memset(aData, 0, sizeof(RemoteImageData));
|
|
|
|
} else {
|
|
|
|
mActiveImage = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
mRemoteDataMutex = aMutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ImageContainer::EnsureActiveImage()
|
|
|
|
{
|
|
|
|
if (mRemoteData) {
|
|
|
|
if (mRemoteData->mWasUpdated) {
|
|
|
|
mActiveImage = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mRemoteData->mType == RemoteImageData::RAW_BITMAP &&
|
|
|
|
mRemoteData->mBitmap.mData && !mActiveImage) {
|
|
|
|
nsRefPtr<RemoteBitmapImage> newImg = new RemoteBitmapImage();
|
|
|
|
|
|
|
|
newImg->mFormat = mRemoteData->mFormat;
|
|
|
|
newImg->mData = mRemoteData->mBitmap.mData;
|
|
|
|
newImg->mSize = mRemoteData->mSize;
|
|
|
|
newImg->mStride = mRemoteData->mBitmap.mStride;
|
|
|
|
mRemoteData->mWasUpdated = false;
|
|
|
|
|
|
|
|
mActiveImage = newImg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
PlanarYCbCrImage::PlanarYCbCrImage(BufferRecycleBin *aRecycleBin)
|
|
|
|
: Image(nsnull, PLANAR_YCBCR)
|
|
|
|
, mBufferSize(0)
|
|
|
|
, mRecycleBin(aRecycleBin)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PlanarYCbCrImage::~PlanarYCbCrImage()
|
|
|
|
{
|
|
|
|
if (mBuffer) {
|
|
|
|
mRecycleBin->RecycleBuffer(mBuffer.forget(), mBufferSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8*
|
|
|
|
PlanarYCbCrImage::AllocateBuffer(PRUint32 aSize)
|
|
|
|
{
|
|
|
|
return mRecycleBin->GetBuffer(aSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PlanarYCbCrImage::CopyData(const Data& aData)
|
|
|
|
{
|
|
|
|
mData = aData;
|
|
|
|
|
|
|
|
mData.mYStride = mData.mYSize.width;
|
|
|
|
mData.mCbCrStride = mData.mCbCrSize.width;
|
|
|
|
|
|
|
|
// update buffer size
|
|
|
|
mBufferSize = mData.mCbCrStride * mData.mCbCrSize.height * 2 +
|
|
|
|
mData.mYStride * mData.mYSize.height;
|
|
|
|
|
|
|
|
// get new buffer
|
|
|
|
mBuffer = AllocateBuffer(mBufferSize);
|
|
|
|
if (!mBuffer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mData.mYChannel = mBuffer;
|
|
|
|
mData.mCbChannel = mData.mYChannel + mData.mYStride * mData.mYSize.height;
|
|
|
|
mData.mCrChannel = mData.mCbChannel + mData.mCbCrStride * mData.mCbCrSize.height;
|
|
|
|
|
|
|
|
for (int i = 0; i < mData.mYSize.height; i++) {
|
|
|
|
memcpy(mData.mYChannel + i * mData.mYStride,
|
|
|
|
aData.mYChannel + i * aData.mYStride,
|
|
|
|
mData.mYStride);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < mData.mCbCrSize.height; i++) {
|
|
|
|
memcpy(mData.mCbChannel + i * mData.mCbCrStride,
|
|
|
|
aData.mCbChannel + i * aData.mCbCrStride,
|
|
|
|
mData.mCbCrStride);
|
|
|
|
memcpy(mData.mCrChannel + i * mData.mCbCrStride,
|
|
|
|
aData.mCrChannel + i * aData.mCbCrStride,
|
|
|
|
mData.mCbCrStride);
|
|
|
|
}
|
|
|
|
|
|
|
|
mSize = aData.mPicSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PlanarYCbCrImage::SetData(const Data &aData)
|
|
|
|
{
|
|
|
|
CopyData(aData);
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface>
|
|
|
|
PlanarYCbCrImage::GetAsSurface()
|
|
|
|
{
|
|
|
|
if (mSurface) {
|
|
|
|
nsRefPtr<gfxASurface> result = mSurface.get();
|
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> imageSurface =
|
|
|
|
new gfxImageSurface(mSize, gfxASurface::ImageFormatRGB24);
|
|
|
|
|
|
|
|
gfx::YUVType type =
|
|
|
|
gfx::TypeFromSize(mData.mYSize.width,
|
|
|
|
mData.mYSize.height,
|
|
|
|
mData.mCbCrSize.width,
|
|
|
|
mData.mCbCrSize.height);
|
|
|
|
|
|
|
|
// Convert from YCbCr to RGB now
|
|
|
|
gfx::ConvertYCbCrToRGB32(mData.mYChannel,
|
|
|
|
mData.mCbChannel,
|
|
|
|
mData.mCrChannel,
|
|
|
|
imageSurface->Data(),
|
|
|
|
mData.mPicX,
|
|
|
|
mData.mPicY,
|
|
|
|
mData.mPicSize.width,
|
|
|
|
mData.mPicSize.height,
|
|
|
|
mData.mYStride,
|
|
|
|
mData.mCbCrStride,
|
|
|
|
imageSurface->Stride(),
|
|
|
|
type);
|
|
|
|
|
|
|
|
mSurface = imageSurface;
|
|
|
|
|
|
|
|
return imageSurface.forget().get();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
void
|
|
|
|
MacIOSurfaceImage::SetData(const Data& aData)
|
|
|
|
{
|
|
|
|
mIOSurface = nsIOSurface::LookupSurface(aData.mIOSurface->GetIOSurfaceID());
|
|
|
|
mSize = gfxIntSize(mIOSurface->GetWidth(), mIOSurface->GetHeight());
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface>
|
|
|
|
MacIOSurfaceImage::GetAsSurface()
|
|
|
|
{
|
|
|
|
return mIOSurface->GetAsSurface();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MacIOSurfaceImage::Update(ImageContainer* aContainer)
|
|
|
|
{
|
|
|
|
if (mUpdateCallback) {
|
|
|
|
mUpdateCallback(aContainer, mPluginInstanceOwner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2012-02-16 03:26:19 +00:00
|
|
|
already_AddRefed<gfxASurface>
|
|
|
|
RemoteBitmapImage::GetAsSurface()
|
|
|
|
{
|
|
|
|
nsRefPtr<gfxImageSurface> newSurf =
|
|
|
|
new gfxImageSurface(mSize,
|
|
|
|
mFormat == RemoteImageData::BGRX32 ? gfxASurface::ImageFormatRGB24 : gfxASurface::ImageFormatARGB32);
|
|
|
|
|
|
|
|
for (int y = 0; y < mSize.height; y++) {
|
|
|
|
memcpy(newSurf->Data() + newSurf->Stride() * y,
|
|
|
|
mData + mStride * y,
|
|
|
|
mSize.width * 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
return newSurf.forget();
|
|
|
|
}
|
2012-02-01 02:18:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|