Skip to content

Commit 600b05a

Browse files
Merge pull request #110 from EpicGamesExt/backport/UE5.3/pr-86
[UE5.3] Merge pull request #86 from zuvola/master
2 parents 69738c4 + ff04cee commit 600b05a

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

Frontend/library/src/VideoPlayer/StreamController.ts

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ export class StreamController {
3131
'handleOnTrack ' + JSON.stringify(rtcTrackEvent.streams),
3232
6
3333
);
34+
// Do not add the track if the ID is `probator` as this is special track created by mediasoup for bitrate probing.
35+
// Refer to https://github.com/EpicGamesExt/PixelStreamingInfrastructure/pull/86 for more details.
36+
if (rtcTrackEvent.track.id == 'probator') {
37+
return;
38+
}
39+
3440
const videoElement = this.videoElementProvider.getVideoElement();
3541

3642
if (rtcTrackEvent.track) {

SFU/mediasoup-sdp-bridge/lib/index.js

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)