OLD | NEW |
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 |
(...skipping 17 matching lines...) Expand all Loading... |
28 // ... | 28 // ... |
29 // base->DeleteChannel(ch); | 29 // base->DeleteChannel(ch); |
30 // base->Terminate(); | 30 // base->Terminate(); |
31 // base->Release(); | 31 // base->Release(); |
32 // VoiceEngine::Delete(voe); | 32 // VoiceEngine::Delete(voe); |
33 // | 33 // |
34 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_H | 34 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_H |
35 #define WEBRTC_VOICE_ENGINE_VOE_BASE_H | 35 #define WEBRTC_VOICE_ENGINE_VOE_BASE_H |
36 | 36 |
37 #include "webrtc/api/audio_codecs/audio_decoder_factory.h" | 37 #include "webrtc/api/audio_codecs/audio_decoder_factory.h" |
| 38 #include "webrtc/base/scoped_ref_ptr.h" |
38 #include "webrtc/common_types.h" | 39 #include "webrtc/common_types.h" |
39 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" | 40 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" |
40 #include "webrtc/rtc_base/scoped_ref_ptr.h" | |
41 | 41 |
42 namespace webrtc { | 42 namespace webrtc { |
43 | 43 |
44 class AudioDeviceModule; | 44 class AudioDeviceModule; |
45 class AudioProcessing; | 45 class AudioProcessing; |
46 class AudioTransport; | 46 class AudioTransport; |
47 namespace voe { | 47 namespace voe { |
48 class TransmitMixer; | 48 class TransmitMixer; |
49 } // namespace voe | 49 } // namespace voe |
50 | 50 |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 virtual int AssociateSendChannel(int channel, int accociate_send_channel) = 0; | 203 virtual int AssociateSendChannel(int channel, int accociate_send_channel) = 0; |
204 | 204 |
205 protected: | 205 protected: |
206 VoEBase() {} | 206 VoEBase() {} |
207 virtual ~VoEBase() {} | 207 virtual ~VoEBase() {} |
208 }; | 208 }; |
209 | 209 |
210 } // namespace webrtc | 210 } // namespace webrtc |
211 | 211 |
212 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_H | 212 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_H |
OLD | NEW |