Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
biglittlebigben committed Sep 1, 2023
2 parents daa2bd6 + ce275be commit 5315965
Show file tree
Hide file tree
Showing 12 changed files with 919 additions and 714 deletions.
2 changes: 1 addition & 1 deletion livekit/livekit_analytics.pb.go

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

2 changes: 1 addition & 1 deletion livekit/livekit_analytics_grpc.pb.go

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

879 changes: 456 additions & 423 deletions livekit/livekit_egress.pb.go

Large diffs are not rendered by default.

356 changes: 179 additions & 177 deletions livekit/livekit_egress.twirp.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion livekit/livekit_ingress.pb.go

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

2 changes: 1 addition & 1 deletion livekit/livekit_internal.pb.go

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

354 changes: 254 additions & 100 deletions livekit/livekit_models.pb.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion livekit/livekit_room.pb.go

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

2 changes: 1 addition & 1 deletion livekit/livekit_rtc.pb.go

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

2 changes: 1 addition & 1 deletion livekit/livekit_webhook.pb.go

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

7 changes: 5 additions & 2 deletions livekit_egress.proto
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ message SegmentedFileOutput {
SegmentedFileProtocol protocol = 1; // (optional)
string filename_prefix = 2; // (optional)
string playlist_name = 3; // (optional)
string live_playlist_name = 11; // (optional, disabled if not provided). Path of a live playlist
uint32 segment_duration = 4; // in seconds (optional)
SegmentedFileSuffix filename_suffix = 10; // (optional, default INDEX)
bool disable_manifest = 8; // disable upload of manifest file (default false)
Expand Down Expand Up @@ -196,8 +197,8 @@ enum ImageFileSuffix {

message ImageOutput {
uint32 capture_interval = 1; // in seconds (required)
int32 width = 2; // (required)
int32 height = 3; // (required)
int32 width = 2; // (optional, defaults to track width)
int32 height = 3; // (optional, defaults to track height)
string filename_prefix = 4; // (optional)
ImageFileSuffix filename_suffix = 5; // (optional, default INDEX)
ImageCodec image_codec = 6; // (optional)
Expand Down Expand Up @@ -374,9 +375,11 @@ message FileInfo {

message SegmentsInfo {
string playlist_name = 1;
string live_playlist_name = 8;
int64 duration = 2;
int64 size = 3;
string playlist_location = 4;
string live_playlist_location = 9;
int64 segment_count = 5;
int64 started_at = 6;
int64 ended_at = 7;
Expand Down
23 changes: 18 additions & 5 deletions livekit_models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ enum VideoCodec {
}

enum ImageCodec {
DEFAULT_IC = 0;
JPEG = 1;
IC_DEFAULT_IC = 0;
IC_JPEG = 1;
}

message PlayoutDelay {
Expand Down Expand Up @@ -323,6 +323,19 @@ enum DisconnectReason {
JOIN_FAILURE = 7;
}

message RTPDrift {
google.protobuf.Timestamp start_time = 1;
google.protobuf.Timestamp end_time = 2;
double duration = 3;

uint64 start_timestamp = 4;
uint64 end_timestamp = 5;
uint64 rtp_clock_ticks = 6;
int64 drift_samples = 7;
double drift_ms = 8;
double clock_rate = 9;
}

message RTPStats {
google.protobuf.Timestamp start_time = 1;
google.protobuf.Timestamp end_time = 2;
Expand Down Expand Up @@ -383,9 +396,9 @@ message RTPStats {
uint32 layer_lock_plis = 35;
google.protobuf.Timestamp last_layer_lock_pli = 36;

double sample_rate = 42;
double drift_ms = 43;
// NEXT_ID: 44
RTPDrift packet_drift = 44;
RTPDrift report_drift = 45;
// NEXT_ID: 46
}

message TimedVersion {
Expand Down

0 comments on commit 5315965

Please sign in to comment.