diff --git a/test/pc/e2e/analyzer/video/default_video_quality_analyzer.cc b/test/pc/e2e/analyzer/video/default_video_quality_analyzer.cc index 30d021bbeb..ca5e09ff90 100644 --- a/test/pc/e2e/analyzer/video/default_video_quality_analyzer.cc +++ b/test/pc/e2e/analyzer/video/default_video_quality_analyzer.cc @@ -627,6 +627,11 @@ void DefaultVideoQualityAnalyzer::ReportResults( test::PrintResult("dropped_frames", "", test_case_name, frame_counters.dropped, "count", /*important=*/false); + test::PrintResult("frames_in_flight", "", test_case_name, + frame_counters.captured - frame_counters.rendered - + frame_counters.dropped, + "count", + /*important=*/false); ReportResult("max_skipped", test_case_name, stats.skipped_between_rendered, "count"); }