feat: add ffi datachannel & mute events (#88)

This commit is contained in:
Théo Monnom
2023-06-18 22:45:05 +02:00
committed by GitHub
parent 33dfcb27b0
commit 25f4c9a075
69 changed files with 1934 additions and 1546 deletions
+2 -1
View File
@@ -128,7 +128,8 @@ impl EgressClient {
file_outputs,
stream_outputs,
segment_outputs,
output: None, // Deprecated
output: None, // Deprecated
await_start_signal: false, // TODO Expose
},
self.base.auth_header(VideoGrants {
room_record: true,
+3 -1
View File
@@ -57,6 +57,7 @@ impl IngressClient {
participant_name: options.participant_name,
audio: Some(options.audio),
video: Some(options.video),
bypass_transcoding: false, // TODO Expose
},
self.base.auth_header(VideoGrants {
ingress_admin: true,
@@ -84,6 +85,7 @@ impl IngressClient {
participant_name: options.participant_name,
audio: Some(options.audio),
video: Some(options.video),
bypass_transcoding: None, // TODO Expose
},
self.base.auth_header(VideoGrants {
ingress_admin: true,
@@ -104,7 +106,7 @@ impl IngressClient {
SVC,
"ListIngress",
proto::ListIngressRequest {
room_name: match filter{
room_name: match filter {
IngressListFilter::All => Default::default(),
IngressListFilter::Room(room) => room,
},