2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-04-04 14:57:19 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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 WEBRTC_VOICE_ENGINE_VOE_NETEQ_STATS_IMPL_H
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_VOE_NETEQ_STATS_IMPL_H
|
|
|
|
|
|
2013-05-21 13:52:32 +00:00
|
|
|
#include "webrtc/voice_engine/include/voe_neteq_stats.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-12-13 19:17:43 +00:00
|
|
|
#include "webrtc/common_types.h"
|
2013-05-21 13:52:32 +00:00
|
|
|
#include "webrtc/voice_engine/shared_data.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2012-04-26 15:28:22 +00:00
|
|
|
class VoENetEqStatsImpl : public VoENetEqStats
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual int GetNetworkStatistics(int channel,
|
|
|
|
|
NetworkStatistics& stats);
|
|
|
|
|
|
2013-12-13 19:17:43 +00:00
|
|
|
virtual int GetDecodingCallStatistics(
|
|
|
|
|
int channel, AudioDecodingCallStats* stats) const;
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
protected:
|
2012-04-04 14:57:19 +00:00
|
|
|
VoENetEqStatsImpl(voe::SharedData* shared);
|
2011-07-07 08:21:25 +00:00
|
|
|
virtual ~VoENetEqStatsImpl();
|
2012-04-04 14:57:19 +00:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
voe::SharedData* _shared;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_VOICE_ENGINE_VOE_NETEQ_STATS_IMPL_H
|