Lines Matching defs:VideoStatistics
82 struct VideoStatistics { struct
88 size_t target_bitrate_kbps = 0;
89 float input_framerate_fps = 0.0f;
91 size_t spatial_idx = 0;
92 size_t temporal_idx = 0;
94 size_t width = 0;
95 size_t height = 0;
97 size_t length_bytes = 0;
98 size_t bitrate_kbps = 0;
99 float framerate_fps = 0;
101 float enc_speed_fps = 0.0f;
102 float dec_speed_fps = 0.0f;
104 float avg_encode_latency_sec = 0.0f;
105 float max_encode_latency_sec = 0.0f;
106 float avg_decode_latency_sec = 0.0f;
107 float max_decode_latency_sec = 0.0f;
109 float avg_delay_sec = 0.0f;
110 float max_key_frame_delay_sec = 0.0f;
111 float max_delta_frame_delay_sec = 0.0f;
112 float time_to_reach_target_bitrate_sec = 0.0f;
113 float avg_bitrate_mismatch_pct = 0.0f;
114 float avg_framerate_mismatch_pct = 0.0f;
116 float avg_key_frame_size_bytes = 0.0f;
140 virtual std::vector<VideoStatistics> SliceAndCalcLayerVideoStatistic( argument