| 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/system_wrappers/include/atomic32.h" | 16 #include "webrtc/system_wrappers/include/atomic32.h" |
| 17 #include "webrtc/voice_engine_configurations.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_external_media_impl.h" | 21 #include "webrtc/voice_engine/voe_external_media_impl.h" |
| 22 #include "webrtc/voice_engine/voe_file_impl.h" | 22 #include "webrtc/voice_engine/voe_file_impl.h" |
| 23 #include "webrtc/voice_engine/voe_hardware_impl.h" | 23 #include "webrtc/voice_engine/voe_hardware_impl.h" |
| 24 #include "webrtc/voice_engine/voe_neteq_stats_impl.h" | 24 #include "webrtc/voice_engine/voe_neteq_stats_impl.h" |
| 25 #include "webrtc/voice_engine/voe_network_impl.h" | 25 #include "webrtc/voice_engine/voe_network_impl.h" |
| 26 #include "webrtc/voice_engine/voe_rtp_rtcp_impl.h" | 26 #include "webrtc/voice_engine/voe_rtp_rtcp_impl.h" |
| 27 #include "webrtc/voice_engine/voe_video_sync_impl.h" | 27 #include "webrtc/voice_engine/voe_video_sync_impl.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 // This is *protected* so that FakeVoiceEngine can inherit from the class and | 74 // This is *protected* so that FakeVoiceEngine can inherit from the class and |
| 75 // manipulate the reference count. See: fake_voice_engine.h. | 75 // manipulate the reference count. See: fake_voice_engine.h. |
| 76 protected: | 76 protected: |
| 77 Atomic32 _ref_count; | 77 Atomic32 _ref_count; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace webrtc | 80 } // namespace webrtc |
| 81 | 81 |
| 82 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H | 82 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H |
| OLD | NEW |