2014-12-19 13:59:08 +00:00
|
|
|
////These lines should be uncommented when require works in app.js
|
2015-01-28 14:35:22 +00:00
|
|
|
var MediaStreamType = require("../../service/RTC/MediaStreamTypes");
|
2015-03-17 16:46:08 +00:00
|
|
|
var StreamEventType = require("../../service/RTC/StreamEventTypes");
|
2014-12-19 13:59:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a MediaStream object for the given data, session id and ssrc.
|
|
|
|
* It is a wrapper class for the MediaStream.
|
|
|
|
*
|
|
|
|
* @param data the data object from which we obtain the stream,
|
|
|
|
* the peerjid, etc.
|
|
|
|
* @param sid the session id
|
|
|
|
* @param ssrc the ssrc corresponding to this MediaStream
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
*/
|
2015-03-17 16:46:08 +00:00
|
|
|
function MediaStream(data, sid, ssrc, browser, eventEmitter) {
|
2014-12-22 14:08:49 +00:00
|
|
|
|
|
|
|
// XXX(gp) to minimize headaches in the future, we should build our
|
|
|
|
// abstractions around tracks and not streams. ORTC is track based API.
|
|
|
|
// Mozilla expects m-lines to represent media tracks.
|
|
|
|
//
|
|
|
|
// Practically, what I'm saying is that we should have a MediaTrack class
|
|
|
|
// and not a MediaStream class.
|
|
|
|
//
|
|
|
|
// Also, we should be able to associate multiple SSRCs with a MediaTrack as
|
|
|
|
// a track might have an associated RTX and FEC sources.
|
|
|
|
|
2014-12-19 13:59:08 +00:00
|
|
|
this.sid = sid;
|
|
|
|
this.stream = data.stream;
|
|
|
|
this.peerjid = data.peerjid;
|
|
|
|
this.ssrc = ssrc;
|
|
|
|
this.type = (this.stream.getVideoTracks().length > 0)?
|
|
|
|
MediaStreamType.VIDEO_TYPE : MediaStreamType.AUDIO_TYPE;
|
2015-01-20 15:56:00 +00:00
|
|
|
this.videoType = null;
|
2014-12-19 13:59:08 +00:00
|
|
|
this.muted = false;
|
2015-03-17 16:46:08 +00:00
|
|
|
this.eventEmitter = eventEmitter;
|
2014-12-19 13:59:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MediaStream.prototype.getOriginalStream = function()
|
|
|
|
{
|
|
|
|
return this.stream;
|
2015-03-17 16:46:08 +00:00
|
|
|
};
|
2014-12-19 13:59:08 +00:00
|
|
|
|
|
|
|
MediaStream.prototype.setMute = function (value)
|
|
|
|
{
|
|
|
|
this.stream.muted = value;
|
|
|
|
this.muted = value;
|
2015-03-17 16:46:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
MediaStream.prototype.setVideoType = function (value) {
|
|
|
|
if(this.videoType === value)
|
|
|
|
return;
|
|
|
|
this.videoType = value;
|
|
|
|
this.eventEmitter.emit(StreamEventType.EVENT_TYPE_REMOTE_CHANGED,
|
|
|
|
this.peerjid);
|
|
|
|
};
|
2014-12-19 13:59:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
module.exports = MediaStream;
|