Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: talk/app/webrtc/statscollector.cc

Issue 1307633007: add mediaType field to ssrc stat (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: add tests Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | talk/app/webrtc/statscollector_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/statscollector.cc
diff --git a/talk/app/webrtc/statscollector.cc b/talk/app/webrtc/statscollector.cc
index 7f5f925b8218a1b81af276b52188d27e6f2f1161..df9806dfe72f5e933fbf76a458e3c8518705f6b2 100644
--- a/talk/app/webrtc/statscollector.cc
+++ b/talk/app/webrtc/statscollector.cc
@@ -175,6 +175,7 @@ void ExtractStats(const cricket::VoiceReceiverInfo& info, StatsReport* report) {
info.bytes_rcvd);
report->AddInt64(StatsReport::kStatsValueNameCaptureStartNtpTimeMs,
info.capture_start_ntp_time_ms);
+ report->AddString(StatsReport::kStatsValueNameMediaType, "audio");
tommi 2016/01/11 12:22:50 Can you move this to the top of the function? If
}
void ExtractStats(const cricket::VoiceSenderInfo& info, StatsReport* report) {
@@ -192,6 +193,7 @@ void ExtractStats(const cricket::VoiceSenderInfo& info, StatsReport* report) {
for (const auto& i : ints)
report->AddInt(i.name, i.value);
+ report->AddString(StatsReport::kStatsValueNameMediaType, "audio");
}
void ExtractStats(const cricket::VideoReceiverInfo& info, StatsReport* report) {
@@ -223,6 +225,7 @@ void ExtractStats(const cricket::VideoReceiverInfo& info, StatsReport* report) {
for (const auto& i : ints)
report->AddInt(i.name, i.value);
+ report->AddString(StatsReport::kStatsValueNameMediaType, "video");
}
void ExtractStats(const cricket::VideoSenderInfo& info, StatsReport* report) {
@@ -255,6 +258,7 @@ void ExtractStats(const cricket::VideoSenderInfo& info, StatsReport* report) {
for (const auto& i : ints)
report->AddInt(i.name, i.value);
+ report->AddString(StatsReport::kStatsValueNameMediaType, "video");
}
void ExtractStats(const cricket::BandwidthEstimationInfo& info,
« no previous file with comments | « no previous file | talk/app/webrtc/statscollector_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698