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

Side by Side Diff: webrtc/modules/audio_coding/include/audio_coding_module.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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 // to the time this API is called) will not be included in the list. 816 // to the time this API is called) will not be included in the list.
817 // 817 //
818 // Negative |round_trip_time_ms| results is an error message and empty list 818 // Negative |round_trip_time_ms| results is an error message and empty list
819 // is returned. 819 // is returned.
820 // 820 //
821 virtual std::vector<uint16_t> GetNackList( 821 virtual std::vector<uint16_t> GetNackList(
822 int64_t round_trip_time_ms) const = 0; 822 int64_t round_trip_time_ms) const = 0;
823 823
824 virtual void GetDecodingCallStatistics( 824 virtual void GetDecodingCallStatistics(
825 AudioDecodingCallStats* call_stats) const = 0; 825 AudioDecodingCallStats* call_stats) const = 0;
826
827 virtual ANAStats GetANAStats() const = 0;
826 }; 828 };
827 829
828 } // namespace webrtc 830 } // namespace webrtc
829 831
830 #endif // WEBRTC_MODULES_AUDIO_CODING_INCLUDE_AUDIO_CODING_MODULE_H_ 832 #endif // WEBRTC_MODULES_AUDIO_CODING_INCLUDE_AUDIO_CODING_MODULE_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc ('k') | webrtc/pc/statscollector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698