Home
last modified time | relevance | path

Searched refs:video_stat (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/video_coding/codecs/test/
Dvideocodec_test_stats_impl.cc179 VideoStatistics video_stat; in SliceAndCalcVideoStatistic() local
229 video_stat.length_bytes += frame_stat.length_bytes; in SliceAndCalcVideoStatistic()
232 ++video_stat.num_encoded_frames; in SliceAndCalcVideoStatistic()
236 ++video_stat.num_key_frames; in SliceAndCalcVideoStatistic()
244 video_stat.max_nalu_size_bytes = std::max(video_stat.max_nalu_size_bytes, in SliceAndCalcVideoStatistic()
249 ++video_stat.num_decoded_frames; in SliceAndCalcVideoStatistic()
251 video_stat.width = std::max(video_stat.width, frame_stat.decoded_width); in SliceAndCalcVideoStatistic()
252 video_stat.height = in SliceAndCalcVideoStatistic()
253 std::max(video_stat.height, frame_stat.decoded_height); in SliceAndCalcVideoStatistic()
261 if (video_stat.num_decoded_frames > 1) { in SliceAndCalcVideoStatistic()
[all …]
Dvideocodec_test_fixture_impl.cc549 const VideoStatistics& video_stat, in VerifyVideoStatistic() argument
557 100 * std::fabs(1.0f * video_stat.bitrate_kbps - target_bitrate_kbps) / in VerifyVideoStatistic()
560 100 * std::fabs(video_stat.framerate_fps - input_framerate_fps) / in VerifyVideoStatistic()
564 EXPECT_LE(video_stat.time_to_reach_target_bitrate_sec, in VerifyVideoStatistic()
568 EXPECT_LE(video_stat.avg_delay_sec, in VerifyVideoStatistic()
570 EXPECT_LE(video_stat.max_key_frame_delay_sec, in VerifyVideoStatistic()
572 EXPECT_LE(video_stat.max_delta_frame_delay_sec, in VerifyVideoStatistic()
574 EXPECT_LE(video_stat.num_spatial_resizes, in VerifyVideoStatistic()
576 EXPECT_LE(video_stat.num_key_frames, rc_thresholds->max_num_key_frames); in VerifyVideoStatistic()
580 EXPECT_GT(video_stat.avg_psnr, quality_thresholds->min_avg_psnr); in VerifyVideoStatistic()
[all …]
Dvideocodec_test_fixture_impl.h78 const VideoCodecTestStats::VideoStatistics& video_stat,
/external/webrtc/test/pc/e2e/
Dcross_media_metrics_reporter.cc56 const RTCInboundRTPStreamStats* video_stat = pair.second[1]; in OnStatsReports() local
59 video_stat->kind.is_defined() && in OnStatsReports()
60 *audio_stat->kind != *video_stat->kind) in OnStatsReports()
64 std::swap(audio_stat, video_stat); in OnStatsReports()
72 report->GetAs<RTCMediaStreamTrackStats>(*video_stat->track_id); in OnStatsReports()
84 *video_stat->estimated_playout_timestamp; in OnStatsReports()