2012-08-20 21:06:46 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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 "VideoSegment.h"
|
2014-02-09 00:04:38 -08:00
|
|
|
|
|
|
|
#include "gfx2DGlue.h"
|
2012-08-20 21:06:46 -07:00
|
|
|
#include "ImageContainer.h"
|
2014-09-03 17:08:00 -07:00
|
|
|
#include "Layers.h"
|
2012-08-20 21:06:46 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
using namespace layers;
|
|
|
|
|
2014-03-15 12:00:17 -07:00
|
|
|
VideoFrame::VideoFrame(already_AddRefed<Image>& aImage,
|
|
|
|
const gfxIntSize& aIntrinsicSize)
|
2013-05-29 21:44:43 -07:00
|
|
|
: mImage(aImage), mIntrinsicSize(aIntrinsicSize), mForceBlack(false)
|
2012-08-20 21:06:46 -07:00
|
|
|
{}
|
|
|
|
|
|
|
|
VideoFrame::VideoFrame()
|
2013-05-29 21:44:43 -07:00
|
|
|
: mIntrinsicSize(0, 0), mForceBlack(false)
|
2012-08-20 21:06:46 -07:00
|
|
|
{}
|
|
|
|
|
|
|
|
VideoFrame::~VideoFrame()
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
VideoFrame::SetNull() {
|
|
|
|
mImage = nullptr;
|
|
|
|
mIntrinsicSize = gfxIntSize(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VideoFrame::TakeFrom(VideoFrame* aFrame)
|
|
|
|
{
|
|
|
|
mImage = aFrame->mImage.forget();
|
|
|
|
mIntrinsicSize = aFrame->mIntrinsicSize;
|
2013-12-01 23:52:54 -08:00
|
|
|
mForceBlack = aFrame->GetForceBlack();
|
2012-08-20 21:06:46 -07:00
|
|
|
}
|
|
|
|
|
2014-09-03 17:08:00 -07:00
|
|
|
/* static */ already_AddRefed<Image>
|
|
|
|
VideoFrame::CreateBlackImage(const gfxIntSize& aSize)
|
|
|
|
{
|
|
|
|
nsRefPtr<ImageContainer> container;
|
|
|
|
nsRefPtr<Image> image;
|
|
|
|
container = LayerManager::CreateImageContainer();
|
|
|
|
image = container->CreateImage(ImageFormat::PLANAR_YCBCR);
|
|
|
|
if (!image) {
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int len = ((aSize.width * aSize.height) * 3 / 2);
|
|
|
|
PlanarYCbCrImage* planar = static_cast<PlanarYCbCrImage*>(image.get());
|
|
|
|
|
|
|
|
// Generate a black image.
|
|
|
|
ScopedDeletePtr<uint8_t> frame(new uint8_t[len]);
|
|
|
|
int y = aSize.width * aSize.height;
|
|
|
|
// Fill Y plane.
|
|
|
|
memset(frame.rwget(), 0x10, y);
|
|
|
|
// Fill Cb/Cr planes.
|
|
|
|
memset(frame.rwget() + y, 0x80, (len - y));
|
|
|
|
|
|
|
|
const uint8_t lumaBpp = 8;
|
|
|
|
const uint8_t chromaBpp = 4;
|
|
|
|
|
|
|
|
layers::PlanarYCbCrData data;
|
|
|
|
data.mYChannel = frame.rwget();
|
|
|
|
data.mYSize = gfx::IntSize(aSize.width, aSize.height);
|
|
|
|
data.mYStride = (int32_t) (aSize.width * lumaBpp / 8.0);
|
|
|
|
data.mCbCrStride = (int32_t) (aSize.width * chromaBpp / 8.0);
|
|
|
|
data.mCbChannel = frame.rwget() + aSize.height * data.mYStride;
|
|
|
|
data.mCrChannel = data.mCbChannel + aSize.height * data.mCbCrStride / 2;
|
|
|
|
data.mCbCrSize = gfx::IntSize(aSize.width / 2, aSize.height / 2);
|
|
|
|
data.mPicX = 0;
|
|
|
|
data.mPicY = 0;
|
|
|
|
data.mPicSize = gfx::IntSize(aSize.width, aSize.height);
|
|
|
|
data.mStereoMode = StereoMode::MONO;
|
|
|
|
|
|
|
|
// SetData copies data, so we can free data.
|
|
|
|
planar->SetData(data);
|
|
|
|
|
|
|
|
return image.forget();
|
|
|
|
}
|
|
|
|
|
2012-08-20 21:06:46 -07:00
|
|
|
VideoChunk::VideoChunk()
|
|
|
|
{}
|
|
|
|
|
|
|
|
VideoChunk::~VideoChunk()
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
2014-03-15 12:00:17 -07:00
|
|
|
VideoSegment::AppendFrame(already_AddRefed<Image>&& aImage,
|
|
|
|
TrackTicks aDuration,
|
2014-07-03 23:37:36 -07:00
|
|
|
const IntSize& aIntrinsicSize,
|
|
|
|
bool aForceBlack)
|
2012-08-20 21:06:46 -07:00
|
|
|
{
|
|
|
|
VideoChunk* chunk = AppendChunk(aDuration);
|
2014-02-09 00:04:38 -08:00
|
|
|
VideoFrame frame(aImage, ThebesIntSize(aIntrinsicSize));
|
2014-07-03 23:37:36 -07:00
|
|
|
frame.SetForceBlack(aForceBlack);
|
2012-08-20 21:06:46 -07:00
|
|
|
chunk->mFrame.TakeFrom(&frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
VideoSegment::VideoSegment()
|
|
|
|
: MediaSegmentBase<VideoSegment, VideoChunk>(VIDEO)
|
|
|
|
{}
|
|
|
|
|
|
|
|
VideoSegment::~VideoSegment()
|
|
|
|
{}
|
|
|
|
|
|
|
|
}
|