1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* 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 "VideoFrameContainer.h"
#include "mozilla/Logging.h"
#ifdef MOZ_WIDGET_ANDROID
# include "GLImages.h" // for SurfaceTextureImage
#endif
#include "MediaDecoderOwner.h"
#include "mozilla/AbstractThread.h"
#include "mozilla/gfx/BuildConstants.h"
#include "mozilla/gfx/gfxVars.h"
using namespace mozilla::layers;
mozilla::LazyLogModule gVideoFrameContainer("VideoFrameContainer");
namespace mozilla {
#define NS_DispatchToMainThread(...) CompileError_UseAbstractMainThreadInstead
VideoFrameContainer::VideoFrameContainer(
MediaDecoderOwner* aOwner, already_AddRefed<ImageContainer> aContainer)
: mOwner(aOwner),
mImageContainer(aContainer),
mMutex("nsVideoFrameContainer"),
mFrameID(0),
mPendingPrincipalHandle(PRINCIPAL_HANDLE_NONE),
mFrameIDForPendingPrincipalHandle(0),
mMainThread(aOwner->AbstractMainThread()),
mSupportsOnly8BitImage(kIsAndroid &&
!gfx::gfxVars::AllowGLNorm16Textures()) {
NS_ASSERTION(aOwner, "aOwner must not be null");
NS_ASSERTION(mImageContainer, "aContainer must not be null");
}
VideoFrameContainer::~VideoFrameContainer() = default;
PrincipalHandle VideoFrameContainer::GetLastPrincipalHandle() {
MutexAutoLock lock(mMutex);
return GetLastPrincipalHandleLocked();
}
PrincipalHandle VideoFrameContainer::GetLastPrincipalHandleLocked() {
return mLastPrincipalHandle;
}
void VideoFrameContainer::UpdatePrincipalHandleForFrameID(
const PrincipalHandle& aPrincipalHandle,
const ImageContainer::FrameID& aFrameID) {
MutexAutoLock lock(mMutex);
UpdatePrincipalHandleForFrameIDLocked(aPrincipalHandle, aFrameID);
}
void VideoFrameContainer::UpdatePrincipalHandleForFrameIDLocked(
const PrincipalHandle& aPrincipalHandle,
const ImageContainer::FrameID& aFrameID) {
if (mPendingPrincipalHandle == aPrincipalHandle) {
return;
}
mPendingPrincipalHandle = aPrincipalHandle;
mFrameIDForPendingPrincipalHandle = aFrameID;
}
#ifdef MOZ_WIDGET_ANDROID
static void NotifySetCurrent(Image* aImage) {
if (aImage) {
MOZ_LOG_FMT(gVideoFrameContainer, LogLevel::Debug,
"NotifySetCurrent, serial={}", aImage->GetSerial());
aImage->OnSetCurrent();
}
}
#endif
void VideoFrameContainer::SetCurrentFrame(
const gfx::IntSize& aIntrinsicSize, Image* aImage,
const TimeStamp& aTargetTime, const media::TimeUnit& aProcessingDuration,
const media::TimeUnit& aMediaTime) {
MOZ_LOG_FMT(
gVideoFrameContainer, LogLevel::Debug,
"SetCurrentFrame, processing duration={}us,pts={}",
aProcessingDuration.IsValid() ? aProcessingDuration.ToMicroseconds() : -1,
aMediaTime.ToString());
#ifdef MOZ_WIDGET_ANDROID
NotifySetCurrent(aImage);
#endif
AutoTArray<ImageContainer::NonOwningImage, 1> imageList;
if (aImage) {
imageList.AppendElement(ImageContainer::NonOwningImage(
aImage, aTargetTime, ++mFrameID, 0, aProcessingDuration, aMediaTime));
}
MutexAutoLock lock(mMutex);
SetCurrentFramesLocked(aIntrinsicSize, imageList);
}
void VideoFrameContainer::SetCurrentFrames(
const gfx::IntSize& aIntrinsicSize,
const nsTArray<ImageContainer::NonOwningImage>& aImages) {
MOZ_LOG_FMT(gVideoFrameContainer, LogLevel::Debug,
"SetCurrentFrames ({} images)", aImages.Length());
#ifdef MOZ_WIDGET_ANDROID
// When there are multiple frames, only the last one is effective
// (see bug 1299068 comment 4). Here I just count on VideoSink and VideoOutput
// to send one frame at a time and warn if not.
(void)NS_WARN_IF(aImages.Length() > 1);
for (auto& image : aImages) {
NotifySetCurrent(image.mImage);
}
#endif
MutexAutoLock lock(mMutex);
SetCurrentFramesLocked(aIntrinsicSize, aImages);
}
#ifdef DEBUG
static bool Is8BitImage(const ImageContainer::NonOwningImage& aFrame) {
return aFrame.mImage->GetColorDepth() == gfx::ColorDepth::COLOR_8;
}
#endif
void VideoFrameContainer::SetCurrentFramesLocked(
const gfx::IntSize& aIntrinsicSize,
const nsTArray<ImageContainer::NonOwningImage>& aImages) {
MOZ_LOG_FMT(gVideoFrameContainer, LogLevel::Debug,
"SetCurrentFramesLocked ({} images", aImages.Length());
mMutex.AssertCurrentThreadOwns();
MOZ_ASSERT(!SupportsOnly8BitImage() ||
std::all_of(aImages.begin(), aImages.end(), Is8BitImage),
"Images should be 8-bit");
if (auto size = Some(aIntrinsicSize); size != mIntrinsicSize) {
mIntrinsicSize = size;
mMainThread->Dispatch(NS_NewRunnableFunction(
"IntrinsicSizeChanged", [this, self = RefPtr(this), size]() {
mMainThreadState.mNewIntrinsicSize = size;
}));
}
gfx::IntSize oldFrameSize = mImageContainer->GetCurrentSize();
// When using the OMX decoder, destruction of the current image can indirectly
// block on main thread I/O. If we let this happen while holding onto
// |mImageContainer|'s lock, then when the main thread then tries to
// composite it can then block on |mImageContainer|'s lock, causing a
// deadlock. We use this hack to defer the destruction of the current image
// until it is safe.
nsTArray<ImageContainer::OwningImage> oldImages;
mImageContainer->GetCurrentImages(&oldImages);
PrincipalHandle principalHandle = PRINCIPAL_HANDLE_NONE;
if (mPendingPrincipalHandle != PRINCIPAL_HANDLE_NONE &&
(aImages.IsEmpty() ||
aImages[0].mFrameID >= mFrameIDForPendingPrincipalHandle)) {
// There are no FrameIDs prior to `mFrameIDForPendingPrincipalHandle`
// in the new set of images.
// This means that the old principal handle has been flushed out and we
// can notify our video element about this change.
principalHandle = mPendingPrincipalHandle;
mLastPrincipalHandle = mPendingPrincipalHandle;
mPendingPrincipalHandle = PRINCIPAL_HANDLE_NONE;
mFrameIDForPendingPrincipalHandle = 0;
}
if (aImages.IsEmpty()) {
mImageContainer->ClearImagesInHost(layers::ClearImagesType::All);
} else {
mImageContainer->SetCurrentImages(aImages);
}
gfx::IntSize newFrameSize = mImageContainer->GetCurrentSize();
bool imageSizeChanged = (oldFrameSize != newFrameSize);
if (principalHandle != PRINCIPAL_HANDLE_NONE || imageSizeChanged) {
RefPtr<VideoFrameContainer> self = this;
mMainThread->Dispatch(NS_NewRunnableFunction(
"PrincipalHandleOrImageSizeChanged",
[this, self, principalHandle, imageSizeChanged]() {
mMainThreadState.mImageSizeChanged = imageSizeChanged;
if (mOwner && principalHandle != PRINCIPAL_HANDLE_NONE) {
mOwner->PrincipalHandleChangedForVideoFrameContainer(
this, principalHandle);
}
}));
}
}
void VideoFrameContainer::ClearFutureFrames(TimeStamp aNow) {
MutexAutoLock lock(mMutex);
MOZ_LOG_FMT(gVideoFrameContainer, LogLevel::Debug, "ClearFutureFrame");
// See comment in SetCurrentFrame for the reasoning behind
// using a kungFuDeathGrip here.
AutoTArray<ImageContainer::OwningImage, 10> kungFuDeathGrip;
mImageContainer->GetCurrentImages(&kungFuDeathGrip);
if (!kungFuDeathGrip.IsEmpty()) {
AutoTArray<ImageContainer::NonOwningImage, 1> currentFrame;
const ImageContainer::OwningImage* img = &kungFuDeathGrip[0];
// Find the current image in case there are several.
for (const auto& image : kungFuDeathGrip) {
if (image.mTimeStamp > aNow) {
break;
}
img = ℑ
}
currentFrame.AppendElement(ImageContainer::NonOwningImage(
img->mImage, img->mTimeStamp, img->mFrameID, img->mProducerID,
img->mProcessingDuration, img->mMediaTime, img->mWebrtcCaptureTime,
img->mWebrtcReceiveTime, img->mRtpTimestamp));
mImageContainer->SetCurrentImages(currentFrame);
}
}
void VideoFrameContainer::ClearCachedResources() {
MutexAutoLock lock(mMutex);
mImageContainer->ClearCachedResources();
}
void VideoFrameContainer::ClearImagesInHost(layers::ClearImagesType aType) {
MutexAutoLock lock(mMutex);
mImageContainer->ClearImagesInHost(aType);
}
ImageContainer* VideoFrameContainer::GetImageContainer() {
// Note - you'll need the lock to manipulate this. The pointer is not
// modified from multiple threads, just the data pointed to by it.
return mImageContainer;
}
double VideoFrameContainer::GetFrameDelay() {
MutexAutoLock lock(mMutex);
return mImageContainer->GetPaintDelay().ToSeconds();
}
void VideoFrameContainer::InvalidateWithFlags(uint32_t aFlags) {
NS_ASSERTION(NS_IsMainThread(), "Must call on main thread");
if (!mOwner) {
// Owner has been destroyed
return;
}
MediaDecoderOwner::ImageSizeChanged imageSizeChanged{
mMainThreadState.mImageSizeChanged};
mMainThreadState.mImageSizeChanged = false;
auto newIntrinsicSize = std::move(mMainThreadState.mNewIntrinsicSize);
MediaDecoderOwner::ForceInvalidate forceInvalidate{
(aFlags & INVALIDATE_FORCE) != 0};
mOwner->Invalidate(imageSizeChanged, newIntrinsicSize, forceInvalidate);
}
} // namespace mozilla
#undef NS_DispatchToMainThread
|