2008-07-09 12:22:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2008-07-09 12:22:20 +04:00
|
|
|
|
|
|
|
/* rendering object for the HTML <video> element */
|
|
|
|
|
2013-09-25 05:43:43 +04:00
|
|
|
#include "nsVideoFrame.h"
|
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
|
2013-03-19 16:27:35 +04:00
|
|
|
#include "mozilla/dom/HTMLVideoElement.h"
|
2012-05-11 12:32:29 +04:00
|
|
|
#include "nsIDOMHTMLImageElement.h"
|
2008-07-09 12:22:20 +04:00
|
|
|
#include "nsDisplayList.h"
|
2013-05-29 00:55:00 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2008-07-09 12:22:20 +04:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsBoxLayoutState.h"
|
|
|
|
#include "nsBoxFrame.h"
|
2009-06-26 11:25:17 +04:00
|
|
|
#include "nsImageFrame.h"
|
|
|
|
#include "nsIImageLoadingContent.h"
|
2011-08-11 17:29:50 +04:00
|
|
|
#include "nsContentUtils.h"
|
2012-08-19 23:33:25 +04:00
|
|
|
#include "ImageContainer.h"
|
|
|
|
#include "ImageLayers.h"
|
2012-09-06 00:49:53 +04:00
|
|
|
#include "nsContentList.h"
|
2014-11-15 03:45:23 +03:00
|
|
|
#include "nsStyleUtil.h"
|
2013-01-15 16:22:03 +04:00
|
|
|
#include <algorithm>
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2010-08-02 07:06:58 +04:00
|
|
|
using namespace mozilla;
|
2010-03-02 02:41:49 +03:00
|
|
|
using namespace mozilla::layers;
|
2011-06-01 05:46:57 +04:00
|
|
|
using namespace mozilla::dom;
|
2013-12-31 13:06:12 +04:00
|
|
|
using namespace mozilla::gfx;
|
2010-03-02 02:41:49 +03:00
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
nsIFrame*
|
|
|
|
NS_NewHTMLVideoFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsVideoFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsVideoFrame)
|
|
|
|
|
2016-05-11 20:54:52 +03:00
|
|
|
// A matrix to obtain a correct-rotated video frame.
|
|
|
|
static Matrix
|
|
|
|
ComputeRotationMatrix(gfxFloat aRotatedWidth,
|
|
|
|
gfxFloat aRotatedHeight,
|
|
|
|
VideoInfo::Rotation aDegrees)
|
|
|
|
{
|
|
|
|
Matrix shiftVideoCenterToOrigin;
|
|
|
|
if (aDegrees == VideoInfo::Rotation::kDegree_90 ||
|
|
|
|
aDegrees == VideoInfo::Rotation::kDegree_270) {
|
|
|
|
shiftVideoCenterToOrigin = Matrix::Translation(-aRotatedHeight / 2.0,
|
|
|
|
-aRotatedWidth / 2.0);
|
|
|
|
} else {
|
|
|
|
shiftVideoCenterToOrigin = Matrix::Translation(-aRotatedWidth / 2.0,
|
|
|
|
-aRotatedHeight / 2.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
Matrix rotation = Matrix::Rotation(gfx::Float(aDegrees / 180.0 * M_PI));
|
|
|
|
Matrix shiftLeftTopToOrigin = Matrix::Translation(aRotatedWidth / 2.0,
|
|
|
|
aRotatedHeight / 2.0);
|
|
|
|
return shiftVideoCenterToOrigin * rotation * shiftLeftTopToOrigin;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SwapScaleWidthHeightForRotation(IntSize& aSize, VideoInfo::Rotation aDegrees)
|
|
|
|
{
|
|
|
|
if (aDegrees == VideoInfo::Rotation::kDegree_90 ||
|
|
|
|
aDegrees == VideoInfo::Rotation::kDegree_270) {
|
|
|
|
int32_t tmpWidth = aSize.width;
|
|
|
|
aSize.width = aSize.height;
|
|
|
|
aSize.height = tmpWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-26 00:49:43 +03:00
|
|
|
nsVideoFrame::nsVideoFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsContainerFrame(aContext, kClassID)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2016-03-26 00:49:43 +03:00
|
|
|
EnableVisibilityTracking();
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsVideoFrame::~nsVideoFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_QUERYFRAME_HEAD(nsVideoFrame)
|
2013-05-28 00:34:00 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsVideoFrame)
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
2016-04-18 09:26:44 +03:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2008-07-09 12:22:20 +04:00
|
|
|
|
|
|
|
nsresult
|
2011-05-07 00:04:44 +04:00
|
|
|
nsVideoFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2014-09-25 02:52:12 +04:00
|
|
|
nsNodeInfoManager *nodeInfoManager = GetContent()->GetComposedDoc()->NodeInfoManager();
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<NodeInfo> nodeInfo;
|
2013-02-27 01:06:51 +04:00
|
|
|
Element *element;
|
|
|
|
|
2009-06-26 11:25:17 +04:00
|
|
|
if (HasVideoElement()) {
|
|
|
|
// Create an anonymous image element as a child to hold the poster
|
|
|
|
// image. We may not have a poster image now, but one could be added
|
|
|
|
// before we load, or on a subsequent load.
|
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(nsGkAtoms::img,
|
2012-07-30 18:20:58 +04:00
|
|
|
nullptr,
|
2011-06-14 11:56:49 +04:00
|
|
|
kNameSpaceID_XHTML,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
2009-06-26 11:25:17 +04:00
|
|
|
NS_ENSURE_TRUE(nodeInfo, NS_ERROR_OUT_OF_MEMORY);
|
2013-02-27 01:06:51 +04:00
|
|
|
element = NS_NewHTMLImageElement(nodeInfo.forget());
|
2011-06-01 05:46:57 +04:00
|
|
|
mPosterImage = element;
|
2009-06-26 11:25:17 +04:00
|
|
|
NS_ENSURE_TRUE(mPosterImage, NS_ERROR_OUT_OF_MEMORY);
|
2009-11-05 16:56:52 +03:00
|
|
|
|
2009-06-26 11:25:17 +04:00
|
|
|
// Set the nsImageLoadingContent::ImageState() to 0. This means that the
|
|
|
|
// image will always report its state as 0, so it will never be reframed
|
|
|
|
// to show frames for loading or the broken image icon. This is important,
|
|
|
|
// as the image is native anonymous, and so can't be reframed (currently).
|
|
|
|
nsCOMPtr<nsIImageLoadingContent> imgContent = do_QueryInterface(mPosterImage);
|
|
|
|
NS_ENSURE_TRUE(imgContent, NS_ERROR_FAILURE);
|
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
imgContent->ForceImageState(true, 0);
|
2011-06-01 05:46:57 +04:00
|
|
|
// And now have it update its internal state
|
|
|
|
element->UpdateState(false);
|
2009-06-26 11:25:17 +04:00
|
|
|
|
2013-12-04 05:06:16 +04:00
|
|
|
UpdatePosterSource(false);
|
2009-11-05 16:56:52 +03:00
|
|
|
|
2009-06-26 11:25:17 +04:00
|
|
|
if (!aElements.AppendElement(mPosterImage))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2013-02-27 01:06:51 +04:00
|
|
|
|
|
|
|
// Set up the caption overlay div for showing any TextTrack data
|
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(nsGkAtoms::div,
|
|
|
|
nullptr,
|
|
|
|
kNameSpaceID_XHTML,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
|
|
|
NS_ENSURE_TRUE(nodeInfo, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
mCaptionDiv = NS_NewHTMLDivElement(nodeInfo.forget());
|
|
|
|
NS_ENSURE_TRUE(mCaptionDiv, NS_ERROR_OUT_OF_MEMORY);
|
2013-05-29 00:55:00 +04:00
|
|
|
nsGenericHTMLElement* div = static_cast<nsGenericHTMLElement*>(mCaptionDiv.get());
|
|
|
|
div->SetClassName(NS_LITERAL_STRING("caption-box"));
|
2013-02-27 01:06:51 +04:00
|
|
|
|
|
|
|
if (!aElements.AppendElement(mCaptionDiv))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2017-03-28 11:48:40 +03:00
|
|
|
UpdateTextTrack();
|
2009-11-05 16:56:52 +03:00
|
|
|
}
|
2009-06-26 11:25:17 +04:00
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
// Set up "videocontrols" XUL element which will be XBL-bound to the
|
|
|
|
// actual controls.
|
2009-06-26 11:25:17 +04:00
|
|
|
nodeInfo = nodeInfoManager->GetNodeInfo(nsGkAtoms::videocontrols,
|
2012-07-30 18:20:58 +04:00
|
|
|
nullptr,
|
2011-06-14 11:56:49 +04:00
|
|
|
kNameSpaceID_XUL,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
2008-09-26 02:46:52 +04:00
|
|
|
NS_ENSURE_TRUE(nodeInfo, NS_ERROR_OUT_OF_MEMORY);
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2010-08-20 03:12:46 +04:00
|
|
|
NS_TrustedNewXULElement(getter_AddRefs(mVideoControls), nodeInfo.forget());
|
2008-07-09 12:22:20 +04:00
|
|
|
if (!aElements.AppendElement(mVideoControls))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2009-06-26 11:25:17 +04:00
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-02-11 20:34:01 +03:00
|
|
|
void
|
2014-07-16 22:41:57 +04:00
|
|
|
nsVideoFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFliter)
|
2010-02-11 20:34:01 +03:00
|
|
|
{
|
2014-07-16 22:41:57 +04:00
|
|
|
if (mPosterImage) {
|
|
|
|
aElements.AppendElement(mPosterImage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mVideoControls) {
|
|
|
|
aElements.AppendElement(mVideoControls);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCaptionDiv) {
|
|
|
|
aElements.AppendElement(mCaptionDiv);
|
|
|
|
}
|
2010-02-11 20:34:01 +03:00
|
|
|
}
|
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
void
|
2009-12-24 08:21:15 +03:00
|
|
|
nsVideoFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2013-02-27 01:06:51 +04:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mCaptionDiv);
|
2008-07-09 12:22:20 +04:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mVideoControls);
|
2009-06-26 11:25:17 +04:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mPosterImage);
|
2016-04-18 09:26:44 +03:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot);
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
|
2010-03-02 02:41:49 +03:00
|
|
|
already_AddRefed<Layer>
|
|
|
|
nsVideoFrame::BuildLayer(nsDisplayListBuilder* aBuilder,
|
2010-07-16 01:07:46 +04:00
|
|
|
LayerManager* aManager,
|
2012-09-17 02:25:33 +04:00
|
|
|
nsDisplayItem* aItem,
|
2013-09-27 10:01:16 +04:00
|
|
|
const ContainerLayerParameters& aContainerParameters)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2014-11-26 02:40:02 +03:00
|
|
|
nsRect area = GetContentRectRelativeToSelf() + aItem->ToReferenceFrame();
|
2013-03-19 16:27:35 +04:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2014-11-15 03:45:24 +03:00
|
|
|
|
|
|
|
nsIntSize videoSizeInPx;
|
|
|
|
if (NS_FAILED(element->GetVideoSize(&videoSizeInPx)) ||
|
2014-11-26 02:40:02 +03:00
|
|
|
area.IsEmpty()) {
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2012-05-11 12:32:15 +04:00
|
|
|
}
|
2010-03-02 02:41:49 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<ImageContainer> container = element->GetImageContainer();
|
2012-04-09 23:17:19 +04:00
|
|
|
if (!container)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2016-05-11 20:54:52 +03:00
|
|
|
|
2010-04-27 12:53:44 +04:00
|
|
|
// Retrieve the size of the decoded video frame, before being scaled
|
|
|
|
// by pixel aspect ratio.
|
2013-12-13 21:32:02 +04:00
|
|
|
mozilla::gfx::IntSize frameSize = container->GetCurrentSize();
|
2010-04-27 12:53:44 +04:00
|
|
|
if (frameSize.width == 0 || frameSize.height == 0) {
|
|
|
|
// No image, or zero-sized image. No point creating a layer.
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-04-27 12:53:44 +04:00
|
|
|
}
|
|
|
|
|
2014-11-15 03:45:24 +03:00
|
|
|
// Convert video size from pixel units into app units, to get an aspect-ratio
|
|
|
|
// (which has to be represented as a nsSize) and an IntrinsicSize that we
|
|
|
|
// can pass to ComputeObjectRenderRect.
|
|
|
|
nsSize aspectRatio(nsPresContext::CSSPixelsToAppUnits(videoSizeInPx.width),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(videoSizeInPx.height));
|
|
|
|
IntrinsicSize intrinsicSize;
|
|
|
|
intrinsicSize.width.SetCoordValue(aspectRatio.width);
|
|
|
|
intrinsicSize.height.SetCoordValue(aspectRatio.height);
|
|
|
|
|
2014-11-26 02:40:02 +03:00
|
|
|
nsRect dest = nsLayoutUtils::ComputeObjectDestRect(area,
|
2014-11-15 03:45:24 +03:00
|
|
|
intrinsicSize,
|
|
|
|
aspectRatio,
|
|
|
|
StylePosition());
|
|
|
|
|
|
|
|
gfxRect destGFXRect = PresContext()->AppUnitsToGfxUnits(dest);
|
|
|
|
destGFXRect.Round();
|
|
|
|
if (destGFXRect.IsEmpty()) {
|
2012-11-30 02:11:04 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
2016-05-11 20:54:52 +03:00
|
|
|
|
|
|
|
VideoInfo::Rotation rotationDeg = element->RotationDegrees();
|
2014-11-15 03:45:24 +03:00
|
|
|
IntSize scaleHint(static_cast<int32_t>(destGFXRect.Width()),
|
|
|
|
static_cast<int32_t>(destGFXRect.Height()));
|
2016-05-11 20:54:52 +03:00
|
|
|
// scaleHint is set regardless of rotation, so swap w/h if needed.
|
|
|
|
SwapScaleWidthHeightForRotation(scaleHint, rotationDeg);
|
2010-10-26 07:11:13 +04:00
|
|
|
container->SetScaleHint(scaleHint);
|
2010-03-02 02:41:49 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<ImageLayer> layer = static_cast<ImageLayer*>
|
2012-08-29 09:47:15 +04:00
|
|
|
(aManager->GetLayerBuilder()->GetLeafLayerFor(aBuilder, aItem));
|
2010-07-16 01:07:46 +04:00
|
|
|
if (!layer) {
|
|
|
|
layer = aManager->CreateImageLayer();
|
|
|
|
if (!layer)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-07-16 01:07:46 +04:00
|
|
|
}
|
2010-03-02 02:41:49 +03:00
|
|
|
|
|
|
|
layer->SetContainer(container);
|
2016-05-25 19:01:18 +03:00
|
|
|
layer->SetSamplingFilter(nsLayoutUtils::GetSamplingFilterForFrame(this));
|
2010-03-02 02:41:49 +03:00
|
|
|
// Set a transform on the layer to draw the video in the right place
|
2014-11-15 03:45:24 +03:00
|
|
|
gfxPoint p = destGFXRect.TopLeft() + aContainerParameters.mOffset;
|
2016-05-11 20:54:52 +03:00
|
|
|
|
|
|
|
Matrix preTransform = ComputeRotationMatrix(destGFXRect.Width(),
|
|
|
|
destGFXRect.Height(),
|
|
|
|
rotationDeg);
|
|
|
|
|
|
|
|
Matrix transform = preTransform * Matrix::Translation(p.x, p.y);
|
|
|
|
|
2014-01-27 19:28:33 +04:00
|
|
|
layer->SetBaseTransform(gfx::Matrix4x4::From2D(transform));
|
2014-11-15 03:45:24 +03:00
|
|
|
layer->SetScaleToSize(scaleHint, ScaleMode::STRETCH);
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Layer> result = layer.forget();
|
2010-03-02 02:41:49 +03:00
|
|
|
return result.forget();
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
|
2016-04-26 03:23:21 +03:00
|
|
|
class DispatchResizeToControls : public Runnable
|
2013-05-28 09:00:59 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit DispatchResizeToControls(nsIContent* aContent)
|
2017-06-21 14:59:26 +03:00
|
|
|
: mContent(aContent) {}
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Run() override {
|
2013-05-28 09:00:59 +04:00
|
|
|
nsContentUtils::DispatchTrustedEvent(mContent->OwnerDoc(), mContent,
|
|
|
|
NS_LITERAL_STRING("resizevideocontrols"),
|
|
|
|
false, false);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIContent> mContent;
|
|
|
|
};
|
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
void
|
2016-09-08 20:21:52 +03:00
|
|
|
nsVideoFrame::Reflow(nsPresContext* aPresContext,
|
|
|
|
ReflowOutput& aMetrics,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2016-09-08 20:21:52 +03:00
|
|
|
nsReflowStatus& aStatus)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2015-03-30 01:38:40 +03:00
|
|
|
MarkInReflow();
|
2008-07-09 12:22:20 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsVideoFrame");
|
2016-07-21 13:36:39 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowInput, aMetrics, aStatus);
|
2008-07-09 12:22:20 +04:00
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
2016-09-08 20:21:52 +03:00
|
|
|
("enter nsVideoFrame::Reflow: availSize=%d,%d",
|
|
|
|
aReflowInput.AvailableWidth(),
|
|
|
|
aReflowInput.AvailableHeight()));
|
2008-07-09 12:22:20 +04:00
|
|
|
|
|
|
|
NS_PRECONDITION(mState & NS_FRAME_IN_REFLOW, "frame is not in reflow");
|
|
|
|
|
2017-02-14 12:55:48 +03:00
|
|
|
aStatus.Reset();
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2016-10-12 08:41:50 +03:00
|
|
|
const WritingMode myWM = aReflowInput.GetWritingMode();
|
|
|
|
nscoord contentBoxBSize = aReflowInput.ComputedBSize();
|
|
|
|
const nscoord borderBoxISize = aReflowInput.ComputedISize() +
|
|
|
|
aReflowInput.ComputedLogicalBorderPadding().IStartEnd(myWM);
|
|
|
|
const bool isBSizeShrinkWrapping = (contentBoxBSize == NS_INTRINSICSIZE);
|
|
|
|
|
|
|
|
nscoord borderBoxBSize;
|
|
|
|
if (!isBSizeShrinkWrapping) {
|
|
|
|
borderBoxBSize = contentBoxBSize +
|
|
|
|
aReflowInput.ComputedLogicalBorderPadding().BStartEnd(myWM);
|
|
|
|
}
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2016-11-25 09:03:15 +03:00
|
|
|
nsMargin borderPadding = aReflowInput.ComputedPhysicalBorderPadding();
|
2016-10-12 08:41:50 +03:00
|
|
|
|
2016-10-12 08:41:50 +03:00
|
|
|
// Reflow the child frames. We may have up to three: an image
|
|
|
|
// frame (for the poster image), a container frame for the controls,
|
|
|
|
// and a container frame for the caption.
|
2016-11-15 21:50:59 +03:00
|
|
|
for (nsIFrame* child : mFrames) {
|
2016-10-12 08:41:50 +03:00
|
|
|
nsSize oldChildSize = child->GetSize();
|
|
|
|
|
2013-02-27 01:06:51 +04:00
|
|
|
if (child->GetContent() == mPosterImage) {
|
2009-06-26 11:25:17 +04:00
|
|
|
// Reflow the poster frame.
|
|
|
|
nsImageFrame* imageFrame = static_cast<nsImageFrame*>(child);
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOutput kidDesiredSize(aReflowInput);
|
2014-07-24 12:28:46 +04:00
|
|
|
WritingMode wm = imageFrame->GetWritingMode();
|
2016-07-21 13:36:39 +03:00
|
|
|
LogicalSize availableSize = aReflowInput.AvailableSize(wm);
|
2015-06-04 13:43:02 +03:00
|
|
|
LogicalSize cbSize = aMetrics.Size(aMetrics.GetWritingMode()).
|
|
|
|
ConvertTo(wm, aMetrics.GetWritingMode());
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowInput kidReflowInput(aPresContext,
|
|
|
|
aReflowInput,
|
2009-10-06 11:37:46 +04:00
|
|
|
imageFrame,
|
|
|
|
availableSize,
|
2015-06-04 13:43:02 +03:00
|
|
|
&cbSize);
|
2012-05-11 12:32:29 +04:00
|
|
|
|
2014-11-15 03:45:24 +03:00
|
|
|
nsRect posterRenderRect;
|
|
|
|
if (ShouldDisplayPoster()) {
|
|
|
|
posterRenderRect =
|
2016-11-25 09:03:15 +03:00
|
|
|
nsRect(nsPoint(borderPadding.left, borderPadding.top),
|
2016-07-21 13:36:39 +03:00
|
|
|
nsSize(aReflowInput.ComputedWidth(),
|
|
|
|
aReflowInput.ComputedHeight()));
|
2009-10-06 11:37:46 +04:00
|
|
|
}
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput.SetComputedWidth(posterRenderRect.width);
|
|
|
|
kidReflowInput.SetComputedHeight(posterRenderRect.height);
|
|
|
|
ReflowChild(imageFrame, aPresContext, kidDesiredSize, kidReflowInput,
|
2014-11-15 03:45:24 +03:00
|
|
|
posterRenderRect.x, posterRenderRect.y, 0, aStatus);
|
|
|
|
FinishReflowChild(imageFrame, aPresContext,
|
2016-07-21 13:36:39 +03:00
|
|
|
kidDesiredSize, &kidReflowInput,
|
2014-11-15 03:45:24 +03:00
|
|
|
posterRenderRect.x, posterRenderRect.y, 0);
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
// Android still uses XUL media controls & hence needs this XUL-friendly
|
|
|
|
// custom reflow code. This will go away in bug 1310907.
|
|
|
|
#ifdef ANDROID
|
2013-02-27 01:06:51 +04:00
|
|
|
} else if (child->GetContent() == mVideoControls) {
|
2009-06-26 11:25:17 +04:00
|
|
|
// Reflow the video controls frame.
|
2016-07-21 13:36:39 +03:00
|
|
|
nsBoxLayoutState boxState(PresContext(), aReflowInput.mRenderingContext);
|
2009-06-26 11:25:17 +04:00
|
|
|
nsBoxFrame::LayoutChildAt(boxState,
|
|
|
|
child,
|
2016-11-25 09:03:15 +03:00
|
|
|
nsRect(borderPadding.left,
|
|
|
|
borderPadding.top,
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedWidth(),
|
|
|
|
aReflowInput.ComputedHeight()));
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
#endif // ANDROID
|
|
|
|
} else if (child->GetContent() == mCaptionDiv ||
|
|
|
|
child->GetContent() == mVideoControls) {
|
|
|
|
// Reflow the caption and control bar frames.
|
2014-07-24 12:28:46 +04:00
|
|
|
WritingMode wm = child->GetWritingMode();
|
2016-10-12 08:41:50 +03:00
|
|
|
LogicalSize availableSize = aReflowInput.ComputedSize(wm);
|
|
|
|
availableSize.BSize(wm) = NS_UNCONSTRAINEDSIZE;
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowInput kidReflowInput(aPresContext,
|
|
|
|
aReflowInput,
|
2013-02-27 01:06:51 +04:00
|
|
|
child,
|
2016-10-12 08:41:50 +03:00
|
|
|
availableSize);
|
|
|
|
ReflowOutput kidDesiredSize(kidReflowInput);
|
2016-11-15 21:50:59 +03:00
|
|
|
ReflowChild(child, aPresContext, kidDesiredSize, kidReflowInput,
|
2016-11-25 09:03:15 +03:00
|
|
|
borderPadding.left, borderPadding.top, 0, aStatus);
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
if (child->GetContent() == mVideoControls && isBSizeShrinkWrapping) {
|
2016-12-08 22:20:25 +03:00
|
|
|
// Resolve our own BSize based on the controls' size in the same axis.
|
|
|
|
contentBoxBSize = myWM.IsOrthogonalTo(wm) ?
|
|
|
|
kidDesiredSize.ISize(wm) : kidDesiredSize.BSize(wm);
|
2016-10-12 08:41:50 +03:00
|
|
|
}
|
|
|
|
|
2013-02-27 01:06:51 +04:00
|
|
|
FinishReflowChild(child, aPresContext,
|
2016-07-21 13:36:39 +03:00
|
|
|
kidDesiredSize, &kidReflowInput,
|
2016-11-25 09:03:15 +03:00
|
|
|
borderPadding.left, borderPadding.top, 0);
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
if (child->GetContent() == mVideoControls && child->GetSize() != oldChildSize) {
|
|
|
|
RefPtr<Runnable> event = new DispatchResizeToControls(child->GetContent());
|
|
|
|
nsContentUtils::AddScriptRunner(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isBSizeShrinkWrapping) {
|
|
|
|
if (contentBoxBSize == NS_INTRINSICSIZE) {
|
|
|
|
// We didn't get a BSize from our intrinsic size/ratio, nor did we
|
|
|
|
// get one from our controls. Just use BSize of 0.
|
|
|
|
contentBoxBSize = 0;
|
|
|
|
}
|
|
|
|
contentBoxBSize = NS_CSS_MINMAX(contentBoxBSize,
|
|
|
|
aReflowInput.ComputedMinBSize(),
|
|
|
|
aReflowInput.ComputedMaxBSize());
|
|
|
|
borderBoxBSize = contentBoxBSize +
|
|
|
|
aReflowInput.ComputedLogicalBorderPadding().BStartEnd(myWM);
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
LogicalSize logicalDesiredSize(myWM, borderBoxISize, borderBoxBSize);
|
|
|
|
aMetrics.SetSize(myWM, logicalDesiredSize);
|
|
|
|
|
2010-10-07 08:25:46 +04:00
|
|
|
aMetrics.SetOverflowAreasToDesiredBounds();
|
2008-07-09 12:22:20 +04:00
|
|
|
|
|
|
|
FinishAndStoreOverflow(&aMetrics);
|
|
|
|
|
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
2016-09-08 20:21:52 +03:00
|
|
|
("exit nsVideoFrame::Reflow: size=%d,%d",
|
2013-12-27 21:59:52 +04:00
|
|
|
aMetrics.Width(), aMetrics.Height()));
|
2016-07-21 13:36:39 +03:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowInput, aMetrics);
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
|
2010-03-02 02:41:49 +03:00
|
|
|
class nsDisplayVideo : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 14:01:13 +04:00
|
|
|
nsDisplayVideo(nsDisplayListBuilder* aBuilder, nsVideoFrame* aFrame)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame)
|
2010-03-02 02:41:49 +03:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDisplayVideo);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayVideo() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayVideo);
|
|
|
|
}
|
2008-07-09 12:22:20 +04:00
|
|
|
#endif
|
2016-05-11 20:54:52 +03:00
|
|
|
|
2010-07-16 01:07:49 +04:00
|
|
|
NS_DISPLAY_DECL_NAME("Video", TYPE_VIDEO)
|
2010-03-02 02:41:49 +03:00
|
|
|
|
2011-01-03 04:48:09 +03:00
|
|
|
// It would be great if we could override GetOpaqueRegion to return nonempty here,
|
2010-03-02 02:41:49 +03:00
|
|
|
// but it's probably not safe to do so in general. Video frames are
|
|
|
|
// updated asynchronously from decoder threads, and it's possible that
|
2011-01-03 04:48:09 +03:00
|
|
|
// we might have an opaque video frame when GetOpaqueRegion is called, but
|
2010-03-02 02:41:49 +03:00
|
|
|
// when we come to paint, the video frame is transparent or has gone
|
|
|
|
// away completely (e.g. because of a decoder error). The problem would
|
|
|
|
// be especially acute if we have off-main-thread rendering.
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder, bool* aSnap) override
|
2010-03-02 02:41:49 +03:00
|
|
|
{
|
2012-11-13 23:56:47 +04:00
|
|
|
*aSnap = true;
|
2013-04-19 16:02:13 +04:00
|
|
|
nsIFrame* f = Frame();
|
2014-09-12 01:29:59 +04:00
|
|
|
return f->GetContentRectRelativeToSelf() + ToReferenceFrame();
|
2010-03-02 02:41:49 +03:00
|
|
|
}
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2010-03-02 02:41:49 +03:00
|
|
|
virtual already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
2011-06-22 16:11:27 +04:00
|
|
|
LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
const ContainerLayerParameters& aContainerParameters) override
|
2010-03-02 02:41:49 +03:00
|
|
|
{
|
2012-09-17 02:25:33 +04:00
|
|
|
return static_cast<nsVideoFrame*>(mFrame)->BuildLayer(aBuilder, aManager, this, aContainerParameters);
|
2010-03-02 02:41:49 +03:00
|
|
|
}
|
2010-07-16 01:08:05 +04:00
|
|
|
|
|
|
|
virtual LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
2012-05-03 18:05:55 +04:00
|
|
|
LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
const ContainerLayerParameters& aParameters) override
|
2010-07-16 01:08:05 +04:00
|
|
|
{
|
2012-07-06 17:23:09 +04:00
|
|
|
if (aManager->IsCompositingCheap()) {
|
|
|
|
// Since ImageLayers don't require additional memory of the
|
|
|
|
// video frames we have to have anyway, we can't save much by
|
|
|
|
// making layers inactive. Also, for many accelerated layer
|
|
|
|
// managers calling imageContainer->GetCurrentAsSurface can be
|
|
|
|
// very expensive. So just always be active when compositing is
|
|
|
|
// cheap (i.e. hardware accelerated).
|
2010-08-02 07:06:58 +04:00
|
|
|
return LAYER_ACTIVE;
|
|
|
|
}
|
2013-03-19 16:23:54 +04:00
|
|
|
HTMLMediaElement* elem =
|
|
|
|
static_cast<HTMLMediaElement*>(mFrame->GetContent());
|
2012-11-30 02:11:06 +04:00
|
|
|
return elem->IsPotentiallyPlaying() ? LAYER_ACTIVE_FORCE : LAYER_INACTIVE;
|
2010-07-16 01:08:05 +04:00
|
|
|
}
|
2010-03-02 02:41:49 +03:00
|
|
|
};
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
void
|
2008-07-09 12:22:20 +04:00
|
|
|
nsVideoFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
if (!IsVisibleForPainting(aBuilder))
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2008-07-09 12:22:20 +04:00
|
|
|
|
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP("nsVideoFrame");
|
|
|
|
|
2013-02-14 15:08:08 +04:00
|
|
|
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2014-11-15 03:45:23 +03:00
|
|
|
const bool shouldDisplayPoster = ShouldDisplayPoster();
|
|
|
|
|
|
|
|
// NOTE: If we're displaying a poster image (instead of video data), we can
|
|
|
|
// trust the nsImageFrame to constrain its drawing to its content rect
|
|
|
|
// (which happens to be the same as our content rect).
|
|
|
|
uint32_t clipFlags;
|
|
|
|
if (shouldDisplayPoster ||
|
|
|
|
!nsStyleUtil::ObjectPropsMightCauseOverflow(StylePosition())) {
|
|
|
|
clipFlags =
|
|
|
|
DisplayListClipState::ASSUME_DRAWING_RESTRICTED_TO_CONTENT_RECT;
|
|
|
|
} else {
|
|
|
|
clipFlags = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-04 13:56:02 +04:00
|
|
|
DisplayListClipState::AutoClipContainingBlockDescendantsToContentBox
|
2014-11-15 03:45:23 +03:00
|
|
|
clip(aBuilder, this, clipFlags);
|
2010-09-09 19:21:47 +04:00
|
|
|
|
2014-11-15 03:45:23 +03:00
|
|
|
if (HasVideoElement() && !shouldDisplayPoster) {
|
2013-03-04 13:56:02 +04:00
|
|
|
aLists.Content()->AppendNewToTop(
|
2010-08-13 14:01:13 +04:00
|
|
|
new (aBuilder) nsDisplayVideo(aBuilder, this));
|
2008-12-17 03:27:46 +03:00
|
|
|
}
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2013-02-27 01:06:51 +04:00
|
|
|
// Add child frames to display list. We expect various children,
|
|
|
|
// but only want to draw mPosterImage conditionally. Others we
|
|
|
|
// always add to the display list.
|
2015-06-29 23:02:21 +03:00
|
|
|
for (nsIFrame* child : mFrames) {
|
2014-11-15 03:45:23 +03:00
|
|
|
if (child->GetContent() != mPosterImage || shouldDisplayPoster) {
|
2013-02-14 15:08:08 +04:00
|
|
|
child->BuildDisplayListForStackingContext(aBuilder,
|
|
|
|
aDirtyRect - child->GetOffsetTo(this),
|
2013-03-04 13:56:02 +04:00
|
|
|
aLists.Content());
|
2017-04-30 18:30:08 +03:00
|
|
|
} else if (child->IsBoxFrame()) {
|
2013-02-14 15:08:08 +04:00
|
|
|
child->BuildDisplayListForStackingContext(aBuilder,
|
|
|
|
aDirtyRect - child->GetOffsetTo(this),
|
2013-03-04 13:56:02 +04:00
|
|
|
aLists.Content());
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-29 01:53:44 +04:00
|
|
|
a11y::AccType
|
|
|
|
nsVideoFrame::AccessibleType()
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2012-12-18 05:25:52 +04:00
|
|
|
return a11y::eHTMLMediaType;
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2008-07-09 12:22:20 +04:00
|
|
|
nsVideoFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("HTMLVideo"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-24 18:34:44 +04:00
|
|
|
LogicalSize
|
2017-06-09 22:14:53 +03:00
|
|
|
nsVideoFrame::ComputeSize(gfxContext *aRenderingContext,
|
2014-08-24 18:34:44 +04:00
|
|
|
WritingMode aWM,
|
|
|
|
const LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const LogicalSize& aMargin,
|
|
|
|
const LogicalSize& aBorder,
|
|
|
|
const LogicalSize& aPadding,
|
2014-11-11 14:02:41 +03:00
|
|
|
ComputeSizeFlags aFlags)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2016-10-12 08:41:50 +03:00
|
|
|
// When in no video scenario, it should fall back to inherited method.
|
|
|
|
// We keep old codepath here since Android still uses XUL media controls.
|
|
|
|
// This will go away in bug 1310907.
|
|
|
|
#ifndef ANDROID
|
|
|
|
if (!HasVideoElement()) {
|
|
|
|
return nsContainerFrame::ComputeSize(aRenderingContext,
|
|
|
|
aWM,
|
|
|
|
aCBSize,
|
|
|
|
aAvailableISize,
|
|
|
|
aMargin,
|
|
|
|
aBorder,
|
|
|
|
aPadding,
|
|
|
|
aFlags);
|
|
|
|
}
|
|
|
|
#endif // ANDROID
|
|
|
|
|
2010-01-09 03:37:30 +03:00
|
|
|
nsSize size = GetVideoIntrinsicSize(aRenderingContext);
|
2008-07-09 12:22:20 +04:00
|
|
|
|
|
|
|
IntrinsicSize intrinsicSize;
|
|
|
|
intrinsicSize.width.SetCoordValue(size.width);
|
|
|
|
intrinsicSize.height.SetCoordValue(size.height);
|
|
|
|
|
2013-06-26 02:00:04 +04:00
|
|
|
// Only video elements have an intrinsic ratio.
|
|
|
|
nsSize intrinsicRatio = HasVideoElement() ? size : nsSize(0, 0);
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2016-11-05 04:57:06 +03:00
|
|
|
return ComputeSizeWithIntrinsicDimensions(aRenderingContext, aWM,
|
|
|
|
intrinsicSize, intrinsicRatio,
|
2016-11-05 04:57:06 +03:00
|
|
|
aCBSize, aMargin, aBorder, aPadding,
|
|
|
|
aFlags);
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
nscoord nsVideoFrame::GetMinISize(gfxContext *aRenderingContext)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2016-10-12 08:41:50 +03:00
|
|
|
nscoord result;
|
2008-07-09 12:22:20 +04:00
|
|
|
DISPLAY_MIN_WIDTH(this, result);
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
if (HasVideoElement()) {
|
|
|
|
nsSize size = GetVideoIntrinsicSize(aRenderingContext);
|
|
|
|
result = GetWritingMode().IsVertical() ? size.height : size.width;
|
|
|
|
} else {
|
|
|
|
// We expect last and only child of audio elements to be control if
|
|
|
|
// "controls" attribute is present.
|
|
|
|
nsIFrame* kid = mFrames.LastChild();
|
|
|
|
if (kid) {
|
|
|
|
result = nsLayoutUtils::IntrinsicForContainer(aRenderingContext,
|
|
|
|
kid,
|
|
|
|
nsLayoutUtils::MIN_ISIZE);
|
|
|
|
} else {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
nscoord nsVideoFrame::GetPrefISize(gfxContext *aRenderingContext)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2016-10-12 08:41:50 +03:00
|
|
|
nscoord result;
|
2008-07-09 12:22:20 +04:00
|
|
|
DISPLAY_PREF_WIDTH(this, result);
|
2016-10-12 08:41:50 +03:00
|
|
|
|
|
|
|
if (HasVideoElement()) {
|
|
|
|
nsSize size = GetVideoIntrinsicSize(aRenderingContext);
|
|
|
|
result = GetWritingMode().IsVertical() ? size.height : size.width;
|
|
|
|
} else {
|
|
|
|
// We expect last and only child of audio elements to be control if
|
|
|
|
// "controls" attribute is present.
|
|
|
|
nsIFrame* kid = mFrames.LastChild();
|
|
|
|
if (kid) {
|
|
|
|
result = nsLayoutUtils::IntrinsicForContainer(aRenderingContext,
|
|
|
|
kid,
|
|
|
|
nsLayoutUtils::PREF_ISIZE);
|
|
|
|
} else {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSize nsVideoFrame::GetIntrinsicRatio()
|
|
|
|
{
|
2013-06-26 02:00:04 +04:00
|
|
|
if (!HasVideoElement()) {
|
|
|
|
// Audio elements have no intrinsic ratio.
|
|
|
|
return nsSize(0, 0);
|
|
|
|
}
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
return GetVideoIntrinsicSize(nullptr);
|
2008-07-09 12:22:20 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsVideoFrame::ShouldDisplayPoster()
|
2009-06-26 11:25:17 +04:00
|
|
|
{
|
|
|
|
if (!HasVideoElement())
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2009-06-26 11:25:17 +04:00
|
|
|
|
2013-03-19 16:27:35 +04:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2009-06-26 11:25:17 +04:00
|
|
|
if (element->GetPlayedOrSeeked() && HasVideoData())
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2009-06-26 11:25:17 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIImageLoadingContent> imgContent = do_QueryInterface(mPosterImage);
|
2011-10-17 18:59:28 +04:00
|
|
|
NS_ENSURE_TRUE(imgContent, false);
|
2009-11-05 16:56:52 +03:00
|
|
|
|
2009-06-26 11:25:17 +04:00
|
|
|
nsCOMPtr<imgIRequest> request;
|
|
|
|
nsresult res = imgContent->GetRequest(nsIImageLoadingContent::CURRENT_REQUEST,
|
|
|
|
getter_AddRefs(request));
|
|
|
|
if (NS_FAILED(res) || !request) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t status = 0;
|
2009-06-26 11:25:17 +04:00
|
|
|
res = request->GetImageStatus(&status);
|
|
|
|
if (NS_FAILED(res) || (status & imgIRequest::STATUS_ERROR))
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2009-11-05 16:56:52 +03:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
|
|
|
|
2010-01-09 03:37:30 +03:00
|
|
|
nsSize
|
2017-06-09 22:14:53 +03:00
|
|
|
nsVideoFrame::GetVideoIntrinsicSize(gfxContext *aRenderingContext)
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
|
|
|
// Defaulting size to 300x150 if no size given.
|
2010-06-16 01:53:44 +04:00
|
|
|
nsIntSize size(300, 150);
|
2013-06-26 02:00:04 +04:00
|
|
|
|
2016-10-12 08:41:50 +03:00
|
|
|
// All media controls have been converted to HTML except Android. Hence
|
|
|
|
// we keep this codepath for Android until removal in bug 1310907.
|
|
|
|
#ifdef ANDROID
|
2010-06-16 01:53:44 +04:00
|
|
|
if (!HasVideoElement()) {
|
2013-06-26 02:00:04 +04:00
|
|
|
if (!mFrames.FirstChild()) {
|
2008-12-17 03:27:46 +03:00
|
|
|
return nsSize(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask the controls frame what its preferred height is
|
|
|
|
nsBoxLayoutState boxState(PresContext(), aRenderingContext, 0);
|
2016-04-21 07:28:31 +03:00
|
|
|
nscoord prefHeight = mFrames.LastChild()->GetXULPrefSize(boxState).height;
|
2008-12-17 03:27:46 +03:00
|
|
|
return nsSize(nsPresContext::CSSPixelsToAppUnits(size.width), prefHeight);
|
|
|
|
}
|
2016-10-12 08:41:50 +03:00
|
|
|
#endif // ANDROID
|
2008-12-17 03:27:46 +03:00
|
|
|
|
2013-03-19 16:27:35 +04:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2012-05-11 12:32:15 +04:00
|
|
|
if (NS_FAILED(element->GetVideoSize(&size)) && ShouldDisplayPoster()) {
|
|
|
|
// Use the poster image frame's size.
|
|
|
|
nsIFrame *child = mPosterImage->GetPrimaryFrame();
|
|
|
|
nsImageFrame* imageFrame = do_QueryFrame(child);
|
|
|
|
nsSize imgsize;
|
|
|
|
if (NS_SUCCEEDED(imageFrame->GetIntrinsicImageSize(imgsize))) {
|
|
|
|
return imgsize;
|
|
|
|
}
|
|
|
|
}
|
2008-07-09 12:22:20 +04:00
|
|
|
|
2009-11-05 16:56:52 +03:00
|
|
|
return nsSize(nsPresContext::CSSPixelsToAppUnits(size.width),
|
2008-07-09 12:22:20 +04:00
|
|
|
nsPresContext::CSSPixelsToAppUnits(size.height));
|
|
|
|
}
|
2008-12-17 03:27:46 +03:00
|
|
|
|
2013-12-04 05:06:16 +04:00
|
|
|
void
|
2011-09-29 10:19:26 +04:00
|
|
|
nsVideoFrame::UpdatePosterSource(bool aNotify)
|
2009-06-26 11:25:17 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(HasVideoElement(), "Only call this on <video> elements.");
|
2013-03-19 16:27:35 +04:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2009-06-26 11:25:17 +04:00
|
|
|
|
2016-07-10 10:06:00 +03:00
|
|
|
if (element->HasAttr(kNameSpaceID_None, nsGkAtoms::poster) &&
|
|
|
|
!element->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::poster,
|
|
|
|
nsGkAtoms::_empty,
|
|
|
|
eIgnoreCase)) {
|
2013-12-04 05:06:16 +04:00
|
|
|
nsAutoString posterStr;
|
|
|
|
element->GetPoster(posterStr);
|
|
|
|
mPosterImage->SetAttr(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::src,
|
|
|
|
posterStr,
|
|
|
|
aNotify);
|
|
|
|
} else {
|
2016-07-10 10:06:00 +03:00
|
|
|
mPosterImage->UnsetAttr(kNameSpaceID_None, nsGkAtoms::src, aNotify);
|
2013-12-04 05:06:16 +04:00
|
|
|
}
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
nsVideoFrame::AttributeChanged(int32_t aNameSpaceID,
|
2009-06-26 11:25:17 +04:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aModType)
|
2009-06-26 11:25:17 +04:00
|
|
|
{
|
2009-07-07 06:02:06 +04:00
|
|
|
if (aAttribute == nsGkAtoms::poster && HasVideoElement()) {
|
2013-12-04 05:06:16 +04:00
|
|
|
UpdatePosterSource(true);
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
2016-04-18 09:26:44 +03:00
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID,
|
2009-06-26 11:25:17 +04:00
|
|
|
aAttribute,
|
|
|
|
aModType);
|
|
|
|
}
|
|
|
|
|
2016-03-26 00:49:43 +03:00
|
|
|
void
|
2016-09-12 08:19:07 +03:00
|
|
|
nsVideoFrame::OnVisibilityChange(Visibility aNewVisibility,
|
2017-02-13 20:07:40 +03:00
|
|
|
const Maybe<OnNonvisible>& aNonvisibleAction)
|
2016-03-26 00:49:43 +03:00
|
|
|
{
|
2016-06-29 12:36:24 +03:00
|
|
|
if (HasVideoElement()) {
|
|
|
|
nsCOMPtr<nsIDOMHTMLMediaElement> mediaDomElement = do_QueryInterface(mContent);
|
|
|
|
mediaDomElement->OnVisibilityChange(aNewVisibility);
|
2016-06-29 12:36:24 +03:00
|
|
|
}
|
2016-03-26 00:49:43 +03:00
|
|
|
|
2016-06-29 12:36:24 +03:00
|
|
|
nsCOMPtr<nsIImageLoadingContent> imageLoader = do_QueryInterface(mPosterImage);
|
|
|
|
if (imageLoader) {
|
|
|
|
imageLoader->OnVisibilityChange(aNewVisibility,
|
|
|
|
aNonvisibleAction);
|
|
|
|
}
|
2016-07-27 01:43:58 +03:00
|
|
|
|
2016-09-12 08:19:07 +03:00
|
|
|
nsContainerFrame::OnVisibilityChange(aNewVisibility, aNonvisibleAction);
|
2016-03-26 00:49:43 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsVideoFrame::HasVideoElement() {
|
2014-07-13 06:20:42 +04:00
|
|
|
nsCOMPtr<nsIDOMHTMLMediaElement> mediaDomElement = do_QueryInterface(mContent);
|
|
|
|
return mediaDomElement->IsVideo();
|
2009-06-26 11:25:17 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsVideoFrame::HasVideoData()
|
2008-12-17 03:27:46 +03:00
|
|
|
{
|
2009-06-26 11:25:17 +04:00
|
|
|
if (!HasVideoElement())
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2013-03-19 16:27:35 +04:00
|
|
|
HTMLVideoElement* element = static_cast<HTMLVideoElement*>(GetContent());
|
2012-05-11 12:32:15 +04:00
|
|
|
nsIntSize size(0, 0);
|
|
|
|
element->GetVideoSize(&size);
|
2009-06-26 11:25:17 +04:00
|
|
|
return size != nsIntSize(0,0);
|
2008-12-17 03:27:46 +03:00
|
|
|
}
|
2017-03-28 11:48:40 +03:00
|
|
|
|
|
|
|
void nsVideoFrame::UpdateTextTrack()
|
|
|
|
{
|
|
|
|
HTMLMediaElement* element = static_cast<HTMLMediaElement*>(GetContent());
|
|
|
|
if (element) {
|
|
|
|
element->NotifyCueDisplayStatesChanged();
|
|
|
|
}
|
|
|
|
}
|