Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions livekit/livekit_models.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion protobufs/livekit_models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ message ParticipantInfo {
DisconnectReason disconnect_reason = 16;
repeated KindDetail kind_details = 18;

// NEXT_ID: 19
// NEXT_ID: 19
}

enum TrackType {
Expand Down Expand Up @@ -257,6 +257,7 @@ message VideoLayer {
MODE_UNUSED = 0;
ONE_SPATIAL_LAYER_PER_STREAM = 1;
MULTIPLE_SPATIAL_LAYERS_PER_STREAM = 2;
ONE_SPATIAL_LAYER_PER_STREAM_INCOMPLETE_RTCP_SR = 3;
}

// for tracks with a single layer, this should be HIGH
Expand Down
14 changes: 13 additions & 1 deletion protobufs/rpc/ingress.proto
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,14 @@ service IngressHandler {
rpc ICERestartWHIPResource(ICERestartWHIPResourceRequest) returns (ICERestartWHIPResourceResponse) {
option (psrpc.options).topics = true;
};

rpc WHIPRTCConnectionNotify(WHIPRTCConnectionNotifyRequest) returns (google.protobuf.Empty) {
option (psrpc.options) = {
topics: true
topic_params: {
single_server: true;
}
};
};
}

message ListActiveIngressRequest {}
Expand Down Expand Up @@ -86,6 +93,11 @@ message ICERestartWHIPResourceResponse {
string etag = 2;
}

message WHIPRTCConnectionNotifyRequest {
string participant_id = 1;
bool closed = 2;
}

message StartIngressRequest {
livekit.IngressInfo info = 1;
string token = 2;
Expand Down
2 changes: 2 additions & 0 deletions protobufs/rpc/whip_signal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ message WHIPCreateRequest {
livekit.StartSession start_session = 1;
string offer_sdp = 2;
map<string, TrackList> subscribed_participant_tracks = 3;
bool from_ingress = 4;
}

message WHIPCreateResponse {
Expand Down Expand Up @@ -101,4 +102,5 @@ message WHIPParticipantDeleteSessionRequest {
string room = 1;
string participant_identity = 2;
string participant_id = 3;
bool from_sweeper = 4;
}
140 changes: 100 additions & 40 deletions rpc/ingress.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading