/* * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef MODULES_AUDIO_CODING_NETEQ_STATISTICS_CALCULATOR_H_ #define MODULES_AUDIO_CODING_NETEQ_STATISTICS_CALCULATOR_H_ #include <deque> #include <string> #include "absl/strings/string_view.h" #include "api/neteq/neteq.h" namespace webrtc { class DelayManager; // This class handles various network statistics in NetEq. class StatisticsCalculator { … }; } // namespace webrtc #endif // MODULES_AUDIO_CODING_NETEQ_STATISTICS_CALCULATOR_H_