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
230 video_stat.length_bytes += frame_stat.length_bytes; in SliceAndCalcVideoStatistic()
233 ++video_stat.num_encoded_frames; in SliceAndCalcVideoStatistic()
237 ++video_stat.num_key_frames; in SliceAndCalcVideoStatistic()
245 video_stat.max_nalu_size_bytes = std::max(video_stat.max_nalu_size_bytes, in SliceAndCalcVideoStatistic()
250 ++video_stat.num_decoded_frames; in SliceAndCalcVideoStatistic()
252 video_stat.width = std::max(video_stat.width, frame_stat.decoded_width); in SliceAndCalcVideoStatistic()
253 video_stat.height = in SliceAndCalcVideoStatistic()
254 std::max(video_stat.height, frame_stat.decoded_height); in SliceAndCalcVideoStatistic()
256 if (video_stat.num_decoded_frames > 1) { in SliceAndCalcVideoStatistic()
[all …]
Dvideocodec_test_fixture_impl.cc634 const VideoStatistics& video_stat, in VerifyVideoStatistic() argument
642 100 * std::fabs(1.0f * video_stat.bitrate_kbps - target_bitrate_kbps) / in VerifyVideoStatistic()
645 100 * std::fabs(video_stat.framerate_fps - input_framerate_fps) / in VerifyVideoStatistic()
649 EXPECT_LE(video_stat.time_to_reach_target_bitrate_sec, in VerifyVideoStatistic()
653 EXPECT_LE(video_stat.avg_delay_sec, in VerifyVideoStatistic()
655 EXPECT_LE(video_stat.max_key_frame_delay_sec, in VerifyVideoStatistic()
657 EXPECT_LE(video_stat.max_delta_frame_delay_sec, in VerifyVideoStatistic()
659 EXPECT_LE(video_stat.num_spatial_resizes, in VerifyVideoStatistic()
661 EXPECT_LE(video_stat.num_key_frames, rc_thresholds->max_num_key_frames); in VerifyVideoStatistic()
665 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.cc70 const RTCInboundRTPStreamStats* video_stat = pair.second[1]; in OnStatsReports() local
73 video_stat->kind.is_defined() && in OnStatsReports()
74 *audio_stat->kind != *video_stat->kind) in OnStatsReports()
78 std::swap(audio_stat, video_stat); in OnStatsReports()
88 *video_stat->track_id); in OnStatsReports()
100 *video_stat->estimated_playout_timestamp; in OnStatsReports()