Properly handle media

This might have resulted in the wrong speaker being used or worse

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-04-12 16:19:05 +02:00
parent 8ba95f5f01
commit 56b15edc58
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -63,6 +63,10 @@ export default class VideoFeed extends React.Component<IProps, IState> {
componentDidMount() {
this.props.feed.addListener(CallFeedEvent.NewStream, this.onNewStream);
this.playMedia();
}
playMedia() {
const audioOutput = CallMediaHandler.getAudioOutput();
const currentMedia = this.getCurrentMedia();
@ -117,14 +121,12 @@ export default class VideoFeed extends React.Component<IProps, IState> {
return this.audio.current || this.video.current;
}
onNewStream = (newStream: MediaStream) => {
onNewStream = () => {
this.setState({
audioMuted: this.props.feed.isAudioMuted(),
videoMuted: this.props.feed.isVideoMuted(),
});
const currentMedia = this.getCurrentMedia();
currentMedia.srcObject = newStream;
currentMedia.play();
this.playMedia();
}
onResize = (e) => {