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

Unified Diff: talk/media/base/mediachannel.h

Issue 1420963005: Add QP stats for received video streams to StatsReport. Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: add unit test Created 5 years, 1 month 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 | « talk/app/webrtc/statstypes.cc ('k') | talk/media/webrtc/webrtcvideoengine2.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/base/mediachannel.h
diff --git a/talk/media/base/mediachannel.h b/talk/media/base/mediachannel.h
index 14660847fa2114b0138a4cfcdf33440d58f86f26..2e36ccfe9a199064260faf2be9645cc270c1a08c 100644
--- a/talk/media/base/mediachannel.h
+++ b/talk/media/base/mediachannel.h
@@ -861,7 +861,8 @@ struct VideoReceiverInfo : public MediaReceiverInfo {
render_delay_ms(0),
target_delay_ms(0),
current_delay_ms(0),
- capture_start_ntp_time_ms(-1) {
+ capture_start_ntp_time_ms(-1),
+ qp(-1) {
}
std::vector<SsrcGroup> ssrc_groups;
@@ -901,6 +902,8 @@ struct VideoReceiverInfo : public MediaReceiverInfo {
// Estimated capture start time in NTP time in ms.
int64_t capture_start_ntp_time_ms;
+ // Average codec quantizer value.
+ int qp;
};
struct DataSenderInfo : public MediaSenderInfo {
« no previous file with comments | « talk/app/webrtc/statstypes.cc ('k') | talk/media/webrtc/webrtcvideoengine2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698