Closed
Bug 1137948
Opened 10 years ago
Closed 6 years ago
signalling_unittests spends most of its time waiting for audio RTCP
Categories
(Core :: WebRTC: Signaling, defect, P3)
Core
WebRTC: Signaling
Tracking
()
RESOLVED
INCOMPLETE
backlog | webrtc/webaudio+ |
People
(Reporter: bwc, Assigned: bwc)
Details
Attachments
(2 files, 1 obsolete file)
The webrtc.org code sends audio RTCP every 5 seconds, and since the first RTCP packet doesn't contain any receiver reports (since no RTP has been received), the first receiver report is sent about 5 seconds after the flow of media begins. This means that any test-case that wants to see a receiver report has to wait a while. This may also be making signaling_unittests vulnerable to intermittent timeouts.
We have a few things we could try doing about this:
1. We could make these timers configurable, and set them to something small when running test-cases like signaling_unittests. This would require some modification to the webrtc.org code.
2. We could attempt to prompt the webrtc.org code to send a receiver report sooner by using SetRTCPStatus when we receive our first RTP packet. This only cuts the timer in half, so it is still a long wait. Less code though. It is possible this will have benefits besides testing.
3. Cut down the number of test cases that look for RTCP drastically. I don't like this option, since we have very little testing of RTCP already.
Assignee | ||
Comment 1•10 years ago
|
||
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → docfaraday
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•10 years ago
|
||
Comment on attachment 8570770 [details] [diff] [review]
Option 1: Force webrtc.org to schedule the next RTCP packet sooner when RTP starts flowing
Review of attachment 8570770 [details] [diff] [review]:
-----------------------------------------------------------------
Actually, this is option 2 in the description. Would like your thoughts on what our best bet is here. We could also make a small modification to make SetRTCPStatus set the timeout shorter than it does now, but that would still be a modification to the webrtc.org code, albeit a small one.
Attachment #8570770 -
Flags: feedback?(rjesup)
Assignee | ||
Comment 3•10 years ago
|
||
Assignee | ||
Comment 4•10 years ago
|
||
Assignee | ||
Updated•10 years ago
|
Attachment #8570770 -
Attachment is obsolete: true
Attachment #8570770 -
Flags: feedback?(rjesup)
Assignee | ||
Updated•10 years ago
|
Attachment #8572749 -
Flags: feedback?(rjesup)
Assignee | ||
Updated•10 years ago
|
Attachment #8572750 -
Flags: feedback?(rjesup)
Assignee | ||
Comment 5•10 years ago
|
||
I've tried running signaling_unittests on CI without the patches in this bug, and the run-time of the test exceeds the 900 second limit imposed by the test runner. With these patches, I'm seeing it take around 560 on some platforms, so there seems to be a comfortable margin there.
Assignee | ||
Comment 6•10 years ago
|
||
It seems that the first patch is not quite enough to get us under the 900 second limit on OS X. We will need either the second patch, or maybe a less-invasive patch that reduces the interval more when SetRTCPStatus is called (instead of 2500ms, make it something like 200ms for both audio and video).
Assignee | ||
Comment 7•9 years ago
|
||
We need this fixed if we want to get the full signaling_unittest suite running on CI, but in bug 1140584 we're going to shoot for enabling a smaller subset of the test-cases to keep us under the time limit.
Assignee | ||
Updated•9 years ago
|
Rank: 35 → 40
Priority: P3 → P4
Comment 8•7 years ago
|
||
Mass change P4->P5 to align with new Mozilla triage process.
Priority: P4 → P5
Comment 9•6 years ago
|
||
I'm guessing this is still a problem. Byron what do you think: close or keep it around for fixing?
Flags: needinfo?(docfaraday)
Priority: P5 → P3
Assignee | ||
Comment 10•6 years ago
|
||
We haven't built signaling_unittests in quite some time, so we can close this.
Status: ASSIGNED → RESOLVED
Closed: 6 years ago
Flags: needinfo?(docfaraday)
Resolution: --- → INCOMPLETE
Updated•6 years ago
|
Attachment #8572749 -
Flags: feedback?(rjesup)
Updated•6 years ago
|
Attachment #8572750 -
Flags: feedback?(rjesup)
You need to log in
before you can comment on or make changes to this bug.
Description
•