mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
c34e72358b
- nsTArray*: fully sync with AF, and use ActualAlloc::Successful (adaf2f742) - Bug 1182808 - Part 2: Remove AlignedFallibleTArray. r=padenot (e0f112fb4) - Bug 1182808 - Part 3: Rename AlignedTArray_Impl to AlignedTArray and remove existing AlignedTArray. r=padenot (ff2beea1e) - Bug 1148582 - Include the rounded clip of the async scrolled scroll frame in its mAncestorClip. (1633f8cb2) - Bug 1148582 - Support multiple mask layers per layer in LayerManagerComposite. (d292070f8) - Bug 1143575. #include nsDebug.h in YCbCrImageDataSerializer.cpp for NS_WARN_IF. r=nical (c9a7fe42c) - Bug 1143575. Remove ImageClientBridge::Updated. r=nical (095f1f806) - Bug 1143575. Pass a picture rect with OpUseOverlaySource and OpUseTexture, and eliminate OpUpdatePictureRect. r=nical (c134913c2) - Bug 1143575. Extend IPDL OpUseTexture to support multiple timestamped images. r=nical (54d018cd1) - Bug 1143575. Replace ImageClientSingle::UpdateImage's use of Image serial numbers with ImageContainer state generation counters, and switch it to use ImageContainer::GetCurrentImages. r=nical (e2e096ad2) - Bug 1143575. ImageClient::UpdateImage should not return false when there's no image, because recreating the ImageClient won't help. r=nical (4be2ed5ed) - Bug 1143575. Make ImageClientSingle handle multiple textures. r=nical (8889f2639) - Bug 1143575. Store composition time in Compositor. r=nical (1501cc5d0) - Bug 1143575. Implement ImageHost support for multiple timed images. r=nical (99a440556) - Bug 1168456 - Remove NotifyWaitingForResourcesStatusChanged() call from MediaCodecReader r=bholley,bwu (efabdbeed) - Bug 1163871: Use DebugOnly to suppress opt build warning in gonk nsAppShell.cpp. r=mwu (fc77b0322) - Bug 1165161 - stop bootAnim with "browser-ui-startup-complete" event. r=mwu (a2a9bbfdd) - Bug 949036 - Make ID3v2 tag detection more careful - not every bit of data containing ID3 is a tag. r=eflores (ac590bbd1) - bug 1137076 handle null mDecoder during Reader shutdown r=edwin (1507b0627) - Bug 1150322 - Fix duration parsing in MediaOmxReader - r=sotaro (93577cfea) - Bug 1112219 - Implement platform independent MediaResourceManager r=cpearce,bwu,nical (cc722ccf3) - Bug 1091037 - Raise ImageBridge thread priority r=gsvelto,nical (d66ecdd06) - Bug 1143575. Route ImageCompositeNotifications to ImageContainers. r=nical (fe5d3da61) - bug 1184801 process AnalyserNode input only when required r=padenot (8079b66f5) - Bug 1157768 - FFTBlock Changes for using libav fft; r=padenot (3238d710c) - bug 914392 move mSharedBuffers ownership to engine r=padenot (4444d8352)
316 lines
10 KiB
C++
316 lines
10 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* 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/. */
|
|
|
|
#include "mozilla/layers/YCbCrImageDataSerializer.h"
|
|
#include <string.h> // for memcpy
|
|
#include "mozilla/gfx/2D.h" // for DataSourceSurface, Factory
|
|
#include "mozilla/gfx/BaseSize.h" // for BaseSize
|
|
#include "mozilla/gfx/Logging.h" // for gfxDebug
|
|
#include "mozilla/gfx/Types.h"
|
|
#include "mozilla/mozalloc.h" // for operator delete
|
|
#include "nsDebug.h" // for NS_WARN_IF
|
|
#include "yuv_convert.h" // for ConvertYCbCrToRGB32, etc
|
|
#include "nsDebug.h"
|
|
|
|
#define MOZ_ALIGN_WORD(x) (((x) + 3) & ~3)
|
|
|
|
namespace mozilla {
|
|
|
|
using namespace gfx;
|
|
|
|
namespace layers {
|
|
|
|
// The Data is layed out as follows:
|
|
//
|
|
// +-----------------+ -++ --+ --+ <-- Beginning of the buffer
|
|
// | YCbCrBufferInfo | | | |
|
|
// +-----------------+ --+ | |
|
|
// | data | | | YCbCrBufferInfo->[mY/mCb/mCr]Offset
|
|
// +-----------------+ ------+ |
|
|
// | data | |
|
|
// +-----------------+ ----------+
|
|
// | data |
|
|
// +-----------------+
|
|
//
|
|
// There can be padding between the blocks above to keep word alignment.
|
|
|
|
// Structure written at the beginning og the data blob containing the image
|
|
// (as shown in the figure above). It contains the necessary informations to
|
|
// read the image in the blob.
|
|
struct YCbCrBufferInfo
|
|
{
|
|
uint32_t mYOffset;
|
|
uint32_t mCbOffset;
|
|
uint32_t mCrOffset;
|
|
uint32_t mYStride;
|
|
uint32_t mYWidth;
|
|
uint32_t mYHeight;
|
|
uint32_t mCbCrStride;
|
|
uint32_t mCbCrWidth;
|
|
uint32_t mCbCrHeight;
|
|
StereoMode mStereoMode;
|
|
};
|
|
|
|
static YCbCrBufferInfo* GetYCbCrBufferInfo(uint8_t* aData, size_t aDataSize)
|
|
{
|
|
return aDataSize >= sizeof(YCbCrBufferInfo)
|
|
? reinterpret_cast<YCbCrBufferInfo*>(aData)
|
|
: nullptr;
|
|
}
|
|
|
|
void YCbCrImageDataDeserializerBase::Validate()
|
|
{
|
|
mIsValid = false;
|
|
if (!mData) {
|
|
return;
|
|
}
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
if (!info) {
|
|
return;
|
|
}
|
|
size_t requiredSize = ComputeMinBufferSize(
|
|
IntSize(info->mYWidth, info->mYHeight),
|
|
info->mYStride,
|
|
IntSize(info->mCbCrWidth, info->mCbCrHeight),
|
|
info->mCbCrStride);
|
|
mIsValid = requiredSize && requiredSize <= mDataSize;
|
|
|
|
}
|
|
|
|
uint8_t* YCbCrImageDataDeserializerBase::GetYData()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return reinterpret_cast<uint8_t*>(info) + info->mYOffset;
|
|
}
|
|
|
|
uint8_t* YCbCrImageDataDeserializerBase::GetCbData()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return reinterpret_cast<uint8_t*>(info) + info->mCbOffset;
|
|
}
|
|
|
|
uint8_t* YCbCrImageDataDeserializerBase::GetCrData()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return reinterpret_cast<uint8_t*>(info) + info->mCrOffset;
|
|
}
|
|
|
|
uint8_t* YCbCrImageDataDeserializerBase::GetData()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return (reinterpret_cast<uint8_t*>(info)) + MOZ_ALIGN_WORD(sizeof(YCbCrBufferInfo));
|
|
}
|
|
|
|
uint32_t YCbCrImageDataDeserializerBase::GetYStride()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return info->mYStride;
|
|
}
|
|
|
|
uint32_t YCbCrImageDataDeserializerBase::GetCbCrStride()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return info->mCbCrStride;
|
|
}
|
|
|
|
gfx::IntSize YCbCrImageDataDeserializerBase::GetYSize()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return gfx::IntSize(info->mYWidth, info->mYHeight);
|
|
}
|
|
|
|
gfx::IntSize YCbCrImageDataDeserializerBase::GetCbCrSize()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return gfx::IntSize(info->mCbCrWidth, info->mCbCrHeight);
|
|
}
|
|
|
|
StereoMode YCbCrImageDataDeserializerBase::GetStereoMode()
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
return info->mStereoMode;
|
|
}
|
|
|
|
// Offset in bytes
|
|
static size_t ComputeOffset(uint32_t aHeight, uint32_t aStride)
|
|
{
|
|
return MOZ_ALIGN_WORD(aHeight * aStride);
|
|
}
|
|
|
|
// Minimum required shmem size in bytes
|
|
size_t
|
|
YCbCrImageDataDeserializerBase::ComputeMinBufferSize(const gfx::IntSize& aYSize,
|
|
uint32_t aYStride,
|
|
const gfx::IntSize& aCbCrSize,
|
|
uint32_t aCbCrStride)
|
|
{
|
|
MOZ_ASSERT(aYSize.height >= 0 && aYSize.width >= 0);
|
|
if (aYSize.height <= 0 || aYSize.width <= 0 || aCbCrSize.height <= 0 || aCbCrSize.width <= 0) {
|
|
gfxDebug() << "Non-positive YCbCr buffer size request " << aYSize.height << "x" << aYSize.width << ", " << aCbCrSize.height << "x" << aCbCrSize.width;
|
|
return 0;
|
|
}
|
|
|
|
if (!gfx::Factory::AllowedSurfaceSize(aYSize) ||
|
|
aCbCrSize.width > aYSize.width ||
|
|
aCbCrSize.height > aYSize.height) {
|
|
return 0;
|
|
}
|
|
|
|
return ComputeOffset(aYSize.height, aYStride)
|
|
+ 2 * ComputeOffset(aCbCrSize.height, aCbCrStride)
|
|
+ MOZ_ALIGN_WORD(sizeof(YCbCrBufferInfo));
|
|
}
|
|
|
|
// Minimum required shmem size in bytes
|
|
size_t
|
|
YCbCrImageDataDeserializerBase::ComputeMinBufferSize(const gfx::IntSize& aYSize,
|
|
const gfx::IntSize& aCbCrSize)
|
|
{
|
|
return ComputeMinBufferSize(aYSize, aYSize.width, aCbCrSize, aCbCrSize.width);
|
|
}
|
|
|
|
// Offset in bytes
|
|
static size_t ComputeOffset(uint32_t aSize)
|
|
{
|
|
return MOZ_ALIGN_WORD(aSize);
|
|
}
|
|
|
|
// Minimum required shmem size in bytes
|
|
size_t
|
|
YCbCrImageDataDeserializerBase::ComputeMinBufferSize(uint32_t aSize)
|
|
{
|
|
return ComputeOffset(aSize) + MOZ_ALIGN_WORD(sizeof(YCbCrBufferInfo));
|
|
}
|
|
|
|
void
|
|
YCbCrImageDataSerializer::InitializeBufferInfo(uint32_t aYOffset,
|
|
uint32_t aCbOffset,
|
|
uint32_t aCrOffset,
|
|
uint32_t aYStride,
|
|
uint32_t aCbCrStride,
|
|
const gfx::IntSize& aYSize,
|
|
const gfx::IntSize& aCbCrSize,
|
|
StereoMode aStereoMode)
|
|
{
|
|
YCbCrBufferInfo* info = GetYCbCrBufferInfo(mData, mDataSize);
|
|
MOZ_ASSERT(info); // OK to assert here, this method is client-side-only
|
|
uint32_t info_size = MOZ_ALIGN_WORD(sizeof(YCbCrBufferInfo));
|
|
info->mYOffset = info_size + aYOffset;
|
|
info->mCbOffset = info_size + aCbOffset;
|
|
info->mCrOffset = info_size + aCrOffset;
|
|
info->mYStride = aYStride;
|
|
info->mYWidth = aYSize.width;
|
|
info->mYHeight = aYSize.height;
|
|
info->mCbCrStride = aCbCrStride;
|
|
info->mCbCrWidth = aCbCrSize.width;
|
|
info->mCbCrHeight = aCbCrSize.height;
|
|
info->mStereoMode = aStereoMode;
|
|
Validate();
|
|
}
|
|
|
|
void
|
|
YCbCrImageDataSerializer::InitializeBufferInfo(uint32_t aYStride,
|
|
uint32_t aCbCrStride,
|
|
const gfx::IntSize& aYSize,
|
|
const gfx::IntSize& aCbCrSize,
|
|
StereoMode aStereoMode)
|
|
{
|
|
uint32_t yOffset = 0;
|
|
uint32_t cbOffset = yOffset + MOZ_ALIGN_WORD(aYStride * aYSize.height);
|
|
uint32_t crOffset = cbOffset + MOZ_ALIGN_WORD(aCbCrStride * aCbCrSize.height);
|
|
return InitializeBufferInfo(yOffset, cbOffset, crOffset,
|
|
aYStride, aCbCrStride, aYSize, aCbCrSize, aStereoMode);
|
|
}
|
|
|
|
void
|
|
YCbCrImageDataSerializer::InitializeBufferInfo(const gfx::IntSize& aYSize,
|
|
const gfx::IntSize& aCbCrSize,
|
|
StereoMode aStereoMode)
|
|
{
|
|
return InitializeBufferInfo(aYSize.width, aCbCrSize.width, aYSize, aCbCrSize, aStereoMode);
|
|
}
|
|
|
|
static void CopyLineWithSkip(const uint8_t* src, uint8_t* dst, uint32_t len, uint32_t skip) {
|
|
for (uint32_t i = 0; i < len; ++i) {
|
|
*dst = *src;
|
|
src += 1 + skip;
|
|
++dst;
|
|
}
|
|
}
|
|
|
|
bool
|
|
YCbCrImageDataSerializer::CopyData(const uint8_t* aYData,
|
|
const uint8_t* aCbData, const uint8_t* aCrData,
|
|
gfx::IntSize aYSize, uint32_t aYStride,
|
|
gfx::IntSize aCbCrSize, uint32_t aCbCrStride,
|
|
uint32_t aYSkip, uint32_t aCbCrSkip)
|
|
{
|
|
if (!IsValid() || GetYSize() != aYSize || GetCbCrSize() != aCbCrSize) {
|
|
return false;
|
|
}
|
|
for (int i = 0; i < aYSize.height; ++i) {
|
|
if (aYSkip == 0) {
|
|
// fast path
|
|
memcpy(GetYData() + i * GetYStride(),
|
|
aYData + i * aYStride,
|
|
aYSize.width);
|
|
} else {
|
|
// slower path
|
|
CopyLineWithSkip(aYData + i * aYStride,
|
|
GetYData() + i * GetYStride(),
|
|
aYSize.width, aYSkip);
|
|
}
|
|
}
|
|
for (int i = 0; i < aCbCrSize.height; ++i) {
|
|
if (aCbCrSkip == 0) {
|
|
// fast path
|
|
memcpy(GetCbData() + i * GetCbCrStride(),
|
|
aCbData + i * aCbCrStride,
|
|
aCbCrSize.width);
|
|
memcpy(GetCrData() + i * GetCbCrStride(),
|
|
aCrData + i * aCbCrStride,
|
|
aCbCrSize.width);
|
|
} else {
|
|
// slower path
|
|
CopyLineWithSkip(aCbData + i * aCbCrStride,
|
|
GetCbData() + i * GetCbCrStride(),
|
|
aCbCrSize.width, aCbCrSkip);
|
|
CopyLineWithSkip(aCrData + i * aCbCrStride,
|
|
GetCrData() + i * GetCbCrStride(),
|
|
aCbCrSize.width, aCbCrSkip);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
already_AddRefed<DataSourceSurface>
|
|
YCbCrImageDataDeserializer::ToDataSourceSurface()
|
|
{
|
|
RefPtr<DataSourceSurface> result =
|
|
Factory::CreateDataSourceSurface(GetYSize(), gfx::SurfaceFormat::B8G8R8X8);
|
|
if (NS_WARN_IF(!result)) {
|
|
return nullptr;
|
|
}
|
|
|
|
DataSourceSurface::MappedSurface map;
|
|
if (NS_WARN_IF(!result->Map(DataSourceSurface::MapType::WRITE, &map))) {
|
|
return nullptr;
|
|
}
|
|
|
|
gfx::ConvertYCbCrToRGB32(GetYData(), GetCbData(), GetCrData(),
|
|
map.mData,
|
|
0, 0, //pic x and y
|
|
GetYSize().width, GetYSize().height,
|
|
GetYStride(), GetCbCrStride(),
|
|
map.mStride,
|
|
gfx::YV12);
|
|
result->Unmap();
|
|
return result.forget();
|
|
}
|
|
|
|
|
|
} // namespace layers
|
|
} // namespace mozilla
|