@@ -51,7 +51,6 @@ By default, WebRTCIssueDetector can be created with minimum of mandatory constru
51
51
``` typescript
52
52
import WebRTCIssueDetector , {
53
53
QualityLimitationsIssueDetector ,
54
- FramesEncodedSentIssueDetector ,
55
54
InboundNetworkIssueDetector ,
56
55
OutboundNetworkIssueDetector ,
57
56
NetworkMediaSyncIssueDetector ,
@@ -68,7 +67,6 @@ const widWithDefaultConstructorArgs = new WebRTCIssueDetector();
68
67
const widWithCustomConstructorArgs = new WebRTCIssueDetector ({
69
68
detectors: [ // you are free to change the detectors list according to your needs
70
69
new QualityLimitationsIssueDetector (),
71
- new FramesEncodedSentIssueDetector (),
72
70
new InboundNetworkIssueDetector (),
73
71
new OutboundNetworkIssueDetector (),
74
72
new NetworkMediaSyncIssueDetector (),
@@ -121,21 +119,6 @@ const exampleIssue = {
121
119
}
122
120
```
123
121
124
- ### FramesEncodedSentIssueDetector
125
- Detects issues with outbound network throughput.
126
- ``` js
127
- const exampleIssue = {
128
- type: ' network' ,
129
- reason: ' outbound-network-throughput' ,
130
- statsSample: {
131
- deltaFramesSent: 900 ,
132
- deltaFramesEncoded: 1000 ,
133
- missedFramesPct: 10 ,
134
- },
135
- ssrc: 1234 ,
136
- }
137
- ```
138
-
139
122
### InboundNetworkIssueDetector
140
123
Detects issues with inbound network connection.
141
124
``` js
0 commit comments