blob: 0d8ce50eb8f2cb32dd310cc74c0298d45a2d7322 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
tommi@webrtc.org851becd2012-04-04 14:57:19 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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
pbos@webrtc.org956aa7e2013-05-21 13:52:32 +000011#include "webrtc/voice_engine/voe_neteq_stats_impl.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000012
pbos@webrtc.org956aa7e2013-05-21 13:52:32 +000013#include "webrtc/modules/audio_coding/main/interface/audio_coding_module.h"
14#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
15#include "webrtc/system_wrappers/interface/trace.h"
16#include "webrtc/voice_engine/channel.h"
17#include "webrtc/voice_engine/include/voe_errors.h"
18#include "webrtc/voice_engine/voice_engine_impl.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000019
niklase@google.com470e71d2011-07-07 08:21:25 +000020namespace webrtc {
21
22VoENetEqStats* VoENetEqStats::GetInterface(VoiceEngine* voiceEngine)
23{
24#ifndef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
25 return NULL;
26#else
27 if (NULL == voiceEngine)
28 {
29 return NULL;
30 }
tommi@webrtc.org0989fb72013-02-15 15:07:32 +000031 VoiceEngineImpl* s = static_cast<VoiceEngineImpl*>(voiceEngine);
tommi@webrtc.orga990e122012-04-26 15:28:22 +000032 s->AddRef();
33 return s;
niklase@google.com470e71d2011-07-07 08:21:25 +000034#endif
35}
36
37#ifdef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
38
tommi@webrtc.org851becd2012-04-04 14:57:19 +000039VoENetEqStatsImpl::VoENetEqStatsImpl(voe::SharedData* shared) : _shared(shared)
niklase@google.com470e71d2011-07-07 08:21:25 +000040{
tommi@webrtc.org851becd2012-04-04 14:57:19 +000041 WEBRTC_TRACE(kTraceMemory, kTraceVoice, VoEId(_shared->instance_id(), -1),
niklase@google.com470e71d2011-07-07 08:21:25 +000042 "VoENetEqStatsImpl::VoENetEqStatsImpl() - ctor");
43}
44
45VoENetEqStatsImpl::~VoENetEqStatsImpl()
46{
tommi@webrtc.org851becd2012-04-04 14:57:19 +000047 WEBRTC_TRACE(kTraceMemory, kTraceVoice, VoEId(_shared->instance_id(), -1),
niklase@google.com470e71d2011-07-07 08:21:25 +000048 "VoENetEqStatsImpl::~VoENetEqStatsImpl() - dtor");
49}
50
niklase@google.com470e71d2011-07-07 08:21:25 +000051int VoENetEqStatsImpl::GetNetworkStatistics(int channel,
52 NetworkStatistics& stats)
53{
tommi@webrtc.org851becd2012-04-04 14:57:19 +000054 WEBRTC_TRACE(kTraceApiCall, kTraceVoice, VoEId(_shared->instance_id(), -1),
niklase@google.com470e71d2011-07-07 08:21:25 +000055 "GetNetworkStatistics(channel=%d, stats=?)", channel);
leozwang@webrtc.org26385772012-01-20 18:45:45 +000056
tommi@webrtc.org851becd2012-04-04 14:57:19 +000057 if (!_shared->statistics().Initialized())
niklase@google.com470e71d2011-07-07 08:21:25 +000058 {
tommi@webrtc.org851becd2012-04-04 14:57:19 +000059 _shared->SetLastError(VE_NOT_INITED, kTraceError);
niklase@google.com470e71d2011-07-07 08:21:25 +000060 return -1;
61 }
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000062 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
63 voe::Channel* channelPtr = ch.channel();
niklase@google.com470e71d2011-07-07 08:21:25 +000064 if (channelPtr == NULL)
65 {
tommi@webrtc.org851becd2012-04-04 14:57:19 +000066 _shared->SetLastError(VE_CHANNEL_NOT_VALID, kTraceError,
niklase@google.com470e71d2011-07-07 08:21:25 +000067 "GetNetworkStatistics() failed to locate channel");
68 return -1;
69 }
70
71 return channelPtr->GetNetworkStatistics(stats);
72}
73
wu@webrtc.org24301a62013-12-13 19:17:43 +000074int VoENetEqStatsImpl::GetDecodingCallStatistics(
75 int channel, AudioDecodingCallStats* stats) const {
wu@webrtc.org24301a62013-12-13 19:17:43 +000076
77 if (!_shared->statistics().Initialized()) {
78 _shared->SetLastError(VE_NOT_INITED, kTraceError);
79 return -1;
80 }
81 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
82 voe::Channel* channelPtr = ch.channel();
83 if (channelPtr == NULL) {
84 _shared->SetLastError(VE_CHANNEL_NOT_VALID, kTraceError,
85 "GetDecodingCallStatistics() failed to locate "
86 "channel");
87 return -1;
88 }
89
90 channelPtr->GetDecodingCallStatistics(stats);
91 return 0;
92}
93
niklase@google.com470e71d2011-07-07 08:21:25 +000094#endif // #ifdef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
95
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +000096} // namespace webrtc