Searched refs:StatsKey (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/test/pc/e2e/analyzer/video/ |
D | default_video_quality_analyzer.h | 134 struct StatsKey { struct 135 StatsKey(std::string stream_label, std::string sender, std::string receiver) in StatsKey() function 151 bool operator<(const StatsKey& a, const StatsKey& b); 152 bool operator==(const StatsKey& a, const StatsKey& b); 228 std::set<StatsKey> GetKnownVideoStreams() const; 232 std::map<StatsKey, FrameCounters> GetPerStreamCounters() const; 235 std::map<StatsKey, StreamStats> GetStats() const; 490 StatsKey ToStatsKey(const InternalStatsKey& key) const 494 std::string StatsKeyToMetricName(const StatsKey& key);
|
D | default_video_quality_analyzer.cc | 80 std::string StatsKey::ToString() const { in ToString() 86 bool operator<(const StatsKey& a, const StatsKey& b) { in operator <() 96 bool operator==(const StatsKey& a, const StatsKey& b) { in operator ==() 567 std::set<StatsKey> DefaultVideoQualityAnalyzer::GetKnownVideoStreams() const { in GetKnownVideoStreams() 570 std::set<StatsKey> out; in GetKnownVideoStreams() 584 std::map<StatsKey, FrameCounters> 587 std::map<StatsKey, FrameCounters> out; in GetPerStreamCounters() 594 std::map<StatsKey, StreamStats> DefaultVideoQualityAnalyzer::GetStats() const { in GetStats() 597 std::map<StatsKey, StreamStats> out; in GetStats() 898 StatsKey DefaultVideoQualityAnalyzer::ToStatsKey( in ToStatsKey() [all …]
|
D | default_video_quality_analyzer_test.cc | 476 std::map<StatsKey, StreamStats> stats = analyzer.GetStats(); in TEST() 477 const StatsKey kAliceBobStats(kStreamLabel, kAlice, kBob); in TEST() 478 const StatsKey kAliceCharlieStats(kStreamLabel, kAlice, kCharlie); in TEST()
|