mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser: apply SubscriberProperties subscribeToAudio and subscribeToVideo
parent
27d770b368
commit
f02f6c7d5a
|
@ -20,6 +20,7 @@ import { Event } from '../OpenViduInternal/Events/Event';
|
||||||
import { Filter } from './Filter';
|
import { Filter } from './Filter';
|
||||||
import { Session } from './Session';
|
import { Session } from './Session';
|
||||||
import { StreamManager } from './StreamManager';
|
import { StreamManager } from './StreamManager';
|
||||||
|
import { Subscriber } from './Subscriber';
|
||||||
import { EventDispatcher } from '../OpenViduInternal/Interfaces/Public/EventDispatcher';
|
import { EventDispatcher } from '../OpenViduInternal/Interfaces/Public/EventDispatcher';
|
||||||
import { InboundStreamOptions } from '../OpenViduInternal/Interfaces/Private/InboundStreamOptions';
|
import { InboundStreamOptions } from '../OpenViduInternal/Interfaces/Private/InboundStreamOptions';
|
||||||
import { OutboundStreamOptions } from '../OpenViduInternal/Interfaces/Private/OutboundStreamOptions';
|
import { OutboundStreamOptions } from '../OpenViduInternal/Interfaces/Private/OutboundStreamOptions';
|
||||||
|
@ -822,6 +823,19 @@ export class Stream implements EventDispatcher {
|
||||||
console.debug('Peer remote stream', this.mediaStream);
|
console.debug('Peer remote stream', this.mediaStream);
|
||||||
|
|
||||||
if (!!this.mediaStream) {
|
if (!!this.mediaStream) {
|
||||||
|
|
||||||
|
if (this.streamManager instanceof Subscriber) {
|
||||||
|
// Apply SubscriberProperties.subscribeToAudio and SubscriberProperties.subscribeToVideo
|
||||||
|
if (!!this.mediaStream.getAudioTracks()[0]) {
|
||||||
|
const enabled = !!((<Subscriber>this.streamManager).properties.subscribeToAudio);
|
||||||
|
this.mediaStream.getAudioTracks()[0].enabled = enabled;
|
||||||
|
}
|
||||||
|
if (!!this.mediaStream.getVideoTracks()[0]) {
|
||||||
|
const enabled = !!((<Subscriber>this.streamManager).properties.subscribeToVideo);
|
||||||
|
this.mediaStream.getVideoTracks()[0].enabled = enabled;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.ee.emitEvent('mediastream-updated');
|
this.ee.emitEvent('mediastream-updated');
|
||||||
if (!this.displayMyRemote() && !!this.mediaStream.getAudioTracks()[0] && this.session.speakingEventsEnabled) {
|
if (!this.displayMyRemote() && !!this.mediaStream.getAudioTracks()[0] && this.session.speakingEventsEnabled) {
|
||||||
this.enableSpeakingEvents();
|
this.enableSpeakingEvents();
|
||||||
|
|
|
@ -25,7 +25,10 @@ import { SubscriberProperties } from '../OpenViduInternal/Interfaces/Public/Subs
|
||||||
*/
|
*/
|
||||||
export class Subscriber extends StreamManager {
|
export class Subscriber extends StreamManager {
|
||||||
|
|
||||||
private properties: SubscriberProperties;
|
/**
|
||||||
|
* @hidden
|
||||||
|
*/
|
||||||
|
properties: SubscriberProperties;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @hidden
|
* @hidden
|
||||||
|
|
Loading…
Reference in New Issue