Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/services/streaming/streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3525,6 +3525,10 @@ export class StreamingService
dataOutput += instance.dataOutput;
}

// TODO: Add UI to show bitrate by display but for now average the all instances, which is more accurate
// than only showing the horizontal display's bitrate in dual output mode
kbitsPerSec = Math.round(kbitsPerSec / Object.keys(this.contexts).length);

return { droppedFrames, totalFrames, kbitsPerSec, dataOutput };
}

Expand Down
Loading