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
570 changes: 237 additions & 333 deletions protobuf/video/sfu/models/models.pb.go

Large diffs are not rendered by default.

19 changes: 8 additions & 11 deletions protobuf/video/sfu/models/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -401,19 +401,16 @@ enum AppleThermalState {
APPLE_THERMAL_STATE_CRITICAL = 4;
}

// EncodeStats represents the encoding statistics for a track.
message EncodeStats {
// PerformanceStats represents the encoding/decoding statistics for a track.
message PerformanceStats {
// the type of the track (e.g., video, audio, screen share)
TrackType track_type = 1;
// the codec used for the track
Codec codec = 2;
float avg_frame_encode_time_ms = 3;
float avg_fps = 4;
}

// DecodeStats represents the decoding statistics for a track.
message DecodeStats {
TrackType track_type = 1;
Codec codec = 2;
float avg_frame_decode_time_ms = 3;
// the average encode/decode time in ms
float avg_frame_time_ms = 3;
// the average fps for the track
float avg_fps = 4;
// the track dimensions
VideoDimension video_dimension = 5;
}
237 changes: 12 additions & 225 deletions protobuf/video/sfu/models/models_vtproto.pb.go

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

Loading