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

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

Issue 2538093003: Prep to remove API-related #defines from voice_engine_configurations.h (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « webrtc/voice_engine/voe_volume_control_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/voice_engine/voe_base_impl.h" 17 #include "webrtc/voice_engine/voe_base_impl.h"
18 #include "webrtc/voice_engine_configurations.h" 18 #include "webrtc/voice_engine_configurations.h"
19 19
20 #ifndef WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API
21 #error "Deprecated"
22 #endif
23 #ifndef WEBRTC_VOICE_ENGINE_CODEC_API
24 #error "Deprecated"
25 #endif
26 #ifndef WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API
27 #error "Deprecated"
28 #endif
29 #ifndef WEBRTC_VOICE_ENGINE_FILE_API
30 #error "Deprecated"
31 #endif
32 #ifndef WEBRTC_VOICE_ENGINE_HARDWARE_API
33 #error "Deprecated"
34 #endif
35 #ifndef WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
36 #error "Deprecated"
37 #endif
38 #ifndef WEBRTC_VOICE_ENGINE_RTP_RTCP_API
39 #error "Deprecated"
40 #endif
41 #ifndef WEBRTC_VOICE_ENGINE_VIDEO_SYNC_API
42 #error "Deprecated"
43 #endif
44 #ifndef WEBRTC_VOICE_ENGINE_VOLUME_CONTROL_API
45 #error "Deprecated"
46 #endif
47
20 #ifdef WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API 48 #ifdef WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API
21 #include "webrtc/voice_engine/voe_audio_processing_impl.h" 49 #include "webrtc/voice_engine/voe_audio_processing_impl.h"
22 #endif 50 #endif
23 #ifdef WEBRTC_VOICE_ENGINE_CODEC_API 51 #ifdef WEBRTC_VOICE_ENGINE_CODEC_API
24 #include "webrtc/voice_engine/voe_codec_impl.h" 52 #include "webrtc/voice_engine/voe_codec_impl.h"
25 #endif 53 #endif
26 #ifdef WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API 54 #ifdef WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API
27 #include "webrtc/voice_engine/voe_external_media_impl.h" 55 #include "webrtc/voice_engine/voe_external_media_impl.h"
28 #endif 56 #endif
29 #ifdef WEBRTC_VOICE_ENGINE_FILE_API 57 #ifdef WEBRTC_VOICE_ENGINE_FILE_API
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 156
129 // This is *protected* so that FakeVoiceEngine can inherit from the class and 157 // This is *protected* so that FakeVoiceEngine can inherit from the class and
130 // manipulate the reference count. See: fake_voice_engine.h. 158 // manipulate the reference count. See: fake_voice_engine.h.
131 protected: 159 protected:
132 Atomic32 _ref_count; 160 Atomic32 _ref_count;
133 }; 161 };
134 162
135 } // namespace webrtc 163 } // namespace webrtc
136 164
137 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H 165 #endif // WEBRTC_VOICE_ENGINE_VOICE_ENGINE_IMPL_H
OLDNEW
« no previous file with comments | « webrtc/voice_engine/voe_volume_control_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698