2012-07-12 11:53:08 +00: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/. */
|
|
|
|
|
|
|
|
#include "MediaEngineWebRTC.h"
|
2012-08-19 19:33:25 +00:00
|
|
|
#include "Layers.h"
|
2012-08-21 04:06:46 +00:00
|
|
|
#include "ImageTypes.h"
|
|
|
|
#include "ImageContainer.h"
|
2012-07-12 11:53:08 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2012-10-15 20:41:46 +00:00
|
|
|
#ifdef PR_LOGGING
|
2012-10-29 23:32:10 +00:00
|
|
|
extern PRLogModuleInfo* GetMediaManagerLog();
|
|
|
|
#define LOG(msg) PR_LOG(GetMediaManagerLog(), PR_LOG_DEBUG, msg)
|
2012-10-15 20:41:46 +00:00
|
|
|
#else
|
|
|
|
#define LOG(msg)
|
|
|
|
#endif
|
|
|
|
|
2012-07-12 11:53:08 +00:00
|
|
|
/**
|
|
|
|
* Webrtc video source.
|
|
|
|
*/
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(MediaEngineWebRTCVideoSource, nsIRunnable)
|
|
|
|
|
|
|
|
// ViEExternalRenderer Callback.
|
|
|
|
int
|
|
|
|
MediaEngineWebRTCVideoSource::FrameSizeChange(
|
|
|
|
unsigned int w, unsigned int h, unsigned int streams)
|
|
|
|
{
|
|
|
|
mWidth = w;
|
|
|
|
mHeight = 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)
|
|
|
|
{
|
|
|
|
if (mInSnapshotMode) {
|
|
|
|
// Set the condition variable to false and notify Snapshot().
|
|
|
|
PR_Lock(mSnapshotLock);
|
|
|
|
mInSnapshotMode = false;
|
|
|
|
PR_NotifyCondVar(mSnapshotCondVar);
|
|
|
|
PR_Unlock(mSnapshotLock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for proper state.
|
|
|
|
if (mState != kStarted) {
|
2012-10-15 20:41:46 +00:00
|
|
|
LOG(("DeliverFrame: video not started"));
|
2012-07-12 11:53:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a video frame and append it to the track.
|
2012-08-20 02:39:10 +00:00
|
|
|
ImageFormat format = PLANAR_YCBCR;
|
2012-10-17 09:46:40 +00:00
|
|
|
|
2012-07-12 11:53:08 +00:00
|
|
|
nsRefPtr<layers::Image> image = mImageContainer->CreateImage(&format, 1);
|
|
|
|
|
|
|
|
layers::PlanarYCbCrImage* videoImage = static_cast<layers::PlanarYCbCrImage*>(image.get());
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t* frame = static_cast<uint8_t*> (buffer);
|
|
|
|
const uint8_t lumaBpp = 8;
|
|
|
|
const uint8_t chromaBpp = 4;
|
2012-07-12 11:53:08 +00:00
|
|
|
|
|
|
|
layers::PlanarYCbCrImage::Data data;
|
|
|
|
data.mYChannel = frame;
|
|
|
|
data.mYSize = gfxIntSize(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 = gfxIntSize(mWidth/ 2, mHeight/ 2);
|
|
|
|
data.mPicX = 0;
|
|
|
|
data.mPicY = 0;
|
|
|
|
data.mPicSize = gfxIntSize(mWidth, mHeight);
|
2012-08-19 19:33:25 +00:00
|
|
|
data.mStereoMode = STEREO_MODE_MONO;
|
2012-07-12 11:53:08 +00:00
|
|
|
|
|
|
|
videoImage->SetData(data);
|
|
|
|
|
2012-10-17 09:46:40 +00:00
|
|
|
#ifdef LOG_ALL_FRAMES
|
|
|
|
static uint32_t frame_num = 0;
|
|
|
|
LOG(("frame %d; timestamp %u, render_time %lu", frame_num++, time_stamp, render_time));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// we don't touch anything in 'this' until here (except for snapshot,
|
|
|
|
// which has it's own lock)
|
|
|
|
ReentrantMonitorAutoEnter enter(mMonitor);
|
|
|
|
|
|
|
|
// implicitly releases last image
|
|
|
|
mImage = image.forget();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
StreamTime aDesiredTime)
|
|
|
|
{
|
2012-07-12 11:53:08 +00:00
|
|
|
VideoSegment segment;
|
2012-10-17 09:46:40 +00:00
|
|
|
|
|
|
|
ReentrantMonitorAutoEnter enter(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 - mLastEndTime;
|
|
|
|
#ifdef LOG_ALL_FRAMES
|
2012-12-29 00:03:48 +00:00
|
|
|
LOG(("NotifyPull, target = %lu, delta = %lu", (uint64_t) target, (uint64_t) delta));
|
2012-10-17 09:46:40 +00:00
|
|
|
#endif
|
2012-12-29 00:03:48 +00:00
|
|
|
// NULL images are allowed
|
|
|
|
segment.AppendFrame(image ? image.forget() : nullptr, delta, gfxIntSize(mWidth, mHeight));
|
|
|
|
mSource->AppendToTrack(mTrackID, &(segment));
|
|
|
|
mLastEndTime = target;
|
2012-07-12 11:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-04 16:09:35 +00:00
|
|
|
MediaEngineWebRTCVideoSource::ChooseCapability(uint32_t aWidth, uint32_t aHeight, uint32_t aMinFPS)
|
2012-07-12 11:53:08 +00:00
|
|
|
{
|
2012-10-04 16:09:35 +00:00
|
|
|
int num = mViECapture->NumberOfCapabilities(mUniqueId, KMaxUniqueIdLength);
|
|
|
|
|
|
|
|
NS_WARN_IF_FALSE(!mCapabilityChosen,"Shouldn't select capability of a device twice");
|
2012-07-12 11:53:08 +00:00
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
if (num <= 0) {
|
|
|
|
// Set to default values
|
|
|
|
mCapability.width = mOpts.mWidth = aWidth;
|
|
|
|
mCapability.height = mOpts.mHeight = aHeight;
|
|
|
|
mCapability.maxFPS = mOpts.mMaxFPS = DEFAULT_VIDEO_FPS;
|
|
|
|
mOpts.codecType = kVideoCodecI420;
|
2012-07-12 11:53:08 +00:00
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
// Mac doesn't support capabilities.
|
|
|
|
mCapabilityChosen = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 (int i = 0; i < num; i++) {
|
|
|
|
mViECapture->GetCaptureCapability(mUniqueId, KMaxUniqueIdLength, i, cap);
|
|
|
|
if (higher) {
|
|
|
|
if (i == 0 ||
|
|
|
|
(mOpts.mWidth > cap.width && mOpts.mHeight > cap.height)) {
|
|
|
|
mOpts.mWidth = cap.width;
|
|
|
|
mOpts.mHeight = cap.height;
|
|
|
|
mOpts.mMaxFPS = cap.maxFPS;
|
|
|
|
mCapability = cap;
|
|
|
|
// FIXME: expose expected capture delay?
|
|
|
|
}
|
|
|
|
if (cap.width <= aWidth && cap.height <= aHeight) {
|
|
|
|
higher = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (cap.width > aWidth || cap.height > aHeight || cap.maxFPS < aMinFPS) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (mOpts.mWidth < cap.width && mOpts.mHeight < cap.height) {
|
|
|
|
mOpts.mWidth = cap.width;
|
|
|
|
mOpts.mHeight = cap.height;
|
|
|
|
mOpts.mMaxFPS = cap.maxFPS;
|
|
|
|
mCapability = cap;
|
|
|
|
// FIXME: expose expected capture delay?
|
|
|
|
}
|
|
|
|
}
|
2012-07-12 11:53:08 +00:00
|
|
|
}
|
2012-10-04 16:09:35 +00:00
|
|
|
mCapabilityChosen = true;
|
2012-07-12 11:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-04 16:09:35 +00:00
|
|
|
MediaEngineWebRTCVideoSource::GetName(nsAString& aName)
|
2012-07-12 11:53:08 +00:00
|
|
|
{
|
2012-10-04 16:09:35 +00:00
|
|
|
// mDeviceName is UTF8
|
|
|
|
CopyUTF8toUTF16(mDeviceName, aName);
|
|
|
|
}
|
2012-07-12 11:53:08 +00:00
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
void
|
|
|
|
MediaEngineWebRTCVideoSource::GetUUID(nsAString& aUUID)
|
|
|
|
{
|
|
|
|
// mUniqueId is UTF8
|
|
|
|
CopyUTF8toUTF16(mUniqueId, aUUID);
|
2012-07-12 11:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
MediaEngineWebRTCVideoSource::Allocate()
|
|
|
|
{
|
|
|
|
if (mState != kReleased) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
if (!mCapabilityChosen) {
|
|
|
|
// XXX these should come from constraints
|
|
|
|
ChooseCapability(mWidth, mHeight, mMinFps);
|
|
|
|
}
|
2012-07-12 11:53:08 +00:00
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
if (mViECapture->AllocateCaptureDevice(mUniqueId, KMaxUniqueIdLength, mCaptureIndex)) {
|
2012-07-12 11:53:08 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mState = kAllocated;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
MediaEngineWebRTCVideoSource::Deallocate()
|
|
|
|
{
|
|
|
|
if (mState != kStopped && mState != kAllocated) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
mViECapture->ReleaseCaptureDevice(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
mState = kReleased;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
const MediaEngineVideoOptions*
|
2012-07-12 11:53:08 +00:00
|
|
|
MediaEngineWebRTCVideoSource::GetOptions()
|
|
|
|
{
|
2012-10-04 16:09:35 +00:00
|
|
|
if (!mCapabilityChosen) {
|
|
|
|
ChooseCapability(mWidth, mHeight, mMinFps);
|
|
|
|
}
|
|
|
|
return &mOpts;
|
2012-07-12 11:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
MediaEngineWebRTCVideoSource::Start(SourceMediaStream* aStream, TrackID aID)
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
if (!mInitDone || mState != kAllocated) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aStream) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mState == kStarted) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
mSource = aStream;
|
|
|
|
mTrackID = aID;
|
|
|
|
|
|
|
|
mImageContainer = layers::LayerManager::CreateImageContainer();
|
2012-10-17 09:46:40 +00:00
|
|
|
|
|
|
|
mSource->AddTrack(aID, USECS_PER_S, 0, new VideoSegment());
|
2012-07-12 11:53:08 +00:00
|
|
|
mSource->AdvanceKnownTracksTime(STREAM_TIME_MAX);
|
2012-10-17 09:46:40 +00:00
|
|
|
mLastEndTime = 0;
|
2012-10-24 23:21:15 +00:00
|
|
|
mState = kStarted;
|
2012-07-12 11:53:08 +00:00
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
error = mViERender->AddRenderer(mCaptureIndex, webrtc::kVideoI420, (webrtc::ExternalRenderer*)this);
|
2012-07-12 11:53:08 +00:00
|
|
|
if (error == -1) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
error = mViERender->StartRender(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
if (error == -1) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-10-17 00:53:55 +00:00
|
|
|
if (mViECapture->StartCapture(mCaptureIndex, mCapability) < 0) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-07-12 11:53:08 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
MediaEngineWebRTCVideoSource::Stop()
|
|
|
|
{
|
|
|
|
if (mState != kStarted) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-10-17 21:40:14 +00:00
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter enter(mMonitor);
|
|
|
|
mState = kStopped;
|
|
|
|
mSource->EndTrack(mTrackID);
|
|
|
|
}
|
2012-07-12 11:53:08 +00:00
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
mViERender->StopRender(mCaptureIndex);
|
|
|
|
mViERender->RemoveRenderer(mCaptureIndex);
|
2012-10-17 00:53:55 +00:00
|
|
|
mViECapture->StopCapture(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
MediaEngineWebRTCVideoSource::Snapshot(uint32_t aDuration, nsIDOMFile** aFile)
|
2012-07-12 11:53:08 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* To get a Snapshot we do the following:
|
|
|
|
* - Set a condition variable (mInSnapshotMode) to true
|
|
|
|
* - Attach the external renderer and start the camera
|
|
|
|
* - Wait for the condition variable to change to false
|
|
|
|
*
|
|
|
|
* Starting the camera has the effect of invoking DeliverFrame() when
|
|
|
|
* the first frame arrives from the camera. We only need one frame for
|
|
|
|
* GetCaptureDeviceSnapshot to work, so we immediately set the condition
|
|
|
|
* variable to false and notify this method.
|
|
|
|
*
|
|
|
|
* This causes the current thread to continue (PR_CondWaitVar will return),
|
|
|
|
* at which point we can grab a snapshot, convert it to a file and
|
|
|
|
* return from this function after cleaning up the temporary stream object
|
|
|
|
* and caling Stop() on the media source.
|
|
|
|
*/
|
2012-07-30 14:20:58 +00:00
|
|
|
*aFile = nullptr;
|
2012-07-12 11:53:08 +00:00
|
|
|
if (!mInitDone || mState != kAllocated) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mSnapshotLock = PR_NewLock();
|
|
|
|
mSnapshotCondVar = PR_NewCondVar(mSnapshotLock);
|
|
|
|
|
|
|
|
PR_Lock(mSnapshotLock);
|
|
|
|
mInSnapshotMode = true;
|
|
|
|
|
|
|
|
// Start the rendering (equivalent to calling Start(), but without a track).
|
|
|
|
int error = 0;
|
|
|
|
if (!mInitDone || mState != kAllocated) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2012-10-04 16:09:35 +00:00
|
|
|
error = mViERender->AddRenderer(mCaptureIndex, webrtc::kVideoI420, (webrtc::ExternalRenderer*)this);
|
2012-07-12 11:53:08 +00:00
|
|
|
if (error == -1) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2012-10-04 16:09:35 +00:00
|
|
|
error = mViERender->StartRender(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
if (error == -1) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for the condition variable, will be set in DeliverFrame.
|
|
|
|
// We use a while loop, because even if PR_WaitCondVar returns, it's not
|
|
|
|
// guaranteed that the condition variable changed.
|
|
|
|
while (mInSnapshotMode) {
|
|
|
|
PR_WaitCondVar(mSnapshotCondVar, PR_INTERVAL_NO_TIMEOUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we get here, DeliverFrame received at least one frame.
|
|
|
|
PR_Unlock(mSnapshotLock);
|
|
|
|
PR_DestroyCondVar(mSnapshotCondVar);
|
|
|
|
PR_DestroyLock(mSnapshotLock);
|
|
|
|
|
|
|
|
webrtc::ViEFile* vieFile = webrtc::ViEFile::GetInterface(mVideoEngine);
|
|
|
|
if (!vieFile) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a temporary file on the main thread and put the snapshot in it.
|
|
|
|
// See Run() in MediaEngineWebRTCVideo.h (sets mSnapshotPath).
|
|
|
|
NS_DispatchToMainThread(this, NS_DISPATCH_SYNC);
|
|
|
|
|
|
|
|
if (!mSnapshotPath) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-07-27 03:13:51 +00:00
|
|
|
NS_ConvertUTF16toUTF8 path(*mSnapshotPath);
|
2012-10-04 16:09:35 +00:00
|
|
|
if (vieFile->GetCaptureDeviceSnapshot(mCaptureIndex, path.get()) < 0) {
|
2012-07-12 11:53:08 +00:00
|
|
|
delete mSnapshotPath;
|
|
|
|
mSnapshotPath = NULL;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop the camera.
|
2012-10-04 16:09:35 +00:00
|
|
|
mViERender->StopRender(mCaptureIndex);
|
|
|
|
mViERender->RemoveRenderer(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
nsresult rv = NS_NewLocalFile(*mSnapshotPath, false, getter_AddRefs(file));
|
|
|
|
|
|
|
|
delete mSnapshotPath;
|
|
|
|
mSnapshotPath = NULL;
|
|
|
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
NS_ADDREF(*aFile = new nsDOMFileFile(file));
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialization and Shutdown functions for the video source, called by the
|
|
|
|
* constructor and destructor respectively.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaEngineWebRTCVideoSource::Init()
|
|
|
|
{
|
2012-10-04 16:09:35 +00:00
|
|
|
mDeviceName[0] = '\0'; // paranoia
|
|
|
|
mUniqueId[0] = '\0';
|
|
|
|
|
2012-07-12 11:53:08 +00:00
|
|
|
if (mVideoEngine == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mViEBase = webrtc::ViEBase::GetInterface(mVideoEngine);
|
|
|
|
if (mViEBase == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get interfaces for capture, render for now
|
|
|
|
mViECapture = webrtc::ViECapture::GetInterface(mVideoEngine);
|
|
|
|
mViERender = webrtc::ViERender::GetInterface(mVideoEngine);
|
|
|
|
|
|
|
|
if (mViECapture == NULL || mViERender == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-04 16:09:35 +00:00
|
|
|
if (mViECapture->GetCaptureDevice(mCaptureIndex,
|
|
|
|
mDeviceName, sizeof(mDeviceName),
|
|
|
|
mUniqueId, sizeof(mUniqueId))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-12 11:53:08 +00:00
|
|
|
mInitDone = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaEngineWebRTCVideoSource::Shutdown()
|
|
|
|
{
|
|
|
|
bool continueShutdown = false;
|
|
|
|
|
|
|
|
if (!mInitDone) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mState == kStarted) {
|
2012-10-04 16:09:35 +00:00
|
|
|
mViERender->StopRender(mCaptureIndex);
|
|
|
|
mViERender->RemoveRenderer(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
continueShutdown = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mState == kAllocated || continueShutdown) {
|
2012-10-04 16:09:35 +00:00
|
|
|
mViECapture->StopCapture(mCaptureIndex);
|
|
|
|
mViECapture->ReleaseCaptureDevice(mCaptureIndex);
|
2012-07-12 11:53:08 +00:00
|
|
|
continueShutdown = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
mViECapture->Release();
|
|
|
|
mViERender->Release();
|
|
|
|
mViEBase->Release();
|
|
|
|
mState = kReleased;
|
|
|
|
mInitDone = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|