2013-07-05 01:50:25 +00:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#ifndef MediaRecorder_h
|
|
|
|
#define MediaRecorder_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/MediaRecorderBinding.h"
|
2014-04-01 06:13:50 +00:00
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
2014-07-01 05:25:29 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2014-06-19 02:11:34 +00:00
|
|
|
#include "nsIDocumentActivity.h"
|
2013-07-05 01:50:25 +00:00
|
|
|
|
|
|
|
// Max size for allowing queue encoded data in memory
|
|
|
|
#define MAX_ALLOW_MEMORY_BUFFER 1024000
|
|
|
|
namespace mozilla {
|
|
|
|
|
2014-08-27 21:40:00 +00:00
|
|
|
class AudioNodeStream;
|
2013-09-05 20:25:17 +00:00
|
|
|
class DOMMediaStream;
|
2014-08-27 21:40:00 +00:00
|
|
|
class ErrorResult;
|
2013-09-05 20:25:17 +00:00
|
|
|
class MediaInputPort;
|
2014-03-19 06:52:45 +00:00
|
|
|
struct MediaRecorderOptions;
|
2014-08-27 21:40:00 +00:00
|
|
|
class MediaStream;
|
2016-03-07 03:48:16 +00:00
|
|
|
class GlobalObject;
|
2013-07-05 01:50:25 +00:00
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
2014-08-27 21:40:00 +00:00
|
|
|
class AudioNode;
|
|
|
|
|
2013-07-05 01:50:25 +00:00
|
|
|
/**
|
|
|
|
* Implementation of https://dvcs.w3.org/hg/dap/raw-file/default/media-stream-capture/MediaRecorder.html
|
|
|
|
* The MediaRecorder accepts a mediaStream as input source passed from UA. When recorder starts,
|
|
|
|
* a MediaEncoder will be created and accept the mediaStream as input source.
|
|
|
|
* Encoder will get the raw data by track data changes, encode it by selected MIME Type, then store the encoded in EncodedBufferCache object.
|
|
|
|
* The encoded data will be extracted on every timeslice passed from Start function call or by RequestData function.
|
|
|
|
* Thread model:
|
|
|
|
* When the recorder starts, it creates a "Media Encoder" thread to read data from MediaEncoder object and store buffer in EncodedBufferCache object.
|
|
|
|
* Also extract the encoded data and create blobs on every timeslice passed from start function or RequestData function called by UA.
|
|
|
|
*/
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class MediaRecorder final : public DOMEventTargetHelper,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsIDocumentActivity
|
2013-07-05 01:50:25 +00:00
|
|
|
{
|
2013-09-26 13:40:40 +00:00
|
|
|
class Session;
|
|
|
|
|
2013-07-05 01:50:25 +00:00
|
|
|
public:
|
2016-01-30 17:05:36 +00:00
|
|
|
MediaRecorder(DOMMediaStream& aSourceMediaStream,
|
|
|
|
nsPIDOMWindowInner* aOwnerWindow);
|
|
|
|
MediaRecorder(AudioNode& aSrcAudioNode, uint32_t aSrcOutput,
|
|
|
|
nsPIDOMWindowInner* aOwnerWindow);
|
2013-07-05 01:50:25 +00:00
|
|
|
|
|
|
|
// nsWrapperCache
|
2016-01-18 03:50:29 +00:00
|
|
|
JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-07-05 01:50:25 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowInner* GetParentObject() { return GetOwner(); }
|
2013-07-05 01:50:25 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(MediaRecorder,
|
2014-04-01 06:13:50 +00:00
|
|
|
DOMEventTargetHelper)
|
2013-07-05 01:50:25 +00:00
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
// Start recording. If timeSlice has been provided, mediaRecorder will
|
|
|
|
// raise a dataavailable event containing the Blob of collected data on every timeSlice milliseconds.
|
|
|
|
// If timeSlice isn't provided, UA should call the RequestData to obtain the Blob data, also set the mTimeSlice to zero.
|
|
|
|
void Start(const Optional<int32_t>& timeSlice, ErrorResult & aResult);
|
|
|
|
// Stop the recording activiy. Including stop the Media Encoder thread, un-hook the mediaStreamListener to encoder.
|
|
|
|
void Stop(ErrorResult& aResult);
|
2013-07-14 07:31:59 +00:00
|
|
|
// Pause the mTrackUnionStream
|
|
|
|
void Pause(ErrorResult& aResult);
|
|
|
|
|
|
|
|
void Resume(ErrorResult& aResult);
|
2013-07-05 01:50:25 +00:00
|
|
|
// Extract encoded data Blob from EncodedBufferCache.
|
|
|
|
void RequestData(ErrorResult& aResult);
|
|
|
|
// Return the The DOMMediaStream passed from UA.
|
2014-08-27 21:40:00 +00:00
|
|
|
DOMMediaStream* Stream() const { return mDOMStream; }
|
2013-07-05 01:50:25 +00:00
|
|
|
// The current state of the MediaRecorder object.
|
|
|
|
RecordingState State() const { return mState; }
|
|
|
|
// Return the current encoding MIME type selected by the MediaEncoder.
|
2013-09-26 13:40:40 +00:00
|
|
|
void GetMimeType(nsString &aMimeType);
|
2013-07-05 01:50:25 +00:00
|
|
|
|
2016-03-07 03:48:16 +00:00
|
|
|
static bool IsTypeSupported(GlobalObject& aGlobal, const nsAString& aType);
|
|
|
|
static bool IsTypeSupported(const nsAString& aType);
|
|
|
|
|
2014-08-27 21:40:00 +00:00
|
|
|
// Construct a recorder with a DOM media stream object as its source.
|
2013-07-05 01:50:25 +00:00
|
|
|
static already_AddRefed<MediaRecorder>
|
2013-08-23 05:17:08 +00:00
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2014-03-19 06:52:45 +00:00
|
|
|
DOMMediaStream& aStream,
|
|
|
|
const MediaRecorderOptions& aInitDict,
|
|
|
|
ErrorResult& aRv);
|
2014-08-27 21:40:00 +00:00
|
|
|
// Construct a recorder with a Web Audio destination node as its source.
|
|
|
|
static already_AddRefed<MediaRecorder>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
AudioNode& aSrcAudioNode,
|
|
|
|
uint32_t aSrcOutput,
|
|
|
|
const MediaRecorderOptions& aInitDict,
|
|
|
|
ErrorResult& aRv);
|
2013-07-05 01:50:25 +00:00
|
|
|
|
2014-07-01 05:25:29 +00:00
|
|
|
/*
|
|
|
|
* Measure the size of the buffer, and memory occupied by mAudioEncoder
|
|
|
|
* and mVideoEncoder
|
|
|
|
*/
|
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2013-07-05 01:50:25 +00:00
|
|
|
// EventHandler
|
|
|
|
IMPL_EVENT_HANDLER(dataavailable)
|
|
|
|
IMPL_EVENT_HANDLER(error)
|
2014-06-27 03:07:45 +00:00
|
|
|
IMPL_EVENT_HANDLER(start)
|
2013-07-05 01:50:25 +00:00
|
|
|
IMPL_EVENT_HANDLER(stop)
|
|
|
|
IMPL_EVENT_HANDLER(warning)
|
|
|
|
|
2014-06-19 02:11:34 +00:00
|
|
|
NS_DECL_NSIDOCUMENTACTIVITY
|
|
|
|
|
2015-06-08 03:47:28 +00:00
|
|
|
uint32_t GetAudioBitrate() { return mAudioBitsPerSecond; }
|
|
|
|
uint32_t GetVideoBitrate() { return mVideoBitsPerSecond; }
|
|
|
|
uint32_t GetBitrate() { return mBitsPerSecond; }
|
2013-07-05 01:50:25 +00:00
|
|
|
protected:
|
2014-07-08 21:23:16 +00:00
|
|
|
virtual ~MediaRecorder();
|
|
|
|
|
2015-01-06 23:35:02 +00:00
|
|
|
MediaRecorder& operator = (const MediaRecorder& x) = delete;
|
2013-07-05 01:50:25 +00:00
|
|
|
// Create dataavailable event with Blob data and it runs in main thread
|
2014-03-15 19:00:17 +00:00
|
|
|
nsresult CreateAndDispatchBlobEvent(already_AddRefed<nsIDOMBlob>&& aBlob);
|
2013-07-05 01:50:25 +00:00
|
|
|
// Creating a simple event to notify UA simple event.
|
|
|
|
void DispatchSimpleEvent(const nsAString & aStr);
|
|
|
|
// Creating a error event with message.
|
|
|
|
void NotifyError(nsresult aRv);
|
2013-09-26 13:40:40 +00:00
|
|
|
// Set encoded MIME type.
|
|
|
|
void SetMimeType(const nsString &aMimeType);
|
2015-05-25 15:49:03 +00:00
|
|
|
void SetOptions(const MediaRecorderOptions& aInitDict);
|
2013-07-05 01:50:25 +00:00
|
|
|
|
2015-01-06 23:35:02 +00:00
|
|
|
MediaRecorder(const MediaRecorder& x) = delete; // prevent bad usage
|
2014-03-25 17:11:58 +00:00
|
|
|
// Remove session pointer.
|
|
|
|
void RemoveSession(Session* aSession);
|
2014-08-27 21:40:00 +00:00
|
|
|
// Functions for Session to query input source info.
|
|
|
|
MediaStream* GetSourceMediaStream();
|
|
|
|
// DOM wrapper for source media stream. Will be null when input is audio node.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<DOMMediaStream> mDOMStream;
|
2014-08-27 21:40:00 +00:00
|
|
|
// Source audio node. Will be null when input is a media stream.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<AudioNode> mAudioNode;
|
2014-08-27 21:40:00 +00:00
|
|
|
// Pipe stream connecting non-destination source node and session track union
|
|
|
|
// stream of recorder. Will be null when input is media stream or destination
|
|
|
|
// node.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<AudioNodeStream> mPipeStream;
|
2014-08-27 21:40:00 +00:00
|
|
|
// Connect source node to the pipe stream.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<MediaInputPort> mInputPort;
|
2014-08-27 21:40:00 +00:00
|
|
|
|
2013-07-05 01:50:25 +00:00
|
|
|
// The current state of the MediaRecorder object.
|
|
|
|
RecordingState mState;
|
2014-08-18 03:42:49 +00:00
|
|
|
// Hold the sessions reference and clean it when the DestroyRunnable for a
|
2014-06-19 02:11:34 +00:00
|
|
|
// session is running.
|
2015-10-18 05:24:48 +00:00
|
|
|
nsTArray<RefPtr<Session> > mSessions;
|
2013-09-26 13:40:40 +00:00
|
|
|
// It specifies the container format as well as the audio and video capture formats.
|
|
|
|
nsString mMimeType;
|
2014-06-19 02:11:34 +00:00
|
|
|
|
2015-05-25 15:49:03 +00:00
|
|
|
uint32_t mAudioBitsPerSecond;
|
|
|
|
uint32_t mVideoBitsPerSecond;
|
|
|
|
uint32_t mBitsPerSecond;
|
2014-06-19 02:11:34 +00:00
|
|
|
private:
|
|
|
|
// Register MediaRecorder into Document to listen the activity changes.
|
|
|
|
void RegisterActivityObserver();
|
|
|
|
void UnRegisterActivityObserver();
|
2015-01-06 01:54:27 +00:00
|
|
|
|
2015-10-27 07:14:12 +00:00
|
|
|
bool CheckPermission(const nsString &aType);
|
2013-07-05 01:50:25 +00:00
|
|
|
};
|
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-07-05 01:50:25 +00:00
|
|
|
|
|
|
|
#endif
|