blob: e99ebc0a0dd1c475050d8ab76f416617b730691b [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VOICE_ENGINE_VOE_NETEQ_STATS_IMPL_H
12#define WEBRTC_VOICE_ENGINE_VOE_NETEQ_STATS_IMPL_H
13
pbos@webrtc.org471ae722013-05-21 13:52:32 +000014#include "webrtc/voice_engine/include/voe_neteq_stats.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000015
pbos@webrtc.org471ae722013-05-21 13:52:32 +000016#include "webrtc/voice_engine/shared_data.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000017
18namespace webrtc {
19
20class VoENetEqStatsImpl : public VoENetEqStats
21{
22public:
23 virtual int GetNetworkStatistics(int channel,
24 NetworkStatistics& stats);
25
26protected:
27 VoENetEqStatsImpl(voe::SharedData* shared);
28 virtual ~VoENetEqStatsImpl();
29
30private:
31 voe::SharedData* _shared;
32};
33
34} // namespace webrtc
35
36#endif // WEBRTC_VOICE_ENGINE_VOE_NETEQ_STATS_IMPL_H