()
| 527 | } |
| 528 | |
| 529 | function getMixedStream() { |
| 530 | isStopDrawingFrames = false; |
| 531 | var mixedVideoStream = getMixedVideoStream(); |
| 532 | |
| 533 | var mixedAudioStream = getMixedAudioStream(); |
| 534 | if (mixedAudioStream) { |
| 535 | mixedAudioStream.getAudioTracks().forEach(function(track) { |
| 536 | mixedVideoStream.addTrack(track); |
| 537 | }); |
| 538 | } |
| 539 | |
| 540 | var fullcanvas; |
| 541 | arrayOfMediaStreams.forEach(function(stream) { |
| 542 | if (stream.fullcanvas) { |
| 543 | fullcanvas = true; |
| 544 | } |
| 545 | }); |
| 546 | |
| 547 | return mixedVideoStream; |
| 548 | } |
| 549 | |
| 550 | function getMixedVideoStream() { |
| 551 | resetVideoStreams(); |
nothing calls this directly
no test coverage detected