| 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 |
| 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/engine_configurations.h" | |
| 17 #include "webrtc/system_wrappers/include/atomic32.h" | 16 #include "webrtc/system_wrappers/include/atomic32.h" |
| 18 #include "webrtc/voice_engine/voe_base_impl.h" | 17 #include "webrtc/voice_engine/voe_base_impl.h" |
| 18 #include "webrtc/voice_engine_configurations.h" |
| 19 | 19 |
| 20 #ifdef WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API | 20 #ifdef WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API |
| 21 #include "webrtc/voice_engine/voe_audio_processing_impl.h" | 21 #include "webrtc/voice_engine/voe_audio_processing_impl.h" |
| 22 #endif | 22 #endif |
| 23 #ifdef WEBRTC_VOICE_ENGINE_CODEC_API | 23 #ifdef WEBRTC_VOICE_ENGINE_CODEC_API |
| 24 #include "webrtc/voice_engine/voe_codec_impl.h" | 24 #include "webrtc/voice_engine/voe_codec_impl.h" |
| 25 #endif | 25 #endif |
| 26 #ifdef WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API | 26 #ifdef WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API |
| 27 #include "webrtc/voice_engine/voe_external_media_impl.h" | 27 #include "webrtc/voice_engine/voe_external_media_impl.h" |
| 28 #endif | 28 #endif |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 // This is *protected* so that FakeVoiceEngine can inherit from the class and | 129 // This is *protected* so that FakeVoiceEngine can inherit from the class and |
| 130 // manipulate the reference count. See: fake_voice_engine.h. | 130 // manipulate the reference count. See: fake_voice_engine.h. |
| 131 protected: | 131 protected: |
| 132 Atomic32 _ref_count; | 132 Atomic32 _ref_count; |
| 133 }; | 133 }; |
| 134 | 134 |
| 135 } // namespace webrtc | 135 } // namespace webrtc |
| 136 | 136 |
| 137 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H | 137 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H |
| OLD | NEW |