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, {
58
58
UnknownVideoDecoderImplementationDetector ,
59
59
FrozenVideoTrackDetector ,
60
60
VideoDecoderIssueDetector ,
61
+ MissingStreamDataDetector
61
62
} from ' webrtc-issue-detector' ;
62
63
63
64
const widWithDefaultConstructorArgs = new WebRTCIssueDetector ();
@@ -74,6 +75,7 @@ const widWithCustomConstructorArgs = new WebRTCIssueDetector({
74
75
new UnknownVideoDecoderImplementationDetector (),
75
76
new FrozenVideoTrackDetector (),
76
77
new VideoDecoderIssueDetector (),
78
+ new MissingStreamDataDetector (),
77
79
],
78
80
getStatsInterval: 10_000 , // set custom stats parsing interval
79
81
onIssues : (payload : IssueDetectorResult ) => {
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ export { default as QualityLimitationsIssueDetector } from './QualityLimitations
7
7
export { default as UnknownVideoDecoderImplementationDetector } from './UnknownVideoDecoderImplementationDetector' ;
8
8
export { default as FrozenVideoTrackDetector } from './FrozenVideoTrackDetector' ;
9
9
export { default as VideoDecoderIssueDetector } from './VideoDecoderIssueDetector' ;
10
+ export { default as MissingStreamDataDetector } from './MissingStreamDataDetector' ;
You can’t perform that action at this time.
0 commit comments