зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1241665 - Move IOSurface YCbCr conversion code to a new file MacIOSurfaceHelpers.cpp. r=mattwoodrow
Ideally this would live in gfx/2d/MacIOSurface.cpp, but we don't have access to the YCbCr conversion utilities in Moz2D. --HG-- extra : rebase_source : c103884dab7404d3f5181ba8cd55178b04955bf4
This commit is contained in:
Родитель
6be240dbe8
Коммит
08b617259d
|
@ -0,0 +1,95 @@
|
|||
/* -*- 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 "MacIOSurfaceHelpers.h"
|
||||
#include "mozilla/gfx/MacIOSurface.h"
|
||||
#include "YCbCrUtils.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
using namespace gfx;
|
||||
|
||||
namespace layers {
|
||||
|
||||
already_AddRefed<SourceSurface>
|
||||
CreateSourceSurfaceFromMacIOSurface(MacIOSurface* aSurface)
|
||||
{
|
||||
RefPtr<DataSourceSurface> dataSurface;
|
||||
aSurface->Lock();
|
||||
size_t bytesPerRow = aSurface->GetBytesPerRow();
|
||||
size_t ioWidth = aSurface->GetDevicePixelWidth();
|
||||
size_t ioHeight = aSurface->GetDevicePixelHeight();
|
||||
|
||||
SurfaceFormat format = aSurface->GetFormat() == SurfaceFormat::NV12 ? SurfaceFormat::B8G8R8X8 : SurfaceFormat::B8G8R8A8;
|
||||
|
||||
dataSurface = Factory::CreateDataSourceSurface(IntSize(ioWidth, ioHeight), format);
|
||||
if (NS_WARN_IF(!dataSurface)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
DataSourceSurface::MappedSurface mappedSurface;
|
||||
if (!dataSurface->Map(DataSourceSurface::WRITE, &mappedSurface))
|
||||
return nullptr;
|
||||
|
||||
if (aSurface->GetFormat() == SurfaceFormat::NV12) {
|
||||
if (aSurface->GetDevicePixelWidth() > PlanarYCbCrImage::MAX_DIMENSION ||
|
||||
aSurface->GetDevicePixelHeight() > PlanarYCbCrImage::MAX_DIMENSION) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
/* Extract and separate the CbCr planes */
|
||||
size_t cbCrStride = aSurface->GetBytesPerRow(1);
|
||||
size_t cbCrWidth = aSurface->GetDevicePixelWidth(1);
|
||||
size_t cbCrHeight = aSurface->GetDevicePixelHeight(1);
|
||||
|
||||
auto cbPlane = MakeUnique<uint8_t[]>(cbCrWidth * cbCrHeight);
|
||||
auto crPlane = MakeUnique<uint8_t[]>(cbCrWidth * cbCrHeight);
|
||||
|
||||
uint8_t* src = (uint8_t*)aSurface->GetBaseAddressOfPlane(1);
|
||||
uint8_t* cbDest = cbPlane.get();
|
||||
uint8_t* crDest = crPlane.get();
|
||||
|
||||
for (size_t i = 0; i < cbCrHeight; i++) {
|
||||
uint8_t* rowSrc = src + cbCrStride * i;
|
||||
for (size_t j = 0; j < cbCrWidth; j++) {
|
||||
*cbDest = *rowSrc;
|
||||
cbDest++;
|
||||
rowSrc++;
|
||||
*crDest = *rowSrc;
|
||||
crDest++;
|
||||
rowSrc++;
|
||||
}
|
||||
}
|
||||
|
||||
/* Convert to RGB */
|
||||
PlanarYCbCrData data;
|
||||
data.mYChannel = (uint8_t*)aSurface->GetBaseAddressOfPlane(0);
|
||||
data.mYStride = aSurface->GetBytesPerRow(0);
|
||||
data.mYSize = IntSize(aSurface->GetDevicePixelWidth(0), aSurface->GetDevicePixelHeight(0));
|
||||
data.mCbChannel = cbPlane.get();
|
||||
data.mCrChannel = crPlane.get();
|
||||
data.mCbCrStride = cbCrWidth;
|
||||
data.mCbCrSize = IntSize(cbCrWidth, cbCrHeight);
|
||||
data.mPicSize = data.mYSize;
|
||||
|
||||
ConvertYCbCrToRGB(data, SurfaceFormat::B8G8R8X8, IntSize(ioWidth, ioHeight), mappedSurface.mData, mappedSurface.mStride);
|
||||
} else {
|
||||
unsigned char* ioData = (unsigned char*)aSurface->GetBaseAddress();
|
||||
|
||||
for (size_t i = 0; i < ioHeight; ++i) {
|
||||
memcpy(mappedSurface.mData + i * mappedSurface.mStride,
|
||||
ioData + i * bytesPerRow,
|
||||
ioWidth * 4);
|
||||
}
|
||||
}
|
||||
|
||||
dataSurface->Unmap();
|
||||
aSurface->Unlock();
|
||||
|
||||
return dataSurface.forget();
|
||||
}
|
||||
|
||||
} // namespace gfx
|
||||
} // namespace mozilla
|
|
@ -0,0 +1,28 @@
|
|||
/* -*- 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/. */
|
||||
|
||||
#ifndef GFX_MACIOSURFACEHELPERS_H
|
||||
#define GFX_MACIOSURFACEHELPERS_H
|
||||
|
||||
class MacIOSurface;
|
||||
template<class T> struct already_AddRefed;
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
namespace gfx {
|
||||
class SourceSurface;
|
||||
}
|
||||
|
||||
namespace layers {
|
||||
|
||||
// Unlike MacIOSurface::GetAsSurface, this also handles IOSurface formats
|
||||
// with multiple planes and does YCbCr to RGB conversion, if necessary.
|
||||
already_AddRefed<gfx::SourceSurface>
|
||||
CreateSourceSurfaceFromMacIOSurface(MacIOSurface* aSurface);
|
||||
|
||||
} // namespace layers
|
||||
} // namespace mozilla
|
||||
|
||||
#endif // GFX_MACIOSURFACEHELPERS_H
|
|
@ -3,12 +3,12 @@
|
|||
* 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 "MacIOSurfaceHelpers.h"
|
||||
#include "MacIOSurfaceImage.h"
|
||||
#include "mozilla/layers/CompositableClient.h"
|
||||
#include "mozilla/layers/CompositableForwarder.h"
|
||||
#include "mozilla/layers/MacIOSurfaceTextureClientOGL.h"
|
||||
#include "mozilla/UniquePtr.h"
|
||||
#include "YCbCrUtils.h"
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::layers;
|
||||
|
@ -30,77 +30,5 @@ MacIOSurfaceImage::GetTextureClient(CompositableClient* aClient)
|
|||
already_AddRefed<SourceSurface>
|
||||
MacIOSurfaceImage::GetAsSourceSurface()
|
||||
{
|
||||
RefPtr<DataSourceSurface> dataSurface;
|
||||
mSurface->Lock();
|
||||
size_t bytesPerRow = mSurface->GetBytesPerRow();
|
||||
size_t ioWidth = mSurface->GetDevicePixelWidth();
|
||||
size_t ioHeight = mSurface->GetDevicePixelHeight();
|
||||
|
||||
SurfaceFormat format = mSurface->GetFormat() == SurfaceFormat::NV12 ? SurfaceFormat::B8G8R8X8 : SurfaceFormat::B8G8R8A8;
|
||||
|
||||
dataSurface = Factory::CreateDataSourceSurface(IntSize(ioWidth, ioHeight), format);
|
||||
if (NS_WARN_IF(!dataSurface)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
DataSourceSurface::MappedSurface mappedSurface;
|
||||
if (!dataSurface->Map(DataSourceSurface::WRITE, &mappedSurface))
|
||||
return nullptr;
|
||||
|
||||
if (mSurface->GetFormat() == SurfaceFormat::NV12) {
|
||||
if (mSurface->GetDevicePixelWidth() > PlanarYCbCrImage::MAX_DIMENSION ||
|
||||
mSurface->GetDevicePixelHeight() > PlanarYCbCrImage::MAX_DIMENSION) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
/* Extract and separate the CbCr planes */
|
||||
size_t cbCrStride = mSurface->GetBytesPerRow(1);
|
||||
size_t cbCrWidth = mSurface->GetDevicePixelWidth(1);
|
||||
size_t cbCrHeight = mSurface->GetDevicePixelHeight(1);
|
||||
|
||||
auto cbPlane = MakeUnique<uint8_t[]>(cbCrWidth * cbCrHeight);
|
||||
auto crPlane = MakeUnique<uint8_t[]>(cbCrWidth * cbCrHeight);
|
||||
|
||||
uint8_t* src = (uint8_t*)mSurface->GetBaseAddressOfPlane(1);
|
||||
uint8_t* cbDest = cbPlane.get();
|
||||
uint8_t* crDest = crPlane.get();
|
||||
|
||||
for (size_t i = 0; i < cbCrHeight; i++) {
|
||||
uint8_t* rowSrc = src + cbCrStride * i;
|
||||
for (size_t j = 0; j < cbCrWidth; j++) {
|
||||
*cbDest = *rowSrc;
|
||||
cbDest++;
|
||||
rowSrc++;
|
||||
*crDest = *rowSrc;
|
||||
crDest++;
|
||||
rowSrc++;
|
||||
}
|
||||
}
|
||||
|
||||
/* Convert to RGB */
|
||||
PlanarYCbCrData data;
|
||||
data.mYChannel = (uint8_t*)mSurface->GetBaseAddressOfPlane(0);
|
||||
data.mYStride = mSurface->GetBytesPerRow(0);
|
||||
data.mYSize = IntSize(mSurface->GetDevicePixelWidth(0), mSurface->GetDevicePixelHeight(0));
|
||||
data.mCbChannel = cbPlane.get();
|
||||
data.mCrChannel = crPlane.get();
|
||||
data.mCbCrStride = cbCrWidth;
|
||||
data.mCbCrSize = IntSize(cbCrWidth, cbCrHeight);
|
||||
data.mPicSize = data.mYSize;
|
||||
|
||||
ConvertYCbCrToRGB(data, SurfaceFormat::B8G8R8X8, IntSize(ioWidth, ioHeight), mappedSurface.mData, mappedSurface.mStride);
|
||||
} else {
|
||||
unsigned char* ioData = (unsigned char*)mSurface->GetBaseAddress();
|
||||
|
||||
for (size_t i = 0; i < ioHeight; ++i) {
|
||||
memcpy(mappedSurface.mData + i * mappedSurface.mStride,
|
||||
ioData + i * bytesPerRow,
|
||||
ioWidth * 4);
|
||||
}
|
||||
}
|
||||
|
||||
dataSurface->Unmap();
|
||||
mSurface->Unlock();
|
||||
|
||||
return dataSurface.forget();
|
||||
return CreateSourceSurfaceFromMacIOSurface(mSurface);
|
||||
}
|
||||
|
|
|
@ -206,6 +206,7 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|||
'opengl/GLManager.h',
|
||||
]
|
||||
EXPORTS += [
|
||||
'MacIOSurfaceHelpers.h',
|
||||
'MacIOSurfaceImage.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
|
@ -213,6 +214,7 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|||
]
|
||||
SOURCES += [
|
||||
'ipc/ShadowLayerUtilsMac.cpp',
|
||||
'MacIOSurfaceHelpers.cpp',
|
||||
'MacIOSurfaceImage.cpp',
|
||||
]
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче