2014-02-04 05:49:21 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
2015-05-18 23:50:34 +03:00
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
#include "MediaData.h"
|
|
|
|
#include "MediaInfo.h"
|
|
|
|
#include "VideoUtils.h"
|
|
|
|
#include "ImageContainer.h"
|
2016-12-21 05:00:46 +03:00
|
|
|
#include "mozilla/layers/SharedRGBImage.h"
|
|
|
|
#include "YCbCrUtils.h"
|
2014-02-04 05:49:21 +04:00
|
|
|
|
2014-03-31 19:24:28 +04:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
#include <cutils/properties.h>
|
|
|
|
#endif
|
2015-04-09 14:14:55 +03:00
|
|
|
#include <stdint.h>
|
2014-03-31 19:24:28 +04:00
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
using layers::ImageContainer;
|
|
|
|
using layers::PlanarYCbCrImage;
|
|
|
|
using layers::PlanarYCbCrData;
|
2017-04-12 12:27:34 +03:00
|
|
|
using media::TimeUnit;
|
2014-02-04 05:49:21 +04:00
|
|
|
|
2015-06-07 00:42:40 +03:00
|
|
|
const char* AudioData::sTypeName = "audio";
|
|
|
|
const char* VideoData::sTypeName = "video";
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
void
|
|
|
|
AudioData::EnsureAudioBuffer()
|
|
|
|
{
|
|
|
|
if (mAudioBuffer)
|
|
|
|
return;
|
|
|
|
mAudioBuffer = SharedBuffer::Create(mFrames*mChannels*sizeof(AudioDataValue));
|
|
|
|
|
|
|
|
AudioDataValue* data = static_cast<AudioDataValue*>(mAudioBuffer->Data());
|
|
|
|
for (uint32_t i = 0; i < mFrames; ++i) {
|
|
|
|
for (uint32_t j = 0; j < mChannels; ++j) {
|
|
|
|
data[j*mFrames + i] = mAudioData[i*mChannels + j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 21:38:00 +04:00
|
|
|
size_t
|
|
|
|
AudioData::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
2016-04-03 16:09:45 +03:00
|
|
|
size_t size =
|
|
|
|
aMallocSizeOf(this) + mAudioData.SizeOfExcludingThis(aMallocSizeOf);
|
2014-05-13 21:38:00 +04:00
|
|
|
if (mAudioBuffer) {
|
|
|
|
size += mAudioBuffer->SizeOfIncludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2016-01-21 05:19:19 +03:00
|
|
|
bool
|
|
|
|
AudioData::IsAudible() const
|
|
|
|
{
|
|
|
|
if (!mAudioData) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t frame = 0; frame < mFrames; ++frame) {
|
|
|
|
for (uint32_t channel = 0; channel < mChannels; ++channel) {
|
|
|
|
if (mAudioData[frame * mChannels + channel] != 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-09 15:28:59 +03:00
|
|
|
/* static */
|
|
|
|
already_AddRefed<AudioData>
|
|
|
|
AudioData::TransferAndUpdateTimestampAndDuration(AudioData* aOther,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTimestamp,
|
|
|
|
const TimeUnit& aDuration)
|
2015-02-09 15:28:59 +03:00
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aOther, nullptr);
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<AudioData> v = new AudioData(aOther->mOffset,
|
2015-11-02 01:34:26 +03:00
|
|
|
aTimestamp,
|
|
|
|
aDuration,
|
|
|
|
aOther->mFrames,
|
|
|
|
Move(aOther->mAudioData),
|
|
|
|
aOther->mChannels,
|
|
|
|
aOther->mRate);
|
2015-02-09 15:28:59 +03:00
|
|
|
return v.forget();
|
|
|
|
}
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
static bool
|
|
|
|
ValidatePlane(const VideoData::YCbCrBuffer::Plane& aPlane)
|
|
|
|
{
|
2017-02-07 11:15:59 +03:00
|
|
|
return aPlane.mWidth <= PlanarYCbCrImage::MAX_DIMENSION
|
|
|
|
&& aPlane.mHeight <= PlanarYCbCrImage::MAX_DIMENSION
|
|
|
|
&& aPlane.mWidth * aPlane.mHeight < MAX_VIDEO_WIDTH * MAX_VIDEO_HEIGHT
|
|
|
|
&& aPlane.mStride > 0;
|
2014-02-04 05:49:21 +04:00
|
|
|
}
|
|
|
|
|
2016-12-21 05:19:46 +03:00
|
|
|
static bool ValidateBufferAndPicture(const VideoData::YCbCrBuffer& aBuffer,
|
|
|
|
const IntRect& aPicture)
|
|
|
|
{
|
|
|
|
// The following situation should never happen unless there is a bug
|
|
|
|
// in the decoder
|
2017-02-07 11:15:59 +03:00
|
|
|
if (aBuffer.mPlanes[1].mWidth != aBuffer.mPlanes[2].mWidth
|
|
|
|
|| aBuffer.mPlanes[1].mHeight != aBuffer.mPlanes[2].mHeight) {
|
2016-12-21 05:19:46 +03:00
|
|
|
NS_ERROR("C planes with different sizes");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following situations could be triggered by invalid input
|
|
|
|
if (aPicture.width <= 0 || aPicture.height <= 0) {
|
|
|
|
// In debug mode, makes the error more noticeable
|
|
|
|
MOZ_ASSERT(false, "Empty picture rect");
|
|
|
|
return false;
|
|
|
|
}
|
2017-02-07 11:15:59 +03:00
|
|
|
if (!ValidatePlane(aBuffer.mPlanes[0])
|
|
|
|
|| !ValidatePlane(aBuffer.mPlanes[1])
|
|
|
|
|| !ValidatePlane(aBuffer.mPlanes[2])) {
|
2016-12-21 05:19:46 +03:00
|
|
|
NS_WARNING("Invalid plane size");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the picture size specified in the headers can be extracted out of
|
|
|
|
// the frame we've been supplied without indexing out of bounds.
|
|
|
|
CheckedUint32 xLimit = aPicture.x + CheckedUint32(aPicture.width);
|
|
|
|
CheckedUint32 yLimit = aPicture.y + CheckedUint32(aPicture.height);
|
2017-02-07 11:15:59 +03:00
|
|
|
if (!xLimit.isValid()
|
|
|
|
|| xLimit.value() > aBuffer.mPlanes[0].mStride
|
|
|
|
|| !yLimit.isValid()
|
|
|
|
|| yLimit.value() > aBuffer.mPlanes[0].mHeight)
|
2016-12-21 05:19:46 +03:00
|
|
|
{
|
|
|
|
// The specified picture dimensions can't be contained inside the video
|
|
|
|
// frame, we'll stomp memory if we try to copy it. Fail.
|
|
|
|
NS_WARNING("Overflowing picture rect");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-18 18:50:20 +04:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2014-02-04 05:49:21 +04:00
|
|
|
static bool
|
|
|
|
IsYV12Format(const VideoData::YCbCrBuffer::Plane& aYPlane,
|
|
|
|
const VideoData::YCbCrBuffer::Plane& aCbPlane,
|
|
|
|
const VideoData::YCbCrBuffer::Plane& aCrPlane)
|
|
|
|
{
|
|
|
|
return
|
2017-02-07 11:15:59 +03:00
|
|
|
aYPlane.mWidth % 2 == 0
|
|
|
|
&& aYPlane.mHeight % 2 == 0
|
|
|
|
&& aYPlane.mWidth / 2 == aCbPlane.mWidth
|
|
|
|
&& aYPlane.mHeight / 2 == aCbPlane.mHeight
|
|
|
|
&& aCbPlane.mWidth == aCrPlane.mWidth
|
|
|
|
&& aCbPlane.mHeight == aCrPlane.mHeight;
|
2014-02-04 05:49:21 +04:00
|
|
|
}
|
2014-03-31 19:24:28 +04:00
|
|
|
|
|
|
|
static bool
|
|
|
|
IsInEmulator()
|
|
|
|
{
|
|
|
|
char propQemu[PROPERTY_VALUE_MAX];
|
|
|
|
property_get("ro.kernel.qemu", propQemu, "");
|
|
|
|
return !strncmp(propQemu, "1", 1);
|
|
|
|
}
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
VideoData::VideoData(int64_t aOffset,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTime,
|
|
|
|
const TimeUnit& aDuration,
|
2014-02-04 05:49:21 +04:00
|
|
|
bool aKeyframe,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTimecode,
|
2015-06-07 12:34:00 +03:00
|
|
|
IntSize aDisplay,
|
|
|
|
layers::ImageContainer::FrameID aFrameID)
|
2015-07-27 19:21:33 +03:00
|
|
|
: MediaData(VIDEO_DATA, aOffset, aTime, aDuration, 1)
|
2015-04-09 14:14:55 +03:00
|
|
|
, mDisplay(aDisplay)
|
2015-06-07 12:34:00 +03:00
|
|
|
, mFrameID(aFrameID)
|
2015-07-03 10:29:30 +03:00
|
|
|
, mSentToCompositor(false)
|
2014-02-04 05:49:21 +04:00
|
|
|
{
|
2017-04-12 12:27:34 +03:00
|
|
|
MOZ_ASSERT(!mDuration.IsNegative(), "Frame must have non-negative duration.");
|
2015-04-09 14:14:55 +03:00
|
|
|
mKeyframe = aKeyframe;
|
2017-04-24 12:33:05 +03:00
|
|
|
mTimecode = aTimecode;
|
2014-02-04 05:49:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
VideoData::~VideoData()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-23 10:08:17 +03:00
|
|
|
void
|
|
|
|
VideoData::SetListener(UniquePtr<Listener> aListener)
|
|
|
|
{
|
2017-02-07 11:15:59 +03:00
|
|
|
MOZ_ASSERT(!mSentToCompositor,
|
|
|
|
"Listener should be registered before sending data");
|
2016-11-23 10:08:17 +03:00
|
|
|
|
|
|
|
mListener = Move(aListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VideoData::MarkSentToCompositor()
|
|
|
|
{
|
|
|
|
if (mSentToCompositor) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mSentToCompositor = true;
|
|
|
|
if (mListener != nullptr) {
|
|
|
|
mListener->OnSentToCompositor();
|
|
|
|
mListener = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 01:33:12 +04:00
|
|
|
size_t
|
|
|
|
VideoData::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
size_t size = aMallocSizeOf(this);
|
|
|
|
|
|
|
|
// Currently only PLANAR_YCBCR has a well defined function for determining
|
|
|
|
// it's size, so reporting is limited to that type.
|
|
|
|
if (mImage && mImage->GetFormat() == ImageFormat::PLANAR_YCBCR) {
|
|
|
|
const mozilla::layers::PlanarYCbCrImage* img =
|
|
|
|
static_cast<const mozilla::layers::PlanarYCbCrImage*>(mImage.get());
|
|
|
|
size += img->SizeOfIncludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2016-12-15 12:57:21 +03:00
|
|
|
void
|
2017-04-12 12:34:06 +03:00
|
|
|
VideoData::UpdateDuration(const TimeUnit& aDuration)
|
2014-02-04 05:49:21 +04:00
|
|
|
{
|
2017-04-12 12:34:06 +03:00
|
|
|
MOZ_ASSERT(!aDuration.IsNegative());
|
|
|
|
mDuration = aDuration;
|
2014-08-07 04:02:56 +04:00
|
|
|
}
|
|
|
|
|
2016-12-15 12:57:21 +03:00
|
|
|
void
|
2017-04-14 09:17:04 +03:00
|
|
|
VideoData::UpdateTimestamp(const TimeUnit& aTimestamp)
|
2014-08-07 04:02:56 +04:00
|
|
|
{
|
2017-04-14 09:17:04 +03:00
|
|
|
MOZ_ASSERT(!aTimestamp.IsNegative());
|
2016-12-15 12:57:21 +03:00
|
|
|
|
2017-04-14 09:17:04 +03:00
|
|
|
auto updatedDuration = GetEndTime() - aTimestamp;
|
2017-04-14 09:14:08 +03:00
|
|
|
MOZ_ASSERT(!updatedDuration.IsNegative());
|
2016-12-15 12:57:21 +03:00
|
|
|
|
2017-04-14 12:13:36 +03:00
|
|
|
mTime = aTimestamp;
|
2017-04-14 09:14:08 +03:00
|
|
|
mDuration = updatedDuration;
|
2014-02-04 05:49:21 +04:00
|
|
|
}
|
|
|
|
|
2014-02-18 18:50:20 +04:00
|
|
|
/* static */
|
2015-11-03 14:24:26 +03:00
|
|
|
bool VideoData::SetVideoDataToImage(PlanarYCbCrImage* aVideoImage,
|
2015-04-14 08:15:46 +03:00
|
|
|
const VideoInfo& aInfo,
|
2014-02-18 18:50:20 +04:00
|
|
|
const YCbCrBuffer &aBuffer,
|
|
|
|
const IntRect& aPicture,
|
|
|
|
bool aCopyData)
|
|
|
|
{
|
|
|
|
if (!aVideoImage) {
|
2015-11-03 14:24:26 +03:00
|
|
|
return false;
|
2014-02-18 18:50:20 +04:00
|
|
|
}
|
|
|
|
const YCbCrBuffer::Plane &Y = aBuffer.mPlanes[0];
|
|
|
|
const YCbCrBuffer::Plane &Cb = aBuffer.mPlanes[1];
|
|
|
|
const YCbCrBuffer::Plane &Cr = aBuffer.mPlanes[2];
|
|
|
|
|
|
|
|
PlanarYCbCrData data;
|
|
|
|
data.mYChannel = Y.mData + Y.mOffset;
|
|
|
|
data.mYSize = IntSize(Y.mWidth, Y.mHeight);
|
|
|
|
data.mYStride = Y.mStride;
|
|
|
|
data.mYSkip = Y.mSkip;
|
|
|
|
data.mCbChannel = Cb.mData + Cb.mOffset;
|
|
|
|
data.mCrChannel = Cr.mData + Cr.mOffset;
|
|
|
|
data.mCbCrSize = IntSize(Cb.mWidth, Cb.mHeight);
|
|
|
|
data.mCbCrStride = Cb.mStride;
|
|
|
|
data.mCbSkip = Cb.mSkip;
|
|
|
|
data.mCrSkip = Cr.mSkip;
|
|
|
|
data.mPicX = aPicture.x;
|
|
|
|
data.mPicY = aPicture.y;
|
|
|
|
data.mPicSize = aPicture.Size();
|
|
|
|
data.mStereoMode = aInfo.mStereoMode;
|
2016-10-12 05:46:28 +03:00
|
|
|
data.mYUVColorSpace = aBuffer.mYUVColorSpace;
|
2014-02-18 18:50:20 +04:00
|
|
|
|
|
|
|
aVideoImage->SetDelayedConversion(true);
|
|
|
|
if (aCopyData) {
|
2016-04-19 06:12:41 +03:00
|
|
|
return aVideoImage->CopyData(data);
|
2014-02-18 18:50:20 +04:00
|
|
|
} else {
|
2016-04-19 06:12:41 +03:00
|
|
|
return aVideoImage->AdoptData(data);
|
2014-02-18 18:50:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
2014-11-20 00:01:10 +03:00
|
|
|
already_AddRefed<VideoData>
|
2016-08-04 06:31:52 +03:00
|
|
|
VideoData::CreateAndCopyData(const VideoInfo& aInfo,
|
|
|
|
ImageContainer* aContainer,
|
|
|
|
int64_t aOffset,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTime,
|
2017-04-12 12:46:09 +03:00
|
|
|
const TimeUnit& aDuration,
|
2016-08-04 06:31:52 +03:00
|
|
|
const YCbCrBuffer& aBuffer,
|
|
|
|
bool aKeyframe,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTimecode,
|
2016-08-04 06:31:52 +03:00
|
|
|
const IntRect& aPicture)
|
2014-02-04 05:49:21 +04:00
|
|
|
{
|
2016-08-04 06:31:52 +03:00
|
|
|
if (!aContainer) {
|
2014-02-04 05:49:21 +04:00
|
|
|
// Create a dummy VideoData with no image. This gives us something to
|
|
|
|
// send to media streams if necessary.
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<VideoData> v(new VideoData(aOffset,
|
2016-08-04 06:31:52 +03:00
|
|
|
aTime,
|
2017-04-24 12:33:05 +03:00
|
|
|
aDuration,
|
2016-08-04 06:31:52 +03:00
|
|
|
aKeyframe,
|
|
|
|
aTimecode,
|
|
|
|
aInfo.mDisplay,
|
|
|
|
0));
|
2014-02-04 05:49:21 +04:00
|
|
|
return v.forget();
|
|
|
|
}
|
|
|
|
|
2016-12-21 05:19:46 +03:00
|
|
|
if (!ValidateBufferAndPicture(aBuffer, aPicture)) {
|
2014-02-04 05:49:21 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<VideoData> v(new VideoData(aOffset,
|
2016-08-04 06:31:52 +03:00
|
|
|
aTime,
|
2017-04-24 12:33:05 +03:00
|
|
|
aDuration,
|
2016-08-04 06:31:52 +03:00
|
|
|
aKeyframe,
|
|
|
|
aTimecode,
|
|
|
|
aInfo.mDisplay,
|
|
|
|
0));
|
2014-02-18 18:50:20 +04:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2014-02-04 05:49:21 +04:00
|
|
|
const YCbCrBuffer::Plane &Y = aBuffer.mPlanes[0];
|
|
|
|
const YCbCrBuffer::Plane &Cb = aBuffer.mPlanes[1];
|
|
|
|
const YCbCrBuffer::Plane &Cr = aBuffer.mPlanes[2];
|
2014-02-18 18:50:20 +04:00
|
|
|
#endif
|
2014-02-04 05:49:21 +04:00
|
|
|
|
2016-08-04 06:31:52 +03:00
|
|
|
// Currently our decoder only knows how to output to ImageFormat::PLANAR_YCBCR
|
|
|
|
// format.
|
2014-02-18 18:50:20 +04:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2016-08-04 06:31:52 +03:00
|
|
|
if (IsYV12Format(Y, Cb, Cr) && !IsInEmulator()) {
|
|
|
|
v->mImage = new layers::GrallocImage();
|
|
|
|
}
|
2014-02-04 05:49:21 +04:00
|
|
|
#endif
|
2016-08-04 06:31:52 +03:00
|
|
|
if (!v->mImage) {
|
|
|
|
v->mImage = aContainer->CreatePlanarYCbCrImage();
|
2014-02-04 05:49:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!v->mImage) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-11-16 09:01:30 +03:00
|
|
|
NS_ASSERTION(v->mImage->GetFormat() == ImageFormat::PLANAR_YCBCR,
|
2014-02-04 05:49:21 +04:00
|
|
|
"Wrong format?");
|
2015-11-17 11:09:01 +03:00
|
|
|
PlanarYCbCrImage* videoImage = v->mImage->AsPlanarYCbCrImage();
|
|
|
|
MOZ_ASSERT(videoImage);
|
2014-02-04 05:49:21 +04:00
|
|
|
|
2015-11-03 14:24:26 +03:00
|
|
|
if (!VideoData::SetVideoDataToImage(videoImage, aInfo, aBuffer, aPicture,
|
2016-08-04 06:31:52 +03:00
|
|
|
true /* aCopyData */)) {
|
2015-11-03 14:24:26 +03:00
|
|
|
return nullptr;
|
2014-02-04 05:49:21 +04:00
|
|
|
}
|
|
|
|
|
2014-02-18 18:50:20 +04:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2016-08-05 11:31:56 +03:00
|
|
|
if (!videoImage->IsValid() && IsYV12Format(Y, Cb, Cr)) {
|
2014-02-18 18:50:20 +04:00
|
|
|
// Failed to allocate gralloc. Try fallback.
|
2015-11-17 11:09:01 +03:00
|
|
|
v->mImage = aContainer->CreatePlanarYCbCrImage();
|
2014-02-18 18:50:20 +04:00
|
|
|
if (!v->mImage) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-11-17 11:09:01 +03:00
|
|
|
videoImage = v->mImage->AsPlanarYCbCrImage();
|
2016-08-04 06:31:52 +03:00
|
|
|
if (!VideoData::SetVideoDataToImage(videoImage, aInfo, aBuffer, aPicture,
|
|
|
|
true /* aCopyData */)) {
|
2015-11-03 14:24:26 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-02-18 18:50:20 +04:00
|
|
|
}
|
|
|
|
#endif
|
2014-02-04 05:49:21 +04:00
|
|
|
return v.forget();
|
|
|
|
}
|
|
|
|
|
2016-12-21 05:19:46 +03:00
|
|
|
|
|
|
|
/* static */
|
|
|
|
already_AddRefed<VideoData>
|
|
|
|
VideoData::CreateAndCopyData(const VideoInfo& aInfo,
|
|
|
|
ImageContainer* aContainer,
|
|
|
|
int64_t aOffset,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTime,
|
2017-04-12 12:46:09 +03:00
|
|
|
const TimeUnit& aDuration,
|
2016-12-21 05:19:46 +03:00
|
|
|
const YCbCrBuffer& aBuffer,
|
|
|
|
const YCbCrBuffer::Plane &aAlphaPlane,
|
|
|
|
bool aKeyframe,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTimecode,
|
2016-12-21 05:19:46 +03:00
|
|
|
const IntRect& aPicture)
|
|
|
|
{
|
|
|
|
if (!aContainer) {
|
|
|
|
// Create a dummy VideoData with no image. This gives us something to
|
|
|
|
// send to media streams if necessary.
|
|
|
|
RefPtr<VideoData> v(new VideoData(aOffset,
|
|
|
|
aTime,
|
2017-04-24 12:33:05 +03:00
|
|
|
aDuration,
|
2016-12-21 05:19:46 +03:00
|
|
|
aKeyframe,
|
|
|
|
aTimecode,
|
|
|
|
aInfo.mDisplay,
|
|
|
|
0));
|
|
|
|
return v.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ValidateBufferAndPicture(aBuffer, aPicture)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<VideoData> v(new VideoData(aOffset,
|
|
|
|
aTime,
|
2017-04-24 12:33:05 +03:00
|
|
|
aDuration,
|
2016-12-21 05:19:46 +03:00
|
|
|
aKeyframe,
|
|
|
|
aTimecode,
|
|
|
|
aInfo.mDisplay,
|
|
|
|
0));
|
|
|
|
|
|
|
|
// Convert from YUVA to BGRA format on the software side.
|
|
|
|
RefPtr<layers::SharedRGBImage> videoImage =
|
|
|
|
aContainer->CreateSharedRGBImage();
|
|
|
|
v->mImage = videoImage;
|
|
|
|
|
|
|
|
if (!v->mImage) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (!videoImage->Allocate(IntSize(aBuffer.mPlanes[0].mWidth,
|
|
|
|
aBuffer.mPlanes[0].mHeight),
|
|
|
|
SurfaceFormat::B8G8R8A8)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
uint8_t* argb_buffer = videoImage->GetBuffer();
|
|
|
|
IntSize size = videoImage->GetSize();
|
|
|
|
|
|
|
|
// The naming convention for libyuv and associated utils is word-order.
|
|
|
|
// The naming convention in the gfx stack is byte-order.
|
|
|
|
ConvertYCbCrAToARGB(aBuffer.mPlanes[0].mData,
|
|
|
|
aBuffer.mPlanes[1].mData,
|
|
|
|
aBuffer.mPlanes[2].mData,
|
|
|
|
aAlphaPlane.mData,
|
|
|
|
aBuffer.mPlanes[0].mStride, aBuffer.mPlanes[1].mStride,
|
|
|
|
argb_buffer, size.width * 4,
|
|
|
|
size.width, size.height);
|
|
|
|
|
|
|
|
return v.forget();
|
|
|
|
}
|
|
|
|
|
2014-02-18 18:50:20 +04:00
|
|
|
/* static */
|
2014-11-20 00:01:10 +03:00
|
|
|
already_AddRefed<VideoData>
|
2017-03-09 07:06:24 +03:00
|
|
|
VideoData::CreateFromImage(const IntSize& aDisplay,
|
2014-11-20 00:01:10 +03:00
|
|
|
int64_t aOffset,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTime,
|
2017-04-12 12:46:09 +03:00
|
|
|
const TimeUnit& aDuration,
|
2015-10-18 08:24:48 +03:00
|
|
|
const RefPtr<Image>& aImage,
|
2014-11-20 00:01:10 +03:00
|
|
|
bool aKeyframe,
|
2017-04-24 12:33:05 +03:00
|
|
|
const TimeUnit& aTimecode)
|
2014-02-04 05:49:21 +04:00
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<VideoData> v(new VideoData(aOffset,
|
2016-08-04 06:31:52 +03:00
|
|
|
aTime,
|
2017-04-24 12:33:05 +03:00
|
|
|
aDuration,
|
2016-08-04 06:31:52 +03:00
|
|
|
aKeyframe,
|
|
|
|
aTimecode,
|
2017-03-09 07:06:24 +03:00
|
|
|
aDisplay,
|
2016-08-04 06:31:52 +03:00
|
|
|
0));
|
2014-02-04 05:49:21 +04:00
|
|
|
v->mImage = aImage;
|
|
|
|
return v.forget();
|
|
|
|
}
|
|
|
|
|
2015-04-09 14:14:55 +03:00
|
|
|
MediaRawData::MediaRawData()
|
2015-07-27 19:21:33 +03:00
|
|
|
: MediaData(RAW_DATA, 0)
|
2015-08-06 03:58:35 +03:00
|
|
|
, mCrypto(mCryptoInternal)
|
2015-04-09 14:14:55 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaRawData::MediaRawData(const uint8_t* aData, size_t aSize)
|
2015-07-27 19:21:33 +03:00
|
|
|
: MediaData(RAW_DATA, 0)
|
2015-08-06 03:58:35 +03:00
|
|
|
, mCrypto(mCryptoInternal)
|
2016-04-03 14:05:23 +03:00
|
|
|
, mBuffer(aData, aSize)
|
2015-04-09 14:14:55 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-23 01:52:16 +03:00
|
|
|
MediaRawData::MediaRawData(const uint8_t* aData, size_t aSize,
|
|
|
|
const uint8_t* aAlphaData, size_t aAlphaSize)
|
|
|
|
: MediaData(RAW_DATA, 0)
|
|
|
|
, mCrypto(mCryptoInternal)
|
|
|
|
, mBuffer(aData, aSize)
|
|
|
|
, mAlphaBuffer(aAlphaData, aAlphaSize)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-04-09 14:14:55 +03:00
|
|
|
already_AddRefed<MediaRawData>
|
|
|
|
MediaRawData::Clone() const
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<MediaRawData> s = new MediaRawData;
|
2015-04-09 14:14:55 +03:00
|
|
|
s->mTimecode = mTimecode;
|
|
|
|
s->mTime = mTime;
|
|
|
|
s->mDuration = mDuration;
|
|
|
|
s->mOffset = mOffset;
|
|
|
|
s->mKeyframe = mKeyframe;
|
|
|
|
s->mExtraData = mExtraData;
|
2015-04-14 08:15:46 +03:00
|
|
|
s->mCryptoInternal = mCryptoInternal;
|
2015-06-12 08:18:05 +03:00
|
|
|
s->mTrackInfo = mTrackInfo;
|
2016-07-28 19:19:21 +03:00
|
|
|
s->mEOS = mEOS;
|
2016-04-03 14:05:23 +03:00
|
|
|
if (!s->mBuffer.Append(mBuffer.Data(), mBuffer.Length())) {
|
|
|
|
return nullptr;
|
2015-04-09 14:14:55 +03:00
|
|
|
}
|
2016-11-23 01:52:16 +03:00
|
|
|
if (!s->mAlphaBuffer.Append(mAlphaBuffer.Data(), mAlphaBuffer.Length())) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-04-09 14:14:55 +03:00
|
|
|
return s.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaRawData::~MediaRawData()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
MediaRawData::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
size_t size = aMallocSizeOf(this);
|
2016-04-03 14:05:23 +03:00
|
|
|
size += mBuffer.SizeOfExcludingThis(aMallocSizeOf);
|
2015-04-09 14:14:55 +03:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaRawDataWriter*
|
|
|
|
MediaRawData::CreateWriter()
|
|
|
|
{
|
|
|
|
return new MediaRawDataWriter(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaRawDataWriter::MediaRawDataWriter(MediaRawData* aMediaRawData)
|
2015-08-06 03:58:35 +03:00
|
|
|
: mCrypto(aMediaRawData->mCryptoInternal)
|
2015-04-09 14:14:55 +03:00
|
|
|
, mTarget(aMediaRawData)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MediaRawDataWriter::SetSize(size_t aSize)
|
|
|
|
{
|
2016-04-03 14:05:23 +03:00
|
|
|
return mTarget->mBuffer.SetLength(aSize);
|
2015-04-09 14:14:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MediaRawDataWriter::Prepend(const uint8_t* aData, size_t aSize)
|
|
|
|
{
|
2016-04-03 14:05:23 +03:00
|
|
|
return mTarget->mBuffer.Prepend(aData, aSize);
|
2015-04-09 14:14:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MediaRawDataWriter::Replace(const uint8_t* aData, size_t aSize)
|
|
|
|
{
|
2016-04-03 14:05:23 +03:00
|
|
|
return mTarget->mBuffer.Replace(aData, aSize);
|
2015-04-09 14:14:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaRawDataWriter::Clear()
|
|
|
|
{
|
2016-04-03 14:05:23 +03:00
|
|
|
mTarget->mBuffer.Clear();
|
2015-08-06 03:58:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t*
|
|
|
|
MediaRawDataWriter::Data()
|
|
|
|
{
|
2016-04-03 14:05:23 +03:00
|
|
|
return mTarget->mBuffer.Data();
|
2015-08-06 03:58:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
MediaRawDataWriter::Size()
|
|
|
|
{
|
|
|
|
return mTarget->Size();
|
2015-04-09 14:14:55 +03:00
|
|
|
}
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
} // namespace mozilla
|