-
Notifications
You must be signed in to change notification settings - Fork 113
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
H264 spreader #194
base: master
Are you sure you want to change the base?
H264 spreader #194
Conversation
@@ -0,0 +1,401 @@ | |||
/* |
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.
Not sure where this struct/file should go ? Top folder ? A new internal package ?
@@ -1,2 +1,16 @@ | |||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= |
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.
I added ‘stretchr/testify’ to get more concise tests. However, I get the feeling it will be frown upon because it brings too many dependencies ?
Ok, it looks like there is little interest for this PR/feature, so closing it. |
Hi @jvary i would like to take this! I am just very overwhelmed with PRs |
I will review and address all issues myself :) |
Oh! Glad there is interest! |
REQUEST FOR COMMENTS:
H264 spreader : reduces the RTP payload size so 3rd parties RTP sources can be properly redirected over SRTP/WebRTC without IP fragmentation.
High level steps:
The steps above handle :
Advantages vs building whole H264 Frame as you initially proposed:
Future improvement: back-buffer to persist between Process(), to avoid making new buffer for each new returned RTP.
[email protected]