Replies: 2 comments 3 replies
-
Most WebRTC clients send RTCP immediately upon connection, so this process is almost instantaneous. |
Beta Was this translation helpful? Give feedback.
1 reply
-
What about adding new option to api named "defaultRtpCalculationMethod" for fixing this behavior in manual mode? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After cheking logs i noticed, that server wait for 5 seconds to determine calculate method
Wait for RTCP SR for 5 seconds before starting the stream (stream.cpp:270)
then i commented all checks in function Stream::AjustRtpTimestamp and added string
_rtp_timestamp_method = RtpTimestampCalculationMethod::SINGLE_DELTA;
, recompile container and now stream starts after 2-3 seconds by webrtc vs 8-10 before
Can you add option to api named for example "defaultRtpCalculationMethod" which can be set method and disable useless waitings???
Beta Was this translation helpful? Give feedback.
All reactions