Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ssrc-group ordering #2925

Closed
wants to merge 1 commit into from
Closed

Fix ssrc-group ordering #2925

wants to merge 1 commit into from

Conversation

Sean-Der
Copy link
Member

@Sean-Der Sean-Der commented Oct 7, 2024

SSRCes were flipped incorrectly

Fixes #2922

SSRCes were flipped incorrectly
@Sean-Der Sean-Der closed this Oct 7, 2024
@Sean-Der Sean-Der deleted the fix-ssrc-ordering branch October 7, 2024 15:04
@Sean-Der
Copy link
Member Author

Sean-Der commented Oct 7, 2024

Opening another PR. This is not the right fix -_-

Copy link

codecov bot commented Oct 7, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 64.65%. Comparing base (d6141bd) to head (27c646d).
Report is 1 commits behind head on master.

❗ There is a different number of reports uploaded between BASE (d6141bd) and HEAD (27c646d). Click for more details.

HEAD has 2 uploads less than BASE
Flag BASE (d6141bd) HEAD (27c646d)
go 2 0
Additional details and impacted files
@@             Coverage Diff             @@
##           master    #2925       +/-   ##
===========================================
- Coverage   78.93%   64.65%   -14.29%     
===========================================
  Files          89       67       -22     
  Lines        8564     3296     -5268     
===========================================
- Hits         6760     2131     -4629     
+ Misses       1314     1039      -275     
+ Partials      490      126      -364     
Flag Coverage Δ
go ?
wasm 64.65% <ø> (+0.18%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@@ -393,11 +393,11 @@ func addSenderSDP(
sendParameters := sender.GetParameters()
for _, encoding := range sendParameters.Encodings {
if encoding.RTX.SSRC != 0 {
media = media.WithValueAttribute("ssrc-group", fmt.Sprintf("FID %d %d", encoding.SSRC, encoding.RTX.SSRC))
media = media.WithValueAttribute("ssrc-group", fmt.Sprintf("FID %d %d", encoding.RTX.SSRC, encoding.SSRC))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought it is primary first and then RTX like the code you had before. Do I remember it wrong?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

WHIP WHEP example is broken
2 participants