OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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_CHANNEL_PROXY_H_ | 11 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
12 #define WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 12 #define WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
13 | 13 |
14 #include "webrtc/api/audio/audio_mixer.h" | 14 #include "webrtc/api/audio/audio_mixer.h" |
15 #include "webrtc/api/audio_codecs/audio_encoder.h" | 15 #include "webrtc/api/audio_codecs/audio_encoder.h" |
16 #include "webrtc/api/rtpreceiverinterface.h" | 16 #include "webrtc/api/rtpreceiverinterface.h" |
| 17 #include "webrtc/base/constructormagic.h" |
| 18 #include "webrtc/base/race_checker.h" |
| 19 #include "webrtc/base/thread_checker.h" |
17 #include "webrtc/call/rtp_packet_sink_interface.h" | 20 #include "webrtc/call/rtp_packet_sink_interface.h" |
18 #include "webrtc/rtc_base/constructormagic.h" | |
19 #include "webrtc/rtc_base/race_checker.h" | |
20 #include "webrtc/rtc_base/thread_checker.h" | |
21 #include "webrtc/voice_engine/channel_manager.h" | 21 #include "webrtc/voice_engine/channel_manager.h" |
22 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" | 22 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" |
23 | 23 |
24 #include <memory> | 24 #include <memory> |
25 #include <string> | 25 #include <string> |
26 #include <vector> | 26 #include <vector> |
27 | 27 |
28 namespace webrtc { | 28 namespace webrtc { |
29 | 29 |
30 class AudioSinkInterface; | 30 class AudioSinkInterface; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 rtc::RaceChecker audio_thread_race_checker_; | 138 rtc::RaceChecker audio_thread_race_checker_; |
139 rtc::RaceChecker video_capture_thread_race_checker_; | 139 rtc::RaceChecker video_capture_thread_race_checker_; |
140 ChannelOwner channel_owner_; | 140 ChannelOwner channel_owner_; |
141 | 141 |
142 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); | 142 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); |
143 }; | 143 }; |
144 } // namespace voe | 144 } // namespace voe |
145 } // namespace webrtc | 145 } // namespace webrtc |
146 | 146 |
147 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 147 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
OLD | NEW |