-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat: Add RTSPS (TLS) and SDES-SRTP support for RTSP pull streams #2004
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
b006101
666ff85
002f2c3
1e32d48
e8c3498
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -944,6 +944,10 @@ namespace ocst | |
| { | ||
| type = ProviderType::RtspPull; | ||
| } | ||
| else if (lower_scheme == "rtsps") | ||
| { | ||
| type = ProviderType::RtspPull; | ||
| } | ||
|
Comment on lines
969
to
+975
|
||
| else if (lower_scheme == "ovt") | ||
| { | ||
| type = ProviderType::Ovt; | ||
|
|
||
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.
It creates only the recv session and does not set up _send_session. Since OnDataReceivedFromPrevNode() immediately returns false when _send_session is null, all RTCP Receiver Reports sent from OME to the camera are dropped. In SDES-SRTP, key negotiation for OME's outgoing stream and initialization of _send_session are required.
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.
Again, no input from my side on this one:
Copilot response:
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.
Fixed in commit: e8c3498