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

Side by Side Diff: webrtc/voice_engine/channel_proxy.h

Issue 3011623002: Add new ANA stats to GetStats() to count the number of actions taken by each controller. (Closed)
Patch Set: Fix for failing test. Created 3 years, 3 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/voice_engine/channel.cc ('k') | webrtc/voice_engine/channel_proxy.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 (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 RtpTransportControllerSendInterface* transport, 74 RtpTransportControllerSendInterface* transport,
75 RtcpBandwidthObserver* bandwidth_observer); 75 RtcpBandwidthObserver* bandwidth_observer);
76 virtual void RegisterReceiverCongestionControlObjects( 76 virtual void RegisterReceiverCongestionControlObjects(
77 PacketRouter* packet_router); 77 PacketRouter* packet_router);
78 virtual void ResetSenderCongestionControlObjects(); 78 virtual void ResetSenderCongestionControlObjects();
79 virtual void ResetReceiverCongestionControlObjects(); 79 virtual void ResetReceiverCongestionControlObjects();
80 virtual CallStatistics GetRTCPStatistics() const; 80 virtual CallStatistics GetRTCPStatistics() const;
81 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; 81 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const;
82 virtual NetworkStatistics GetNetworkStatistics() const; 82 virtual NetworkStatistics GetNetworkStatistics() const;
83 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; 83 virtual AudioDecodingCallStats GetDecodingCallStatistics() const;
84 virtual ANAStats GetANAStatistics() const;
84 virtual int GetSpeechOutputLevel() const; 85 virtual int GetSpeechOutputLevel() const;
85 virtual int GetSpeechOutputLevelFullRange() const; 86 virtual int GetSpeechOutputLevelFullRange() const;
86 // See description of "totalAudioEnergy" in the WebRTC stats spec: 87 // See description of "totalAudioEnergy" in the WebRTC stats spec:
87 // https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudio energy 88 // https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudio energy
88 virtual double GetTotalOutputEnergy() const; 89 virtual double GetTotalOutputEnergy() const;
89 virtual double GetTotalOutputDuration() const; 90 virtual double GetTotalOutputDuration() const;
90 virtual uint32_t GetDelayEstimate() const; 91 virtual uint32_t GetDelayEstimate() const;
91 virtual bool SetSendTelephoneEventPayloadType(int payload_type, 92 virtual bool SetSendTelephoneEventPayloadType(int payload_type,
92 int payload_frequency); 93 int payload_frequency);
93 virtual bool SendTelephoneEventOutband(int event, int duration_ms); 94 virtual bool SendTelephoneEventOutband(int event, int duration_ms);
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 rtc::RaceChecker audio_thread_race_checker_; 143 rtc::RaceChecker audio_thread_race_checker_;
143 rtc::RaceChecker video_capture_thread_race_checker_; 144 rtc::RaceChecker video_capture_thread_race_checker_;
144 ChannelOwner channel_owner_; 145 ChannelOwner channel_owner_;
145 146
146 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); 147 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy);
147 }; 148 };
148 } // namespace voe 149 } // namespace voe
149 } // namespace webrtc 150 } // namespace webrtc
150 151
151 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 152 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/voice_engine/channel.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698