-
Notifications
You must be signed in to change notification settings - Fork 861
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
Added information about maximum payload size #459
Conversation
Earlier versions of SRT had a default MSS of 1500 bytes and it has never been a subject of discussion. |
This is still in force, but doesn't tell the user much about how much is the size of a payload. |
|
docs/live-streaming.md
Outdated
@@ -24,7 +24,10 @@ transport unit size for SRT, and it is also often used when sending MPEG-TS over | |||
Note that SRT isn't limited to MPEG-TS -- it can be applied to any "live streaming" data | |||
transmission (as long as you use Live mode, which is the SRT default mode). You can use | |||
any other suitable data format, and any intermediate protocol on top of MPEG-TS with | |||
an extra header (you still have an extra 140 bytes per unit for that purpose). | |||
an extra header (if you want to do this - as people often try this with RTP - note |
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.
an extra header (if you want to do this - as people often try this with RTP - note | |
an extra header (this is an option that people often try with RTP) - note |
docs/live-streaming.md
Outdated
@@ -24,7 +24,10 @@ transport unit size for SRT, and it is also often used when sending MPEG-TS over | |||
Note that SRT isn't limited to MPEG-TS -- it can be applied to any "live streaming" data | |||
transmission (as long as you use Live mode, which is the SRT default mode). You can use | |||
any other suitable data format, and any intermediate protocol on top of MPEG-TS with | |||
an extra header (you still have an extra 140 bytes per unit for that purpose). | |||
an extra header (if you want to do this - as people often try this with RTP - note | |||
that 1316 is the default maximum payload size, which can be changed using |
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.
that 1316 is the default maximum payload size, which can be changed using | |
that 1316 is the default maximum payload size, which can be changed using the |
People get often confused about the maximum payload size in SRT when trying to send RTP over SRT; this could be at least as a reference information what to be aware of in this case.