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

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

Issue 1804133003: Delete unused VideoCapturer statistics. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Address nits. Update both copies of AVFoundationVideoCapturer.' Created 4 years, 9 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 | « webrtc/api/objc/avfoundationvideocapturer.mm ('k') | webrtc/media/base/videocapturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/base/mediachannel.h
diff --git a/webrtc/media/base/mediachannel.h b/webrtc/media/base/mediachannel.h
index d7aefe54ec4f238b0bb006a83968c69cdc0ab10b..a16c702ed88fd426637855c4366a222da2bc26f0 100644
--- a/webrtc/media/base/mediachannel.h
+++ b/webrtc/media/base/mediachannel.h
@@ -520,20 +520,6 @@ struct MediaSenderInfo {
std::vector<SsrcReceiverInfo> remote_stats;
};
-template<class T>
-struct VariableInfo {
- VariableInfo()
- : min_val(),
- mean(0.0),
- max_val(),
- variance(0.0) {
- }
- T min_val;
- double mean;
- T max_val;
- double variance;
-};
-
struct MediaReceiverInfo {
MediaReceiverInfo()
: bytes_rcvd(0),
@@ -688,9 +674,6 @@ struct VideoSenderInfo : public MediaSenderInfo {
int adapt_changes;
int avg_encode_ms;
int encode_usage_percent;
- VariableInfo<int> adapt_frame_drops;
- VariableInfo<int> effects_frame_drops;
- VariableInfo<double> capturer_frame_time;
};
struct VideoReceiverInfo : public MediaReceiverInfo {
« no previous file with comments | « webrtc/api/objc/avfoundationvideocapturer.mm ('k') | webrtc/media/base/videocapturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698