Lines Matching defs:VideoStatistics
77 struct VideoStatistics { struct
80 size_t target_bitrate_kbps = 0;
81 float input_framerate_fps = 0.0f;
83 size_t spatial_idx = 0;
84 size_t temporal_idx = 0;
86 size_t width = 0;
87 size_t height = 0;
89 size_t length_bytes = 0;
90 size_t bitrate_kbps = 0;
91 float framerate_fps = 0;
93 float enc_speed_fps = 0.0f;
94 float dec_speed_fps = 0.0f;
96 float avg_delay_sec = 0.0f;
97 float max_key_frame_delay_sec = 0.0f;
98 float max_delta_frame_delay_sec = 0.0f;
99 float time_to_reach_target_bitrate_sec = 0.0f;
101 float avg_key_frame_size_bytes = 0.0f;
125 virtual std::vector<VideoStatistics> SliceAndCalcLayerVideoStatistic( argument