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
601 changes: 408 additions & 193 deletions protobuf/video/sfu/models/models.pb.go

Large diffs are not rendered by default.

19 changes: 18 additions & 1 deletion protobuf/video/sfu/models/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,21 @@ enum AppleThermalState {
APPLE_THERMAL_STATE_FAIR = 2;
APPLE_THERMAL_STATE_SERIOUS = 3;
APPLE_THERMAL_STATE_CRITICAL = 4;
}
}

// EncodeStats represents the encoding statistics for a track.
message EncodeStats {
TrackType track_type = 1;
Codec codec = 2;
int64 avg_frame_encode_time_ms = 3;
int64 avg_fps = 4;
}

// DecodeStats represents the decoding statistics for a track.
message DecodeStats {
TrackType track_type = 1;
Codec codec = 2;
int64 avg_frame_decode_time_ms = 3;
int64 avg_fps = 4;
VideoDimension video_dimension = 5;
}
Loading
Loading