Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Side by Side Diff: webrtc/voice_engine/voice_engine_impl.h

Issue 2727063004: Remove VoEVolumeControl interface. (Closed)
Patch Set: fix Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H 11 #ifndef WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H
12 #define WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H 12 #define WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/system_wrappers/include/atomic32.h" 16 #include "webrtc/system_wrappers/include/atomic32.h"
17 #include "webrtc/typedefs.h" 17 #include "webrtc/typedefs.h"
18 #include "webrtc/voice_engine/voe_base_impl.h" 18 #include "webrtc/voice_engine/voe_base_impl.h"
19 #include "webrtc/voice_engine/voe_audio_processing_impl.h" 19 #include "webrtc/voice_engine/voe_audio_processing_impl.h"
20 #include "webrtc/voice_engine/voe_codec_impl.h" 20 #include "webrtc/voice_engine/voe_codec_impl.h"
21 #include "webrtc/voice_engine/voe_file_impl.h" 21 #include "webrtc/voice_engine/voe_file_impl.h"
22 #include "webrtc/voice_engine/voe_hardware_impl.h" 22 #include "webrtc/voice_engine/voe_hardware_impl.h"
23 #include "webrtc/voice_engine/voe_neteq_stats_impl.h" 23 #include "webrtc/voice_engine/voe_neteq_stats_impl.h"
24 #include "webrtc/voice_engine/voe_network_impl.h" 24 #include "webrtc/voice_engine/voe_network_impl.h"
25 #include "webrtc/voice_engine/voe_rtp_rtcp_impl.h" 25 #include "webrtc/voice_engine/voe_rtp_rtcp_impl.h"
26 #include "webrtc/voice_engine/voe_volume_control_impl.h"
27 26
28 namespace webrtc { 27 namespace webrtc {
29 namespace voe { 28 namespace voe {
30 class ChannelProxy; 29 class ChannelProxy;
31 } // namespace voe 30 } // namespace voe
32 31
33 class VoiceEngineImpl : public voe::SharedData, // Must be the first base class 32 class VoiceEngineImpl : public voe::SharedData, // Must be the first base class
34 public VoiceEngine, 33 public VoiceEngine,
35 public VoEAudioProcessingImpl, 34 public VoEAudioProcessingImpl,
36 public VoECodecImpl, 35 public VoECodecImpl,
37 public VoEFileImpl, 36 public VoEFileImpl,
38 public VoEHardwareImpl, 37 public VoEHardwareImpl,
39 public VoENetEqStatsImpl, 38 public VoENetEqStatsImpl,
40 public VoENetworkImpl, 39 public VoENetworkImpl,
41 public VoERTP_RTCPImpl, 40 public VoERTP_RTCPImpl,
42 public VoEVolumeControlImpl,
43 public VoEBaseImpl { 41 public VoEBaseImpl {
44 public: 42 public:
45 VoiceEngineImpl() 43 VoiceEngineImpl()
46 : SharedData(), 44 : SharedData(),
47 VoEAudioProcessingImpl(this), 45 VoEAudioProcessingImpl(this),
48 VoECodecImpl(this), 46 VoECodecImpl(this),
49 VoEFileImpl(this), 47 VoEFileImpl(this),
50 VoEHardwareImpl(this), 48 VoEHardwareImpl(this),
51 VoENetEqStatsImpl(this), 49 VoENetEqStatsImpl(this),
52 VoENetworkImpl(this), 50 VoENetworkImpl(this),
53 VoERTP_RTCPImpl(this), 51 VoERTP_RTCPImpl(this),
54 VoEVolumeControlImpl(this),
55 VoEBaseImpl(this), 52 VoEBaseImpl(this),
56 _ref_count(0) {} 53 _ref_count(0) {}
57 ~VoiceEngineImpl() override { assert(_ref_count.Value() == 0); } 54 ~VoiceEngineImpl() override { assert(_ref_count.Value() == 0); }
58 55
59 int AddRef(); 56 int AddRef();
60 57
61 // This implements the Release() method for all the inherited interfaces. 58 // This implements the Release() method for all the inherited interfaces.
62 int Release() override; 59 int Release() override;
63 60
64 // Backdoor to access a voe::Channel object without a channel ID. This is only 61 // Backdoor to access a voe::Channel object without a channel ID. This is only
65 // to be used while refactoring the VoE API! 62 // to be used while refactoring the VoE API!
66 virtual std::unique_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id); 63 virtual std::unique_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id);
67 64
68 // This is *protected* so that FakeVoiceEngine can inherit from the class and 65 // This is *protected* so that FakeVoiceEngine can inherit from the class and
69 // manipulate the reference count. See: fake_voice_engine.h. 66 // manipulate the reference count. See: fake_voice_engine.h.
70 protected: 67 protected:
71 Atomic32 _ref_count; 68 Atomic32 _ref_count;
72 }; 69 };
73 70
74 } // namespace webrtc 71 } // namespace webrtc
75 72
76 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H 73 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698