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

Side by Side Diff: webrtc/pc/rtcstatscollector.h

Issue 2675923002: RTCIceCandidatePairStats.available[Outgoing/Incoming]Bitrate collected. (Closed)
Patch Set: Rebase with master Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « webrtc/pc/rtcstats_integrationtest.cc ('k') | webrtc/pc/rtcstatscollector.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 // Produces |RTCCodecStats|. 98 // Produces |RTCCodecStats|.
99 void ProduceCodecStats_n( 99 void ProduceCodecStats_n(
100 int64_t timestamp_us, const TrackMediaInfoMap& track_media_info_map, 100 int64_t timestamp_us, const TrackMediaInfoMap& track_media_info_map,
101 RTCStatsReport* report) const; 101 RTCStatsReport* report) const;
102 // Produces |RTCDataChannelStats|. 102 // Produces |RTCDataChannelStats|.
103 void ProduceDataChannelStats_s( 103 void ProduceDataChannelStats_s(
104 int64_t timestamp_us, RTCStatsReport* report) const; 104 int64_t timestamp_us, RTCStatsReport* report) const;
105 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|. 105 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|.
106 void ProduceIceCandidateAndPairStats_n( 106 void ProduceIceCandidateAndPairStats_n(
107 int64_t timestamp_us, const SessionStats& session_stats, 107 int64_t timestamp_us, const SessionStats& session_stats,
108 const cricket::VideoMediaInfo* video_media_info,
108 RTCStatsReport* report) const; 109 RTCStatsReport* report) const;
109 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|. 110 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|.
110 void ProduceMediaStreamAndTrackStats_s( 111 void ProduceMediaStreamAndTrackStats_s(
111 int64_t timestamp_us, RTCStatsReport* report) const; 112 int64_t timestamp_us, RTCStatsReport* report) const;
112 // Produces |RTCPeerConnectionStats|. 113 // Produces |RTCPeerConnectionStats|.
113 void ProducePeerConnectionStats_s( 114 void ProducePeerConnectionStats_s(
114 int64_t timestamp_us, RTCStatsReport* report) const; 115 int64_t timestamp_us, RTCStatsReport* report) const;
115 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|. 116 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|.
116 void ProduceRTPStreamStats_n( 117 void ProduceRTPStreamStats_n(
117 int64_t timestamp_us, const SessionStats& session_stats, 118 int64_t timestamp_us, const SessionStats& session_stats,
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 }; 184 };
184 185
185 const char* CandidateTypeToRTCIceCandidateTypeForTesting( 186 const char* CandidateTypeToRTCIceCandidateTypeForTesting(
186 const std::string& type); 187 const std::string& type);
187 const char* DataStateToRTCDataChannelStateForTesting( 188 const char* DataStateToRTCDataChannelStateForTesting(
188 DataChannelInterface::DataState state); 189 DataChannelInterface::DataState state);
189 190
190 } // namespace webrtc 191 } // namespace webrtc
191 192
192 #endif // WEBRTC_PC_RTCSTATSCOLLECTOR_H_ 193 #endif // WEBRTC_PC_RTCSTATSCOLLECTOR_H_
OLDNEW
« no previous file with comments | « webrtc/pc/rtcstats_integrationtest.cc ('k') | webrtc/pc/rtcstatscollector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698