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"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
using namespace layers;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
VideoChunk::VideoChunk()
|
|
|
|
{}
|
|
|
|
|
|
|
|
VideoChunk::~VideoChunk()
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
VideoSegment::AppendFrame(already_AddRefed<Image> aImage, TrackTicks aDuration,
|
2014-02-09 00:04:38 -08:00
|
|
|
const IntSize& aIntrinsicSize)
|
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));
|
2012-08-20 21:06:46 -07:00
|
|
|
chunk->mFrame.TakeFrom(&frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
VideoSegment::VideoSegment()
|
|
|
|
: MediaSegmentBase<VideoSegment, VideoChunk>(VIDEO)
|
|
|
|
{}
|
|
|
|
|
|
|
|
VideoSegment::~VideoSegment()
|
|
|
|
{}
|
|
|
|
|
|
|
|
}
|