File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ import WebRTCIssueDetector, {
5858 UnknownVideoDecoderImplementationDetector ,
5959 FrozenVideoTrackDetector ,
6060 VideoDecoderIssueDetector ,
61+ MissingStreamDataDetector
6162} from ' webrtc-issue-detector' ;
6263
6364const widWithDefaultConstructorArgs = new WebRTCIssueDetector ();
@@ -74,6 +75,7 @@ const widWithCustomConstructorArgs = new WebRTCIssueDetector({
7475 new UnknownVideoDecoderImplementationDetector (),
7576 new FrozenVideoTrackDetector (),
7677 new VideoDecoderIssueDetector (),
78+ new MissingStreamDataDetector (),
7779 ],
7880 getStatsInterval: 10_000 , // set custom stats parsing interval
7981 onIssues : (payload : IssueDetectorResult ) => {
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ export { default as QualityLimitationsIssueDetector } from './QualityLimitations
77export { default as UnknownVideoDecoderImplementationDetector } from './UnknownVideoDecoderImplementationDetector' ;
88export { default as FrozenVideoTrackDetector } from './FrozenVideoTrackDetector' ;
99export { default as VideoDecoderIssueDetector } from './VideoDecoderIssueDetector' ;
10+ export { default as MissingStreamDataDetector } from './MissingStreamDataDetector' ;
You can’t perform that action at this time.
0 commit comments