Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Added "media-playout" to prevent spam in Aggregated Stats (#232)
Browse files Browse the repository at this point in the history
* Added "media-playout" to prevent spam in Aggregated Stats

Signed-off-by: Chris Hassebrook <[email protected]>
  • Loading branch information
chasse20 authored Jun 6, 2023
1 parent 9dbe8c1 commit 9c871b5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Logger } from '../Logger/Logger';
* The Aggregated Stats that is generated from the RTC Stats Report
*/

type RTCStatsTypePS = RTCStatsType | 'stream';
type RTCStatsTypePS = RTCStatsType | 'stream' | 'media-playout';
export class AggregatedStats {
inboundVideoStats: InboundVideoStats;
inboundAudioStats: InboundAudioStats;
Expand Down Expand Up @@ -76,6 +76,8 @@ export class AggregatedStats {
break;
case 'media-source':
break;
case 'media-playout':
break;
case 'outbound-rtp':
break;
case 'peer-connection':
Expand Down

0 comments on commit 9c871b5

Please sign in to comment.