@livedigital/client 2.23.0-get-stats.1 → 2.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,7 +42,6 @@ declare class Peer {
42
42
  get appData(): Record<string, unknown>;
43
43
  get observer(): EnhancedEventEmitter;
44
44
  get isMe(): boolean;
45
- get isBroadcaster(): boolean;
46
45
  get publishedMedia(): PayloadOfPublishedMedia[];
47
46
  subscribe(producerId: string): Promise<void>;
48
47
  getInfo(): Promise<PeerInfo>;
@@ -2,7 +2,10 @@ import { WebRTCStatsEventData } from '@peermetrics/webrtc-stats';
2
2
  import { IssueDetector, IssueDetectorResult } from '../types';
3
3
  declare class VideoCodecMismatchDetector implements IssueDetector {
4
4
  #private;
5
+ readonly UNKNOWN_DECODER = "unknown";
5
6
  detect(data: WebRTCStatsEventData): IssueDetectorResult;
6
7
  private processData;
8
+ private setLastDecoderWithIssue;
9
+ private hadLastDecoderWithIssue;
7
10
  }
8
11
  export default VideoCodecMismatchDetector;
@@ -0,0 +1,2 @@
1
+ declare const filterStatsCodecs: (codec: RTCRtpCodecParameters) => boolean;
2
+ export default filterStatsCodecs;