| Index: webrtc/voice_engine/voe_neteq_stats_impl.cc
|
| diff --git a/webrtc/voice_engine/voe_neteq_stats_impl.cc b/webrtc/voice_engine/voe_neteq_stats_impl.cc
|
| index bd84f8f742dbc6a1710d179a62f28926ed89a797..384292346bd126ae7c6675e5c70a5b713d4e8b8f 100644
|
| --- a/webrtc/voice_engine/voe_neteq_stats_impl.cc
|
| +++ b/webrtc/voice_engine/voe_neteq_stats_impl.cc
|
| @@ -16,27 +16,17 @@
|
| #include "webrtc/voice_engine/include/voe_errors.h"
|
| #include "webrtc/voice_engine/voice_engine_impl.h"
|
|
|
| -#ifndef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
|
| -#error "Deprecated"
|
| -#endif
|
| -
|
| namespace webrtc {
|
|
|
| VoENetEqStats* VoENetEqStats::GetInterface(VoiceEngine* voiceEngine) {
|
| -#ifndef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
|
| - return NULL;
|
| -#else
|
| if (NULL == voiceEngine) {
|
| return NULL;
|
| }
|
| VoiceEngineImpl* s = static_cast<VoiceEngineImpl*>(voiceEngine);
|
| s->AddRef();
|
| return s;
|
| -#endif
|
| }
|
|
|
| -#ifdef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
|
| -
|
| VoENetEqStatsImpl::VoENetEqStatsImpl(voe::SharedData* shared)
|
| : _shared(shared) {
|
| WEBRTC_TRACE(kTraceMemory, kTraceVoice, VoEId(_shared->instance_id(), -1),
|
| @@ -84,6 +74,4 @@ int VoENetEqStatsImpl::GetDecodingCallStatistics(
|
| return 0;
|
| }
|
|
|
| -#endif // #ifdef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
|
| -
|
| } // namespace webrtc
|
|
|