mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
929 lines
29 KiB
C++
929 lines
29 KiB
C++
/* 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 "MediaEngineWebRTC.h"
|
|
#include "Layers.h"
|
|
#include "ImageTypes.h"
|
|
#include "ImageContainer.h"
|
|
#include "mozilla/layers/GrallocTextureClient.h"
|
|
#include "nsMemory.h"
|
|
#include "mtransport/runnable_utils.h"
|
|
#include "MediaTrackConstraints.h"
|
|
|
|
#ifdef MOZ_B2G_CAMERA
|
|
#include "GrallocImages.h"
|
|
#include "libyuv.h"
|
|
#include "mozilla/Hal.h"
|
|
#include "ScreenOrientation.h"
|
|
using namespace mozilla::dom;
|
|
#endif
|
|
namespace mozilla {
|
|
|
|
using namespace mozilla::gfx;
|
|
using dom::ConstrainLongRange;
|
|
using dom::ConstrainDoubleRange;
|
|
using dom::MediaTrackConstraintSet;
|
|
|
|
#ifdef PR_LOGGING
|
|
extern PRLogModuleInfo* GetMediaManagerLog();
|
|
#define LOG(msg) PR_LOG(GetMediaManagerLog(), PR_LOG_DEBUG, msg)
|
|
#define LOGFRAME(msg) PR_LOG(GetMediaManagerLog(), 6, msg)
|
|
#else
|
|
#define LOG(msg)
|
|
#define LOGFRAME(msg)
|
|
#endif
|
|
|
|
/**
|
|
* Webrtc video source.
|
|
*/
|
|
#ifndef MOZ_B2G_CAMERA
|
|
NS_IMPL_ISUPPORTS(MediaEngineWebRTCVideoSource, nsIRunnable)
|
|
#else
|
|
NS_IMPL_QUERY_INTERFACE(MediaEngineWebRTCVideoSource, nsIRunnable)
|
|
NS_IMPL_ADDREF_INHERITED(MediaEngineWebRTCVideoSource, CameraControlListener)
|
|
NS_IMPL_RELEASE_INHERITED(MediaEngineWebRTCVideoSource, CameraControlListener)
|
|
#endif
|
|
|
|
// ViEExternalRenderer Callback.
|
|
#ifndef MOZ_B2G_CAMERA
|
|
int
|
|
MediaEngineWebRTCVideoSource::FrameSizeChange(
|
|
unsigned int w, unsigned int h, unsigned int streams)
|
|
{
|
|
mWidth = w;
|
|
mHeight = h;
|
|
LOG(("Video FrameSizeChange: %ux%u", w, h));
|
|
return 0;
|
|
}
|
|
|
|
// ViEExternalRenderer Callback. Process every incoming frame here.
|
|
int
|
|
MediaEngineWebRTCVideoSource::DeliverFrame(
|
|
unsigned char* buffer, int size, uint32_t time_stamp, int64_t render_time,
|
|
void *handle)
|
|
{
|
|
// mInSnapshotMode can only be set before the camera is turned on and
|
|
// the renderer is started, so this amounts to a 1-shot
|
|
if (mInSnapshotMode) {
|
|
// Set the condition variable to false and notify Snapshot().
|
|
MonitorAutoLock lock(mMonitor);
|
|
mInSnapshotMode = false;
|
|
lock.Notify();
|
|
return 0;
|
|
}
|
|
|
|
// Check for proper state.
|
|
if (mState != kStarted) {
|
|
LOG(("DeliverFrame: video not started"));
|
|
return 0;
|
|
}
|
|
|
|
MOZ_ASSERT(mWidth*mHeight*3/2 == size);
|
|
if (mWidth*mHeight*3/2 != size) {
|
|
return 0;
|
|
}
|
|
|
|
// Create a video frame and append it to the track.
|
|
nsRefPtr<layers::Image> image = mImageContainer->CreateImage(ImageFormat::PLANAR_YCBCR);
|
|
|
|
layers::PlanarYCbCrImage* videoImage = static_cast<layers::PlanarYCbCrImage*>(image.get());
|
|
|
|
uint8_t* frame = static_cast<uint8_t*> (buffer);
|
|
const uint8_t lumaBpp = 8;
|
|
const uint8_t chromaBpp = 4;
|
|
|
|
layers::PlanarYCbCrData data;
|
|
data.mYChannel = frame;
|
|
data.mYSize = IntSize(mWidth, mHeight);
|
|
data.mYStride = mWidth * lumaBpp/ 8;
|
|
data.mCbCrStride = mWidth * chromaBpp / 8;
|
|
data.mCbChannel = frame + mHeight * data.mYStride;
|
|
data.mCrChannel = data.mCbChannel + mHeight * data.mCbCrStride / 2;
|
|
data.mCbCrSize = IntSize(mWidth/ 2, mHeight/ 2);
|
|
data.mPicX = 0;
|
|
data.mPicY = 0;
|
|
data.mPicSize = IntSize(mWidth, mHeight);
|
|
data.mStereoMode = StereoMode::MONO;
|
|
|
|
videoImage->SetData(data);
|
|
|
|
#ifdef DEBUG
|
|
static uint32_t frame_num = 0;
|
|
LOGFRAME(("frame %d (%dx%d); timestamp %u, render_time %lu", frame_num++,
|
|
mWidth, mHeight, time_stamp, render_time));
|
|
#endif
|
|
|
|
// we don't touch anything in 'this' until here (except for snapshot,
|
|
// which has it's own lock)
|
|
MonitorAutoLock lock(mMonitor);
|
|
|
|
// implicitly releases last image
|
|
mImage = image.forget();
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
// Called if the graph thinks it's running out of buffered video; repeat
|
|
// the last frame for whatever minimum period it think it needs. Note that
|
|
// this means that no *real* frame can be inserted during this period.
|
|
void
|
|
MediaEngineWebRTCVideoSource::NotifyPull(MediaStreamGraph* aGraph,
|
|
SourceMediaStream *aSource,
|
|
TrackID aID,
|
|
StreamTime aDesiredTime,
|
|
TrackTicks &aLastEndTime)
|
|
{
|
|
VideoSegment segment;
|
|
|
|
MonitorAutoLock lock(mMonitor);
|
|
if (mState != kStarted)
|
|
return;
|
|
|
|
// Note: we're not giving up mImage here
|
|
nsRefPtr<layers::Image> image = mImage;
|
|
TrackTicks target = TimeToTicksRoundUp(USECS_PER_S, aDesiredTime);
|
|
TrackTicks delta = target - aLastEndTime;
|
|
LOGFRAME(("NotifyPull, desired = %ld, target = %ld, delta = %ld %s", (int64_t) aDesiredTime,
|
|
(int64_t) target, (int64_t) delta, image ? "" : "<null>"));
|
|
|
|
// Bug 846188 We may want to limit incoming frames to the requested frame rate
|
|
// mFps - if you want 30FPS, and the camera gives you 60FPS, this could
|
|
// cause issues.
|
|
// We may want to signal if the actual frame rate is below mMinFPS -
|
|
// cameras often don't return the requested frame rate especially in low
|
|
// light; we should consider surfacing this so that we can switch to a
|
|
// lower resolution (which may up the frame rate)
|
|
|
|
// Don't append if we've already provided a frame that supposedly goes past the current aDesiredTime
|
|
// Doing so means a negative delta and thus messes up handling of the graph
|
|
if (delta > 0) {
|
|
// nullptr images are allowed
|
|
IntSize size(image ? mWidth : 0, image ? mHeight : 0);
|
|
segment.AppendFrame(image.forget(), delta, size);
|
|
// This can fail if either a) we haven't added the track yet, or b)
|
|
// we've removed or finished the track.
|
|
if (aSource->AppendToTrack(aID, &(segment))) {
|
|
aLastEndTime = target;
|
|
}
|
|
}
|
|
}
|
|
|
|
static bool IsWithin(int32_t n, const ConstrainLongRange& aRange) {
|
|
return aRange.mMin <= n && n <= aRange.mMax;
|
|
}
|
|
|
|
static bool IsWithin(double n, const ConstrainDoubleRange& aRange) {
|
|
return aRange.mMin <= n && n <= aRange.mMax;
|
|
}
|
|
|
|
static int32_t Clamp(int32_t n, const ConstrainLongRange& aRange) {
|
|
return std::max(aRange.mMin, std::min(n, aRange.mMax));
|
|
}
|
|
|
|
static bool
|
|
AreIntersecting(const ConstrainLongRange& aA, const ConstrainLongRange& aB) {
|
|
return aA.mMax >= aB.mMin && aA.mMin <= aB.mMax;
|
|
}
|
|
|
|
static bool
|
|
Intersect(ConstrainLongRange& aA, const ConstrainLongRange& aB) {
|
|
MOZ_ASSERT(AreIntersecting(aA, aB));
|
|
aA.mMin = std::max(aA.mMin, aB.mMin);
|
|
aA.mMax = std::min(aA.mMax, aB.mMax);
|
|
return true;
|
|
}
|
|
|
|
static bool SatisfyConstraintSet(const MediaTrackConstraintSet &aConstraints,
|
|
const webrtc::CaptureCapability& aCandidate) {
|
|
if (!IsWithin(aCandidate.width, aConstraints.mWidth) ||
|
|
!IsWithin(aCandidate.height, aConstraints.mHeight)) {
|
|
return false;
|
|
}
|
|
if (!IsWithin(aCandidate.maxFPS, aConstraints.mFrameRate)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::ChooseCapability(
|
|
const VideoTrackConstraintsN &aConstraints,
|
|
const MediaEnginePrefs &aPrefs)
|
|
{
|
|
#ifdef MOZ_B2G_CAMERA
|
|
return GuessCapability(aConstraints, aPrefs);
|
|
#else
|
|
NS_ConvertUTF16toUTF8 uniqueId(mUniqueId);
|
|
int num = mViECapture->NumberOfCapabilities(uniqueId.get(), KMaxUniqueIdLength);
|
|
if (num <= 0) {
|
|
// Mac doesn't support capabilities.
|
|
return GuessCapability(aConstraints, aPrefs);
|
|
}
|
|
|
|
// The rest is the full algorithm for cameras that can list their capabilities.
|
|
|
|
LOG(("ChooseCapability: prefs: %dx%d @%d-%dfps",
|
|
aPrefs.mWidth, aPrefs.mHeight, aPrefs.mFPS, aPrefs.mMinFPS));
|
|
|
|
typedef nsTArray<uint8_t> SourceSet;
|
|
|
|
SourceSet candidateSet;
|
|
for (int i = 0; i < num; i++) {
|
|
candidateSet.AppendElement(i);
|
|
}
|
|
|
|
// Pick among capabilities: First apply required constraints.
|
|
|
|
for (uint32_t i = 0; i < candidateSet.Length();) {
|
|
webrtc::CaptureCapability cap;
|
|
mViECapture->GetCaptureCapability(uniqueId.get(), KMaxUniqueIdLength,
|
|
candidateSet[i], cap);
|
|
if (!SatisfyConstraintSet(aConstraints.mRequired, cap)) {
|
|
candidateSet.RemoveElementAt(i);
|
|
} else {
|
|
++i;
|
|
}
|
|
}
|
|
|
|
SourceSet tailSet;
|
|
|
|
// Then apply advanced (formerly known as optional) constraints.
|
|
|
|
if (aConstraints.mAdvanced.WasPassed()) {
|
|
auto &array = aConstraints.mAdvanced.Value();
|
|
|
|
for (uint32_t i = 0; i < array.Length(); i++) {
|
|
SourceSet rejects;
|
|
for (uint32_t j = 0; j < candidateSet.Length();) {
|
|
webrtc::CaptureCapability cap;
|
|
mViECapture->GetCaptureCapability(uniqueId.get(), KMaxUniqueIdLength,
|
|
candidateSet[j], cap);
|
|
if (!SatisfyConstraintSet(array[i], cap)) {
|
|
rejects.AppendElement(candidateSet[j]);
|
|
candidateSet.RemoveElementAt(j);
|
|
} else {
|
|
++j;
|
|
}
|
|
}
|
|
(candidateSet.Length()? tailSet : candidateSet).MoveElementsFrom(rejects);
|
|
}
|
|
}
|
|
|
|
if (!candidateSet.Length()) {
|
|
candidateSet.AppendElement(0);
|
|
}
|
|
|
|
int prefWidth = aPrefs.GetWidth();
|
|
int prefHeight = aPrefs.GetHeight();
|
|
|
|
// Default is closest to available capability but equal to or below;
|
|
// otherwise closest above. Since we handle the num=0 case above and
|
|
// take the first entry always, we can never exit uninitialized.
|
|
|
|
webrtc::CaptureCapability cap;
|
|
bool higher = true;
|
|
for (uint32_t i = 0; i < candidateSet.Length(); i++) {
|
|
mViECapture->GetCaptureCapability(NS_ConvertUTF16toUTF8(mUniqueId).get(),
|
|
KMaxUniqueIdLength, candidateSet[i], cap);
|
|
if (higher) {
|
|
if (i == 0 ||
|
|
(mCapability.width > cap.width && mCapability.height > cap.height)) {
|
|
// closer than the current choice
|
|
mCapability = cap;
|
|
// FIXME: expose expected capture delay?
|
|
}
|
|
if (cap.width <= (uint32_t) prefWidth && cap.height <= (uint32_t) prefHeight) {
|
|
higher = false;
|
|
}
|
|
} else {
|
|
if (cap.width > (uint32_t) prefWidth || cap.height > (uint32_t) prefHeight ||
|
|
cap.maxFPS < (uint32_t) aPrefs.mMinFPS) {
|
|
continue;
|
|
}
|
|
if (mCapability.width < cap.width && mCapability.height < cap.height) {
|
|
mCapability = cap;
|
|
// FIXME: expose expected capture delay?
|
|
}
|
|
}
|
|
}
|
|
LOG(("chose cap %dx%d @%dfps",
|
|
mCapability.width, mCapability.height, mCapability.maxFPS));
|
|
#endif
|
|
}
|
|
|
|
// A special version of the algorithm for cameras that don't list capabilities.
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::GuessCapability(
|
|
const VideoTrackConstraintsN &aConstraints,
|
|
const MediaEnginePrefs &aPrefs)
|
|
{
|
|
LOG(("GuessCapability: prefs: %dx%d @%d-%dfps",
|
|
aPrefs.mWidth, aPrefs.mHeight, aPrefs.mFPS, aPrefs.mMinFPS));
|
|
|
|
// In short: compound constraint-ranges and use pref as ideal.
|
|
|
|
ConstrainLongRange cWidth(aConstraints.mRequired.mWidth);
|
|
ConstrainLongRange cHeight(aConstraints.mRequired.mHeight);
|
|
|
|
if (aConstraints.mAdvanced.WasPassed()) {
|
|
const auto& advanced = aConstraints.mAdvanced.Value();
|
|
for (uint32_t i = 0; i < advanced.Length(); i++) {
|
|
if (AreIntersecting(cWidth, advanced[i].mWidth) &&
|
|
AreIntersecting(cHeight, advanced[i].mHeight)) {
|
|
Intersect(cWidth, advanced[i].mWidth);
|
|
Intersect(cHeight, advanced[i].mHeight);
|
|
}
|
|
}
|
|
}
|
|
// Detect Mac HD cams and give them some love in the form of a dynamic default
|
|
// since that hardware switches between 4:3 at low res and 16:9 at higher res.
|
|
//
|
|
// Logic is: if we're relying on defaults in aPrefs, then
|
|
// only use HD pref when non-HD pref is too small and HD pref isn't too big.
|
|
|
|
bool macHD = ((!aPrefs.mWidth || !aPrefs.mHeight) &&
|
|
mDeviceName.EqualsASCII("FaceTime HD Camera (Built-in)") &&
|
|
(aPrefs.GetWidth() < cWidth.mMin ||
|
|
aPrefs.GetHeight() < cHeight.mMin) &&
|
|
!(aPrefs.GetWidth(true) > cWidth.mMax ||
|
|
aPrefs.GetHeight(true) > cHeight.mMax));
|
|
int prefWidth = aPrefs.GetWidth(macHD);
|
|
int prefHeight = aPrefs.GetHeight(macHD);
|
|
|
|
// Clamp width and height without distorting inherent aspect too much.
|
|
|
|
if (IsWithin(prefWidth, cWidth) == IsWithin(prefHeight, cHeight)) {
|
|
// If both are within, we get the default (pref) aspect.
|
|
// If neither are within, we get the aspect of the enclosing constraint.
|
|
// Either are presumably reasonable (presuming constraints are sane).
|
|
mCapability.width = Clamp(prefWidth, cWidth);
|
|
mCapability.height = Clamp(prefHeight, cHeight);
|
|
} else {
|
|
// But if only one clips (e.g. width), the resulting skew is undesirable:
|
|
// .------------.
|
|
// | constraint |
|
|
// .----+------------+----.
|
|
// | | | |
|
|
// |pref| result | | prefAspect != resultAspect
|
|
// | | | |
|
|
// '----+------------+----'
|
|
// '------------'
|
|
// So in this case, preserve prefAspect instead:
|
|
// .------------.
|
|
// | constraint |
|
|
// .------------.
|
|
// |pref | prefAspect is unchanged
|
|
// '------------'
|
|
// | |
|
|
// '------------'
|
|
if (IsWithin(prefWidth, cWidth)) {
|
|
mCapability.height = Clamp(prefHeight, cHeight);
|
|
mCapability.width = Clamp((mCapability.height * prefWidth) /
|
|
prefHeight, cWidth);
|
|
} else {
|
|
mCapability.width = Clamp(prefWidth, cWidth);
|
|
mCapability.height = Clamp((mCapability.width * prefHeight) /
|
|
prefWidth, cHeight);
|
|
}
|
|
}
|
|
mCapability.maxFPS = MediaEngine::DEFAULT_VIDEO_FPS;
|
|
LOG(("chose cap %dx%d @%dfps",
|
|
mCapability.width, mCapability.height, mCapability.maxFPS));
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::GetName(nsAString& aName)
|
|
{
|
|
aName = mDeviceName;
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::GetUUID(nsAString& aUUID)
|
|
{
|
|
aUUID = mUniqueId;
|
|
}
|
|
|
|
nsresult
|
|
MediaEngineWebRTCVideoSource::Allocate(const VideoTrackConstraintsN &aConstraints,
|
|
const MediaEnginePrefs &aPrefs)
|
|
{
|
|
LOG((__FUNCTION__));
|
|
#ifdef MOZ_B2G_CAMERA
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
if (mState == kReleased && mInitDone) {
|
|
ChooseCapability(aConstraints, aPrefs);
|
|
NS_DispatchToMainThread(WrapRunnable(nsRefPtr<MediaEngineWebRTCVideoSource>(this),
|
|
&MediaEngineWebRTCVideoSource::AllocImpl));
|
|
mCallbackMonitor.Wait();
|
|
if (mState != kAllocated) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
}
|
|
#else
|
|
if (mState == kReleased && mInitDone) {
|
|
// Note: if shared, we don't allow a later opener to affect the resolution.
|
|
// (This may change depending on spec changes for Constraints/settings)
|
|
|
|
ChooseCapability(aConstraints, aPrefs);
|
|
|
|
if (mViECapture->AllocateCaptureDevice(NS_ConvertUTF16toUTF8(mUniqueId).get(),
|
|
KMaxUniqueIdLength, mCaptureIndex)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
mState = kAllocated;
|
|
LOG(("Video device %d allocated", mCaptureIndex));
|
|
} else if (mSources.IsEmpty()) {
|
|
LOG(("Video device %d reallocated", mCaptureIndex));
|
|
} else {
|
|
LOG(("Video device %d allocated shared", mCaptureIndex));
|
|
}
|
|
#endif
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
MediaEngineWebRTCVideoSource::Deallocate()
|
|
{
|
|
LOG((__FUNCTION__));
|
|
if (mSources.IsEmpty()) {
|
|
#ifdef MOZ_B2G_CAMERA
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
#endif
|
|
if (mState != kStopped && mState != kAllocated) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
#ifdef MOZ_B2G_CAMERA
|
|
// We do not register success callback here
|
|
|
|
NS_DispatchToMainThread(WrapRunnable(nsRefPtr<MediaEngineWebRTCVideoSource>(this),
|
|
&MediaEngineWebRTCVideoSource::DeallocImpl));
|
|
mCallbackMonitor.Wait();
|
|
if (mState != kReleased) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
#elif XP_MACOSX
|
|
// Bug 829907 - on mac, in shutdown, the mainthread stops processing
|
|
// 'native' events, and the QTKit code uses events to the main native CFRunLoop
|
|
// in order to provide thread safety. In order to avoid this locking us up,
|
|
// release the ViE capture device synchronously on MainThread (so the native
|
|
// event isn't needed).
|
|
// XXX Note if MainThread Dispatch()es NS_DISPATCH_SYNC to us we can deadlock.
|
|
// XXX It might be nice to only do this if we're in shutdown... Hard to be
|
|
// sure when that is though.
|
|
// Thread safety: a) we call this synchronously, and don't use ViECapture from
|
|
// another thread anywhere else, b) ViEInputManager::DestroyCaptureDevice() grabs
|
|
// an exclusive object lock and deletes it in a critical section, so all in all
|
|
// this should be safe threadwise.
|
|
NS_DispatchToMainThread(WrapRunnable(mViECapture,
|
|
&webrtc::ViECapture::ReleaseCaptureDevice,
|
|
mCaptureIndex),
|
|
NS_DISPATCH_SYNC);
|
|
#else
|
|
mViECapture->ReleaseCaptureDevice(mCaptureIndex);
|
|
#endif
|
|
mState = kReleased;
|
|
LOG(("Video device %d deallocated", mCaptureIndex));
|
|
} else {
|
|
LOG(("Video device %d deallocated but still in use", mCaptureIndex));
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
MediaEngineWebRTCVideoSource::Start(SourceMediaStream* aStream, TrackID aID)
|
|
{
|
|
LOG((__FUNCTION__));
|
|
#ifndef MOZ_B2G_CAMERA
|
|
int error = 0;
|
|
#endif
|
|
if (!mInitDone || !aStream) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mSources.AppendElement(aStream);
|
|
|
|
aStream->AddTrack(aID, USECS_PER_S, 0, new VideoSegment());
|
|
aStream->AdvanceKnownTracksTime(STREAM_TIME_MAX);
|
|
|
|
#ifdef MOZ_B2G_CAMERA
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
#endif
|
|
|
|
if (mState == kStarted) {
|
|
return NS_OK;
|
|
}
|
|
mImageContainer = layers::LayerManager::CreateImageContainer();
|
|
|
|
#ifdef MOZ_B2G_CAMERA
|
|
NS_DispatchToMainThread(WrapRunnable(nsRefPtr<MediaEngineWebRTCVideoSource>(this),
|
|
&MediaEngineWebRTCVideoSource::StartImpl,
|
|
mCapability));
|
|
mCallbackMonitor.Wait();
|
|
if (mState != kStarted) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
#else
|
|
mState = kStarted;
|
|
error = mViERender->AddRenderer(mCaptureIndex, webrtc::kVideoI420, (webrtc::ExternalRenderer*)this);
|
|
if (error == -1) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
error = mViERender->StartRender(mCaptureIndex);
|
|
if (error == -1) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (mViECapture->StartCapture(mCaptureIndex, mCapability) < 0) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
#endif
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
MediaEngineWebRTCVideoSource::Stop(SourceMediaStream *aSource, TrackID aID)
|
|
{
|
|
LOG((__FUNCTION__));
|
|
if (!mSources.RemoveElement(aSource)) {
|
|
// Already stopped - this is allowed
|
|
return NS_OK;
|
|
}
|
|
if (!mSources.IsEmpty()) {
|
|
return NS_OK;
|
|
}
|
|
#ifdef MOZ_B2G_CAMERA
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
#endif
|
|
if (mState != kStarted) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
{
|
|
MonitorAutoLock lock(mMonitor);
|
|
mState = kStopped;
|
|
aSource->EndTrack(aID);
|
|
// Drop any cached image so we don't start with a stale image on next
|
|
// usage
|
|
mImage = nullptr;
|
|
}
|
|
#ifdef MOZ_B2G_CAMERA
|
|
NS_DispatchToMainThread(WrapRunnable(nsRefPtr<MediaEngineWebRTCVideoSource>(this),
|
|
&MediaEngineWebRTCVideoSource::StopImpl));
|
|
#else
|
|
mViERender->StopRender(mCaptureIndex);
|
|
mViERender->RemoveRenderer(mCaptureIndex);
|
|
mViECapture->StopCapture(mCaptureIndex);
|
|
#endif
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
MediaEngineWebRTCVideoSource::Snapshot(uint32_t aDuration, nsIDOMFile** aFile)
|
|
{
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/**
|
|
* Initialization and Shutdown functions for the video source, called by the
|
|
* constructor and destructor respectively.
|
|
*/
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::Init()
|
|
{
|
|
#ifdef MOZ_B2G_CAMERA
|
|
nsAutoCString deviceName;
|
|
ICameraControl::GetCameraName(mCaptureIndex, deviceName);
|
|
CopyUTF8toUTF16(deviceName, mDeviceName);
|
|
CopyUTF8toUTF16(deviceName, mUniqueId);
|
|
#else
|
|
// fix compile warning for these being unused. (remove once used)
|
|
(void) mFps;
|
|
(void) mMinFps;
|
|
|
|
LOG((__FUNCTION__));
|
|
if (mVideoEngine == nullptr) {
|
|
return;
|
|
}
|
|
|
|
mViEBase = webrtc::ViEBase::GetInterface(mVideoEngine);
|
|
if (mViEBase == nullptr) {
|
|
return;
|
|
}
|
|
|
|
// Get interfaces for capture, render for now
|
|
mViECapture = webrtc::ViECapture::GetInterface(mVideoEngine);
|
|
mViERender = webrtc::ViERender::GetInterface(mVideoEngine);
|
|
|
|
if (mViECapture == nullptr || mViERender == nullptr) {
|
|
return;
|
|
}
|
|
|
|
const uint32_t KMaxDeviceNameLength = 128;
|
|
const uint32_t KMaxUniqueIdLength = 256;
|
|
char deviceName[KMaxDeviceNameLength];
|
|
char uniqueId[KMaxUniqueIdLength];
|
|
if (mViECapture->GetCaptureDevice(mCaptureIndex,
|
|
deviceName, KMaxDeviceNameLength,
|
|
uniqueId, KMaxUniqueIdLength)) {
|
|
return;
|
|
}
|
|
|
|
CopyUTF8toUTF16(deviceName, mDeviceName);
|
|
CopyUTF8toUTF16(uniqueId, mUniqueId);
|
|
#endif
|
|
|
|
mInitDone = true;
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::Shutdown()
|
|
{
|
|
LOG((__FUNCTION__));
|
|
if (!mInitDone) {
|
|
return;
|
|
}
|
|
#ifdef MOZ_B2G_CAMERA
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
#endif
|
|
if (mState == kStarted) {
|
|
while (!mSources.IsEmpty()) {
|
|
Stop(mSources[0], kVideoTrack); // XXX change to support multiple tracks
|
|
}
|
|
MOZ_ASSERT(mState == kStopped);
|
|
}
|
|
|
|
if (mState == kAllocated || mState == kStopped) {
|
|
Deallocate();
|
|
}
|
|
#ifndef MOZ_B2G_CAMERA
|
|
mViECapture->Release();
|
|
mViERender->Release();
|
|
mViEBase->Release();
|
|
#endif
|
|
mState = kReleased;
|
|
mInitDone = false;
|
|
}
|
|
|
|
#ifdef MOZ_B2G_CAMERA
|
|
|
|
// All these functions must be run on MainThread!
|
|
void
|
|
MediaEngineWebRTCVideoSource::AllocImpl() {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
|
|
mCameraControl = ICameraControl::Create(mCaptureIndex);
|
|
if (mCameraControl) {
|
|
mState = kAllocated;
|
|
// Add this as a listener for CameraControl events. We don't need
|
|
// to explicitly remove this--destroying the CameraControl object
|
|
// in DeallocImpl() will do that for us.
|
|
mCameraControl->AddListener(this);
|
|
}
|
|
|
|
mCallbackMonitor.Notify();
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::DeallocImpl() {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
mCameraControl = nullptr;
|
|
}
|
|
|
|
// The same algorithm from bug 840244
|
|
static int
|
|
GetRotateAmount(ScreenOrientation aScreen, int aCameraMountAngle, bool aBackCamera) {
|
|
int screenAngle = 0;
|
|
switch (aScreen) {
|
|
case eScreenOrientation_PortraitPrimary:
|
|
screenAngle = 0;
|
|
break;
|
|
case eScreenOrientation_PortraitSecondary:
|
|
screenAngle = 180;
|
|
break;
|
|
case eScreenOrientation_LandscapePrimary:
|
|
screenAngle = 90;
|
|
break;
|
|
case eScreenOrientation_LandscapeSecondary:
|
|
screenAngle = 270;
|
|
break;
|
|
default:
|
|
MOZ_ASSERT(false);
|
|
break;
|
|
}
|
|
|
|
int result;
|
|
|
|
if (aBackCamera) {
|
|
//back camera
|
|
result = (aCameraMountAngle - screenAngle + 360) % 360;
|
|
} else {
|
|
//front camera
|
|
result = (aCameraMountAngle + screenAngle) % 360;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// undefine to remove on-the-fly rotation support
|
|
// #define DYNAMIC_GUM_ROTATION
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::Notify(const hal::ScreenConfiguration& aConfiguration) {
|
|
#ifdef DYNAMIC_GUM_ROTATION
|
|
MonitorAutoLock enter(mMonitor);
|
|
mRotation = GetRotateAmount(aConfiguration.orientation(), mCameraAngle, mBackCamera);
|
|
|
|
LOG(("*** New orientation: %d (Camera %d Back %d MountAngle: %d)",
|
|
mRotation, mCaptureIndex, mBackCamera, mCameraAngle));
|
|
#endif
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::StartImpl(webrtc::CaptureCapability aCapability) {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
ICameraControl::Configuration config;
|
|
config.mMode = ICameraControl::kPictureMode;
|
|
config.mPreviewSize.width = aCapability.width;
|
|
config.mPreviewSize.height = aCapability.height;
|
|
mCameraControl->Start(&config);
|
|
mCameraControl->Set(CAMERA_PARAM_PICTURE_SIZE, config.mPreviewSize);
|
|
|
|
hal::RegisterScreenConfigurationObserver(this);
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::StopImpl() {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
hal::UnregisterScreenConfigurationObserver(this);
|
|
mCameraControl->Stop();
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::SnapshotImpl() {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
mCameraControl->TakePicture();
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::OnHardwareStateChange(HardwareState aState)
|
|
{
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
if (aState == CameraControlListener::kHardwareClosed) {
|
|
// When the first CameraControl listener is added, it gets pushed
|
|
// the current state of the camera--normally 'closed'. We only
|
|
// pay attention to that state if we've progressed out of the
|
|
// allocated state.
|
|
if (mState != kAllocated) {
|
|
mState = kReleased;
|
|
mCallbackMonitor.Notify();
|
|
}
|
|
} else {
|
|
// Can't read this except on MainThread (ugh)
|
|
NS_DispatchToMainThread(WrapRunnable(nsRefPtr<MediaEngineWebRTCVideoSource>(this),
|
|
&MediaEngineWebRTCVideoSource::GetRotation));
|
|
mState = kStarted;
|
|
mCallbackMonitor.Notify();
|
|
}
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::GetRotation()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MonitorAutoLock enter(mMonitor);
|
|
|
|
mCameraControl->Get(CAMERA_PARAM_SENSORANGLE, mCameraAngle);
|
|
MOZ_ASSERT(mCameraAngle == 0 || mCameraAngle == 90 || mCameraAngle == 180 ||
|
|
mCameraAngle == 270);
|
|
hal::ScreenConfiguration config;
|
|
hal::GetCurrentScreenConfiguration(&config);
|
|
|
|
nsCString deviceName;
|
|
ICameraControl::GetCameraName(mCaptureIndex, deviceName);
|
|
if (deviceName.EqualsASCII("back")) {
|
|
mBackCamera = true;
|
|
}
|
|
|
|
mRotation = GetRotateAmount(config.orientation(), mCameraAngle, mBackCamera);
|
|
LOG(("*** Initial orientation: %d (Camera %d Back %d MountAngle: %d)",
|
|
mRotation, mCaptureIndex, mBackCamera, mCameraAngle));
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::OnUserError(UserContext aContext, nsresult aError)
|
|
{
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
mCallbackMonitor.Notify();
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::OnTakePictureComplete(uint8_t* aData, uint32_t aLength, const nsAString& aMimeType)
|
|
{
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
mLastCapture =
|
|
static_cast<nsIDOMFile*>(new nsDOMMemoryFile(static_cast<void*>(aData),
|
|
static_cast<uint64_t>(aLength),
|
|
aMimeType));
|
|
mCallbackMonitor.Notify();
|
|
}
|
|
|
|
void
|
|
MediaEngineWebRTCVideoSource::RotateImage(layers::Image* aImage, uint32_t aWidth, uint32_t aHeight) {
|
|
layers::GrallocImage *nativeImage = static_cast<layers::GrallocImage*>(aImage);
|
|
android::sp<android::GraphicBuffer> graphicBuffer = nativeImage->GetGraphicBuffer();
|
|
void *pMem = nullptr;
|
|
uint32_t size = aWidth * aHeight * 3 / 2;
|
|
|
|
graphicBuffer->lock(android::GraphicBuffer::USAGE_SW_READ_MASK, &pMem);
|
|
|
|
uint8_t* srcPtr = static_cast<uint8_t*>(pMem);
|
|
// Create a video frame and append it to the track.
|
|
nsRefPtr<layers::Image> image = mImageContainer->CreateImage(ImageFormat::PLANAR_YCBCR);
|
|
layers::PlanarYCbCrImage* videoImage = static_cast<layers::PlanarYCbCrImage*>(image.get());
|
|
|
|
uint32_t dstWidth;
|
|
uint32_t dstHeight;
|
|
|
|
if (mRotation == 90 || mRotation == 270) {
|
|
dstWidth = aHeight;
|
|
dstHeight = aWidth;
|
|
} else {
|
|
dstWidth = aWidth;
|
|
dstHeight = aHeight;
|
|
}
|
|
|
|
uint32_t half_width = dstWidth / 2;
|
|
uint8_t* dstPtr = videoImage->AllocateAndGetNewBuffer(size);
|
|
libyuv::ConvertToI420(srcPtr, size,
|
|
dstPtr, dstWidth,
|
|
dstPtr + (dstWidth * dstHeight), half_width,
|
|
dstPtr + (dstWidth * dstHeight * 5 / 4), half_width,
|
|
0, 0,
|
|
aWidth, aHeight,
|
|
aWidth, aHeight,
|
|
static_cast<libyuv::RotationMode>(mRotation),
|
|
libyuv::FOURCC_NV21);
|
|
graphicBuffer->unlock();
|
|
|
|
const uint8_t lumaBpp = 8;
|
|
const uint8_t chromaBpp = 4;
|
|
|
|
layers::PlanarYCbCrData data;
|
|
data.mYChannel = dstPtr;
|
|
data.mYSize = IntSize(dstWidth, dstHeight);
|
|
data.mYStride = dstWidth * lumaBpp / 8;
|
|
data.mCbCrStride = dstWidth * chromaBpp / 8;
|
|
data.mCbChannel = dstPtr + dstHeight * data.mYStride;
|
|
data.mCrChannel = data.mCbChannel +( dstHeight * data.mCbCrStride / 2);
|
|
data.mCbCrSize = IntSize(dstWidth / 2, dstHeight / 2);
|
|
data.mPicX = 0;
|
|
data.mPicY = 0;
|
|
data.mPicSize = IntSize(dstWidth, dstHeight);
|
|
data.mStereoMode = StereoMode::MONO;
|
|
|
|
videoImage->SetDataNoCopy(data);
|
|
|
|
// implicitly releases last image
|
|
mImage = image.forget();
|
|
}
|
|
|
|
bool
|
|
MediaEngineWebRTCVideoSource::OnNewPreviewFrame(layers::Image* aImage, uint32_t aWidth, uint32_t aHeight) {
|
|
{
|
|
ReentrantMonitorAutoEnter sync(mCallbackMonitor);
|
|
if (mState == kStopped) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
MonitorAutoLock enter(mMonitor);
|
|
// Bug XXX we'd prefer to avoid converting if mRotation == 0, but that causes problems in UpdateImage()
|
|
RotateImage(aImage, aWidth, aHeight);
|
|
if (mRotation != 0 && mRotation != 180) {
|
|
uint32_t temp = aWidth;
|
|
aWidth = aHeight;
|
|
aHeight = temp;
|
|
}
|
|
if (mWidth != static_cast<int>(aWidth) || mHeight != static_cast<int>(aHeight)) {
|
|
mWidth = aWidth;
|
|
mHeight = aHeight;
|
|
LOG(("Video FrameSizeChange: %ux%u", mWidth, mHeight));
|
|
}
|
|
|
|
return true; // return true because we're accepting the frame
|
|
}
|
|
#endif
|
|
|
|
}
|