-
Notifications
You must be signed in to change notification settings - Fork 134
Allow setting a list of SIP codecs for SDP. #1530
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: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -121,7 +121,8 @@ message InternalCreateSIPParticipantRequest { | |
| // Max call duration. | ||
| google.protobuf.Duration max_call_duration = 24; | ||
|
|
||
| livekit.SIPMediaEncryption media_encryption = 28; | ||
| livekit.SIPMediaEncryption media_encryption = 28 [deprecated = true]; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How widely used is this right now ?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just marking it as deprecated so it's easier to update in our codebase. The old parameter will still continue to work as this PR applies it for both forward and backward compatibility. |
||
| livekit.SIPMediaConfig media = 34; | ||
|
|
||
| // Wait for the answer for the call before returning. | ||
| bool wait_until_answered = 29; | ||
|
|
@@ -143,7 +144,7 @@ message InternalCreateSIPParticipantRequest { | |
| // Project-level feature flags from ProjectSettings.FeatureFlags | ||
| map<string, string> feature_flags = 33; | ||
|
|
||
| // NEXT ID: 34 | ||
| // NEXT ID: 35 | ||
| } | ||
|
|
||
| message InternalCreateSIPParticipantResponse { | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
What else might we potentially add here in the future ?
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.
Krisp is an obvious one we should move here, although I'm not sure how it should look like. Krisp shouldn't be a flag as it is right now, it's better if we allow user to pick from multiple noise cancellation (or other) models. But that would be a bigger change.