blob: 681f00ed0b518a22b3f9d88a82cd06cc2665386e [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:251/*
tommi@webrtc.orga990e122012-04-26 15:28:222 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:253 *
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
henrike@webrtc.org82f014a2013-09-10 18:24:0711#if defined(WEBRTC_ANDROID)
Mirko Bonadei92ea95e2017-09-15 04:47:3112#include "modules/audio_device/android/audio_device_template.h"
13#include "modules/audio_device/android/audio_record_jni.h"
14#include "modules/audio_device/android/audio_track_jni.h"
henrika@webrtc.org8883a0f2014-04-09 13:04:1215#endif
leozwang@webrtc.org2db85bc2012-09-18 20:19:0016
Mirko Bonadei92ea95e2017-09-15 04:47:3117#include "modules/audio_coding/include/audio_coding_module.h"
18#include "rtc_base/checks.h"
Fredrik Solenberg729b9102017-10-03 13:39:3919#include "system_wrappers/include/trace.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3120#include "voice_engine/channel_proxy.h"
21#include "voice_engine/voice_engine_impl.h"
henrika@google.com73d65512011-09-07 15:11:1822
Jelena Marusic0d266052015-05-04 12:15:3223namespace webrtc {
niklase@google.com470e71d2011-07-07 08:21:2524
25// Counter to be ensure that we can add a correct ID in all static trace
26// methods. It is not the nicest solution, especially not since we already
27// have a counter in VoEBaseImpl. In other words, there is room for
28// improvement here.
pbos@webrtc.org6141e132013-04-09 10:09:1029static int32_t gVoiceEngineInstanceCounter = 0;
niklase@google.com470e71d2011-07-07 08:21:2530
solenberg88499ec2016-09-07 14:34:4131VoiceEngine* GetVoiceEngine() {
32 VoiceEngineImpl* self = new VoiceEngineImpl();
Jelena Marusic0d266052015-05-04 12:15:3233 if (self != NULL) {
34 self->AddRef(); // First reference. Released in VoiceEngine::Delete.
35 gVoiceEngineInstanceCounter++;
36 }
37 return self;
niklase@google.com470e71d2011-07-07 08:21:2538}
niklase@google.com470e71d2011-07-07 08:21:2539
tommi@webrtc.orga990e122012-04-26 15:28:2240int VoiceEngineImpl::AddRef() {
41 return ++_ref_count;
42}
43
44// This implements the Release() method for all the inherited interfaces.
45int VoiceEngineImpl::Release() {
46 int new_ref = --_ref_count;
47 assert(new_ref >= 0);
48 if (new_ref == 0) {
Fredrik Solenberg729b9102017-10-03 13:39:3949 WEBRTC_TRACE(kTraceApiCall, kTraceVoice, -1,
50 "VoiceEngineImpl self deleting (voiceEngine=0x%p)", this);
tommi@webrtc.orga990e122012-04-26 15:28:2251
henrika@webrtc.org944cbeb2014-03-18 10:32:3352 // Clear any pointers before starting destruction. Otherwise worker-
53 // threads will still have pointers to a partially destructed object.
54 // Example: AudioDeviceBuffer::RequestPlayoutData() can access a
55 // partially deconstructed |_ptrCbAudioTransport| during destruction
56 // if we don't call Terminate here.
57 Terminate();
tommi@webrtc.orga990e122012-04-26 15:28:2258 delete this;
59 }
60
61 return new_ref;
62}
63
kwibergb7f89d62016-02-17 18:04:1864std::unique_ptr<voe::ChannelProxy> VoiceEngineImpl::GetChannelProxy(
solenberg13725082015-11-25 16:16:5265 int channel_id) {
66 RTC_DCHECK(channel_id >= 0);
tommi31fc21f2016-01-21 18:37:3767 rtc::CritScope cs(crit_sec());
kwibergb7f89d62016-02-17 18:04:1868 return std::unique_ptr<voe::ChannelProxy>(
solenberg13725082015-11-25 16:16:5269 new voe::ChannelProxy(channel_manager().GetChannel(channel_id)));
70}
71
minyue@webrtc.orge509f942013-09-12 17:03:0072VoiceEngine* VoiceEngine::Create() {
solenberg88499ec2016-09-07 14:34:4173 return GetVoiceEngine();
niklase@google.com470e71d2011-07-07 08:21:2574}
75
Jelena Marusic0d266052015-05-04 12:15:3276bool VoiceEngine::Delete(VoiceEngine*& voiceEngine) {
77 if (voiceEngine == NULL)
78 return false;
niklase@google.com470e71d2011-07-07 08:21:2579
Jelena Marusic0d266052015-05-04 12:15:3280 VoiceEngineImpl* s = static_cast<VoiceEngineImpl*>(voiceEngine);
Fredrik Solenberg729b9102017-10-03 13:39:3981 // Release the reference that was added in GetVoiceEngine.
82 int ref = s->Release();
Jelena Marusic0d266052015-05-04 12:15:3283 voiceEngine = NULL;
Fredrik Solenberg729b9102017-10-03 13:39:3984
85 if (ref != 0) {
86 WEBRTC_TRACE(
87 kTraceWarning, kTraceVoice, -1,
88 "VoiceEngine::Delete did not release the very last reference. "
89 "%d references remain.",
90 ref);
91 }
92
Jelena Marusic0d266052015-05-04 12:15:3293 return true;
niklase@google.com470e71d2011-07-07 08:21:2594}
pbos@webrtc.orgd900e8b2013-07-03 15:12:2695} // namespace webrtc