@livedigital/client 2.22.1 → 2.22.2
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.
|
@@ -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;
|