mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
260 lines
7.7 KiB
C++
260 lines
7.7 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/. */
|
|
|
|
#ifndef MEDIAENGINE_H_
|
|
#define MEDIAENGINE_H_
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
#include "nsIDOMFile.h"
|
|
#include "DOMMediaStream.h"
|
|
#include "MediaStreamGraph.h"
|
|
#include "mozilla/dom/MediaStreamTrackBinding.h"
|
|
#include "mozilla/dom/VideoStreamTrack.h"
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
class File;
|
|
}
|
|
|
|
enum {
|
|
kVideoTrack = 1,
|
|
kAudioTrack = 2,
|
|
kTrackCount
|
|
};
|
|
|
|
/**
|
|
* Abstract interface for managing audio and video devices. Each platform
|
|
* must implement a concrete class that will map these classes and methods
|
|
* to the appropriate backend. For example, on Desktop platforms, these will
|
|
* correspond to equivalent webrtc (GIPS) calls, and on B2G they will map to
|
|
* a Gonk interface.
|
|
*/
|
|
class MediaEngineVideoSource;
|
|
class MediaEngineAudioSource;
|
|
class MediaEnginePrefs;
|
|
|
|
enum MediaEngineState {
|
|
kAllocated,
|
|
kStarted,
|
|
kStopped,
|
|
kReleased
|
|
};
|
|
|
|
class MediaEngine
|
|
{
|
|
public:
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(MediaEngine)
|
|
|
|
static const int DEFAULT_VIDEO_FPS = 30;
|
|
static const int DEFAULT_VIDEO_MIN_FPS = 10;
|
|
static const int DEFAULT_43_VIDEO_WIDTH = 640;
|
|
static const int DEFAULT_43_VIDEO_HEIGHT = 480;
|
|
static const int DEFAULT_169_VIDEO_WIDTH = 1280;
|
|
static const int DEFAULT_169_VIDEO_HEIGHT = 720;
|
|
static const int DEFAULT_AUDIO_TIMER_MS = 10;
|
|
|
|
/* Populate an array of video sources in the nsTArray. Also include devices
|
|
* that are currently unavailable. */
|
|
virtual void EnumerateVideoDevices(dom::MediaSourceEnum,
|
|
nsTArray<nsRefPtr<MediaEngineVideoSource> >*) = 0;
|
|
|
|
/* Populate an array of audio sources in the nsTArray. Also include devices
|
|
* that are currently unavailable. */
|
|
virtual void EnumerateAudioDevices(dom::MediaSourceEnum,
|
|
nsTArray<nsRefPtr<MediaEngineAudioSource> >*) = 0;
|
|
|
|
protected:
|
|
virtual ~MediaEngine() {}
|
|
};
|
|
|
|
/**
|
|
* Common abstract base class for audio and video sources.
|
|
*/
|
|
class MediaEngineSource : public nsISupports
|
|
{
|
|
public:
|
|
// code inside webrtc.org assumes these sizes; don't use anything smaller
|
|
// without verifying it's ok
|
|
static const unsigned int kMaxDeviceNameLength = 128;
|
|
static const unsigned int kMaxUniqueIdLength = 256;
|
|
|
|
virtual ~MediaEngineSource() {}
|
|
|
|
/* Populate the human readable name of this device in the nsAString */
|
|
virtual void GetName(nsAString&) = 0;
|
|
|
|
/* Populate the UUID of this device in the nsAString */
|
|
virtual void GetUUID(nsAString&) = 0;
|
|
|
|
/* Release the device back to the system. */
|
|
virtual nsresult Deallocate() = 0;
|
|
|
|
/* Start the device and add the track to the provided SourceMediaStream, with
|
|
* the provided TrackID. You may start appending data to the track
|
|
* immediately after. */
|
|
virtual nsresult Start(SourceMediaStream*, TrackID) = 0;
|
|
|
|
/* tell the source if there are any direct listeners attached */
|
|
virtual void SetDirectListeners(bool) = 0;
|
|
|
|
/* Called when the stream wants more data */
|
|
virtual void NotifyPull(MediaStreamGraph* aGraph,
|
|
SourceMediaStream *aSource,
|
|
TrackID aId,
|
|
StreamTime aDesiredTime) = 0;
|
|
|
|
/* Stop the device and release the corresponding MediaStream */
|
|
virtual nsresult Stop(SourceMediaStream *aSource, TrackID aID) = 0;
|
|
|
|
/* Change device configuration. */
|
|
virtual nsresult Config(bool aEchoOn, uint32_t aEcho,
|
|
bool aAgcOn, uint32_t aAGC,
|
|
bool aNoiseOn, uint32_t aNoise,
|
|
int32_t aPlayoutDelay) = 0;
|
|
|
|
/* Returns true if a source represents a fake capture device and
|
|
* false otherwise
|
|
*/
|
|
virtual bool IsFake() = 0;
|
|
|
|
/* Returns the type of media source (camera, microphone, screen, window, etc) */
|
|
virtual const dom::MediaSourceEnum GetMediaSource() = 0;
|
|
|
|
// Callback interface for TakePhoto(). Either PhotoComplete() or PhotoError()
|
|
// should be called.
|
|
class PhotoCallback {
|
|
public:
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(PhotoCallback)
|
|
|
|
// aBlob is the image captured by MediaEngineSource. It is
|
|
// called on main thread.
|
|
virtual nsresult PhotoComplete(already_AddRefed<dom::File> aBlob) = 0;
|
|
|
|
// It is called on main thread. aRv is the error code.
|
|
virtual nsresult PhotoError(nsresult aRv) = 0;
|
|
|
|
protected:
|
|
virtual ~PhotoCallback() {}
|
|
};
|
|
|
|
/* If implementation of MediaEngineSource supports TakePhoto(), the picture
|
|
* should be return via aCallback object. Otherwise, it returns NS_ERROR_NOT_IMPLEMENTED.
|
|
* Currently, only Gonk MediaEngineSource implementation supports it.
|
|
*/
|
|
virtual nsresult TakePhoto(PhotoCallback* aCallback) = 0;
|
|
|
|
/* Return false if device is currently allocated or started */
|
|
bool IsAvailable() {
|
|
if (mState == kAllocated || mState == kStarted) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/* It is an error to call Start() before an Allocate(), and Stop() before
|
|
* a Start(). Only Allocate() may be called after a Deallocate(). */
|
|
|
|
void SetHasFakeTracks(bool aHasFakeTracks) {
|
|
mHasFakeTracks = aHasFakeTracks;
|
|
}
|
|
|
|
protected:
|
|
// Only class' own members can be initialized in constructor initializer list.
|
|
explicit MediaEngineSource(MediaEngineState aState)
|
|
: mState(aState)
|
|
, mHasFakeTracks(false)
|
|
{}
|
|
MediaEngineState mState;
|
|
bool mHasFakeTracks;
|
|
};
|
|
|
|
/**
|
|
* Video source and friends.
|
|
*/
|
|
class MediaEnginePrefs {
|
|
public:
|
|
int32_t mWidth;
|
|
int32_t mHeight;
|
|
int32_t mFPS;
|
|
int32_t mMinFPS;
|
|
|
|
// mWidth and/or mHeight may be zero (=adaptive default), so use functions.
|
|
|
|
int32_t GetWidth(bool aHD = false) const {
|
|
return mWidth? mWidth : (mHeight?
|
|
(mHeight * GetDefWidth(aHD)) / GetDefHeight(aHD) :
|
|
GetDefWidth(aHD));
|
|
}
|
|
|
|
int32_t GetHeight(bool aHD = false) const {
|
|
return mHeight? mHeight : (mWidth?
|
|
(mWidth * GetDefHeight(aHD)) / GetDefWidth(aHD) :
|
|
GetDefHeight(aHD));
|
|
}
|
|
private:
|
|
static int32_t GetDefWidth(bool aHD = false) {
|
|
// It'd be nice if we could use the ternary operator here, but we can't
|
|
// because of bug 1002729.
|
|
if (aHD) {
|
|
return MediaEngine::DEFAULT_169_VIDEO_WIDTH;
|
|
}
|
|
|
|
return MediaEngine::DEFAULT_43_VIDEO_WIDTH;
|
|
}
|
|
|
|
static int32_t GetDefHeight(bool aHD = false) {
|
|
// It'd be nice if we could use the ternary operator here, but we can't
|
|
// because of bug 1002729.
|
|
if (aHD) {
|
|
return MediaEngine::DEFAULT_169_VIDEO_HEIGHT;
|
|
}
|
|
|
|
return MediaEngine::DEFAULT_43_VIDEO_HEIGHT;
|
|
}
|
|
};
|
|
|
|
class MediaEngineVideoSource : public MediaEngineSource
|
|
{
|
|
public:
|
|
virtual ~MediaEngineVideoSource() {}
|
|
|
|
/* This call reserves but does not start the device. */
|
|
virtual nsresult Allocate(const dom::MediaTrackConstraints &aConstraints,
|
|
const MediaEnginePrefs &aPrefs) = 0;
|
|
|
|
virtual uint32_t GetBestFitnessDistance(
|
|
const nsTArray<const dom::MediaTrackConstraintSet*>& aConstraintSets) = 0;
|
|
|
|
protected:
|
|
explicit MediaEngineVideoSource(MediaEngineState aState)
|
|
: MediaEngineSource(aState) {}
|
|
MediaEngineVideoSource()
|
|
: MediaEngineSource(kReleased) {}
|
|
};
|
|
|
|
/**
|
|
* Audio source and friends.
|
|
*/
|
|
class MediaEngineAudioSource : public MediaEngineSource
|
|
{
|
|
public:
|
|
virtual ~MediaEngineAudioSource() {}
|
|
|
|
/* This call reserves but does not start the device. */
|
|
virtual nsresult Allocate(const dom::MediaTrackConstraints &aConstraints,
|
|
const MediaEnginePrefs &aPrefs) = 0;
|
|
protected:
|
|
explicit MediaEngineAudioSource(MediaEngineState aState)
|
|
: MediaEngineSource(aState) {}
|
|
MediaEngineAudioSource()
|
|
: MediaEngineSource(kReleased) {}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* MEDIAENGINE_H_ */
|