Skip to content

Commit

Permalink
Merge pull request #110 from EpicGamesExt/backport/UE5.3/pr-86
Browse files Browse the repository at this point in the history
[UE5.3] Merge pull request #86 from zuvola/master
  • Loading branch information
mcottontensor authored May 7, 2024
2 parents 69738c4 + ff04cee commit 600b05a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Frontend/library/src/VideoPlayer/StreamController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ export class StreamController {
'handleOnTrack ' + JSON.stringify(rtcTrackEvent.streams),
6
);
// Do not add the track if the ID is `probator` as this is special track created by mediasoup for bitrate probing.
// Refer to https://github.com/EpicGamesExt/PixelStreamingInfrastructure/pull/86 for more details.
if (rtcTrackEvent.track.id == 'probator') {
return;
}

const videoElement = this.videoElementProvider.getVideoElement();

if (rtcTrackEvent.track) {
Expand Down
21 changes: 21 additions & 0 deletions SFU/mediasoup-sdp-bridge/lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 600b05a

Please sign in to comment.