-
Notifications
You must be signed in to change notification settings - Fork 63
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
[FlexFec] Adding support for FlexFec RFC-03 #214
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly> | ||
// SPDX-License-Identifier: MIT | ||
|
||
package flexfec | ||
|
||
import ( | ||
"github.com/pion/interceptor" | ||
"github.com/pion/rtp" | ||
) | ||
|
||
// FecInterceptor implements FlexFec. | ||
type FecInterceptor struct { | ||
interceptor.NoOp | ||
flexFecEncoder FlexEncoder | ||
packetBuffer []rtp.Packet | ||
minNumMediaPackets uint32 | ||
} | ||
|
||
// FecOption can be used to set initial options on Fec encoder interceptors. | ||
type FecOption func(d *FecInterceptor) error | ||
|
||
// FecInterceptorFactory creates new FecInterceptors. | ||
type FecInterceptorFactory struct { | ||
opts []FecOption | ||
} | ||
|
||
// NewFecInterceptor returns a new Fec interceptor factory. | ||
func NewFecInterceptor(opts ...FecOption) (*FecInterceptorFactory, error) { | ||
return &FecInterceptorFactory{opts: opts}, nil | ||
} | ||
|
||
// NewInterceptor constructs a new FecInterceptor. | ||
func (r *FecInterceptorFactory) NewInterceptor(_ string) (interceptor.Interceptor, error) { | ||
// Hardcoded for now: | ||
// Min num media packets to encode FEC -> 5 | ||
// Min num fec packets -> 1 | ||
|
||
interceptor := &FecInterceptor{ | ||
packetBuffer: make([]rtp.Packet, 0), | ||
minNumMediaPackets: 5, | ||
} | ||
return interceptor, nil | ||
} | ||
|
||
// BindLocalStream lets you modify any outgoing RTP packets. It is called once for per LocalStream. The returned method | ||
// will be called once per rtp packet. | ||
func (r *FecInterceptor) BindLocalStream(info *interceptor.StreamInfo, writer interceptor.RTPWriter) interceptor.RTPWriter { | ||
// Chromium supports version flexfec-03 of existing draft, this is the one we will configure by default | ||
// although we should support configuring the latest (flexfec-20) as well. | ||
r.flexFecEncoder = NewFlexEncoder03(info.PayloadType, info.SSRC) | ||
|
||
return interceptor.RTPWriterFunc(func(header *rtp.Header, payload []byte, attributes interceptor.Attributes) (int, error) { | ||
r.packetBuffer = append(r.packetBuffer, rtp.Packet{ | ||
Header: *header, | ||
Payload: payload, | ||
}) | ||
|
||
// Send the media RTP packet | ||
result, err := writer.Write(header, payload, attributes) | ||
|
||
// Send the FEC packets | ||
var fecPackets []rtp.Packet | ||
if len(r.packetBuffer) == int(r.minNumMediaPackets) { | ||
fecPackets = r.flexFecEncoder.EncodeFec(r.packetBuffer, 2) | ||
|
||
for _, fecPacket := range fecPackets { | ||
fecResult, fecErr := writer.Write(&fecPacket.Header, fecPacket.Payload, attributes) | ||
|
||
if fecErr != nil && fecResult == 0 { | ||
break | ||
} | ||
} | ||
// Reset the packet buffer now that we've sent the corresponding FEC packets. | ||
r.packetBuffer = nil | ||
} | ||
|
||
return result, err | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be configurable