• Home
  • Raw
  • Download

Lines Matching refs:PrintResult

617   PrintResult("psnr", psnr_, "dB", ImproveDirection::kBiggerIsBetter);  in PrintResults()
618 PrintResult("ssim", ssim_, "unitless", ImproveDirection::kBiggerIsBetter); in PrintResults()
619 PrintResult("sender_time", sender_time_, "ms", in PrintResults()
621 PrintResult("receiver_time", receiver_time_, "ms", in PrintResults()
623 PrintResult("network_time", network_time_, "ms", in PrintResults()
625 PrintResult("total_delay_incl_network", end_to_end_, "ms", in PrintResults()
627 PrintResult("time_between_rendered_frames", rendered_delta_, "ms", in PrintResults()
629 PrintResult("encode_frame_rate", encode_frame_rate_, "fps", in PrintResults()
631 PrintResult("encode_time", encode_time_ms_, "ms", in PrintResults()
633 PrintResult("media_bitrate", media_bitrate_bps_, "bps", in PrintResults()
635 PrintResult("fec_bitrate", fec_bitrate_bps_, "bps", ImproveDirection::kNone); in PrintResults()
636 PrintResult("send_bandwidth", send_bandwidth_bps_, "bps", in PrintResults()
638 PrintResult("pixels_per_frame", pixels_, "count", in PrintResults()
641 test::PrintResult("decode_frame_rate", "", test_label_.c_str(), in PrintResults()
644 test::PrintResult("render_frame_rate", "", test_label_.c_str(), in PrintResults()
654 PrintResult("time_between_freezes", time_between_freezes_, "ms", in PrintResults()
664 test::PrintResult( in PrintResults()
675 test::PrintResult("freeze_count_per_minute", "", test_label_.c_str(), in PrintResults()
681 test::PrintResult("freeze_duration_average", "", test_label_.c_str(), in PrintResults()
688 test::PrintResult( in PrintResults()
695 test::PrintResult("min_psnr", "", test_label_.c_str(), worst_frame_->psnr, in PrintResults()
705 test::PrintResult("dropped_frames", "", test_label_.c_str(), dropped_frames_, in PrintResults()
707 test::PrintResult("cpu_usage", "", test_label_.c_str(), GetCpuUsagePercent(), in PrintResults()
714 PrintResult("memory_usage", memory_usage_, "sizeInBytes", in PrintResults()
733 PrintResult("audio_expand_rate", audio_expand_rate_, "unitless", in PrintResults()
735 PrintResult("audio_accelerate_rate", audio_accelerate_rate_, "unitless", in PrintResults()
737 PrintResult("audio_jitter_buffer", audio_jitter_buffer_ms_, "ms", in PrintResults()
818 void VideoAnalyzer::PrintResult( in PrintResult() function in webrtc::VideoAnalyzer