| 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 16 matching lines...) Expand all Loading... |
| 27 #include "webrtc/modules/utility/include/file_recorder.h" | 27 #include "webrtc/modules/utility/include/file_recorder.h" |
| 28 #include "webrtc/voice_engine/dtmf_inband.h" | 28 #include "webrtc/voice_engine/dtmf_inband.h" |
| 29 #include "webrtc/voice_engine/dtmf_inband_queue.h" | 29 #include "webrtc/voice_engine/dtmf_inband_queue.h" |
| 30 #include "webrtc/voice_engine/include/voe_audio_processing.h" | 30 #include "webrtc/voice_engine/include/voe_audio_processing.h" |
| 31 #include "webrtc/voice_engine/include/voe_network.h" | 31 #include "webrtc/voice_engine/include/voe_network.h" |
| 32 #include "webrtc/voice_engine/level_indicator.h" | 32 #include "webrtc/voice_engine/level_indicator.h" |
| 33 #include "webrtc/voice_engine/network_predictor.h" | 33 #include "webrtc/voice_engine/network_predictor.h" |
| 34 #include "webrtc/voice_engine/shared_data.h" | 34 #include "webrtc/voice_engine/shared_data.h" |
| 35 #include "webrtc/voice_engine/voice_engine_defines.h" | 35 #include "webrtc/voice_engine/voice_engine_defines.h" |
| 36 | 36 |
| 37 #ifdef WEBRTC_DTMF_DETECTION | |
| 38 // TelephoneEventDetectionMethods, TelephoneEventObserver | |
| 39 #include "webrtc/voice_engine/include/voe_dtmf.h" | |
| 40 #endif | |
| 41 | |
| 42 namespace rtc { | 37 namespace rtc { |
| 43 | 38 |
| 44 class TimestampWrapAroundHandler; | 39 class TimestampWrapAroundHandler; |
| 45 } | 40 } |
| 46 | 41 |
| 47 namespace webrtc { | 42 namespace webrtc { |
| 48 | 43 |
| 49 class AudioDeviceModule; | 44 class AudioDeviceModule; |
| 50 class Config; | 45 class Config; |
| 51 class FileWrapper; | 46 class FileWrapper; |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 PacketRouter* packet_router_ = nullptr; | 590 PacketRouter* packet_router_ = nullptr; |
| 596 std::unique_ptr<TransportFeedbackProxy> feedback_observer_proxy_; | 591 std::unique_ptr<TransportFeedbackProxy> feedback_observer_proxy_; |
| 597 std::unique_ptr<TransportSequenceNumberProxy> seq_num_allocator_proxy_; | 592 std::unique_ptr<TransportSequenceNumberProxy> seq_num_allocator_proxy_; |
| 598 std::unique_ptr<RtpPacketSenderProxy> rtp_packet_sender_proxy_; | 593 std::unique_ptr<RtpPacketSenderProxy> rtp_packet_sender_proxy_; |
| 599 }; | 594 }; |
| 600 | 595 |
| 601 } // namespace voe | 596 } // namespace voe |
| 602 } // namespace webrtc | 597 } // namespace webrtc |
| 603 | 598 |
| 604 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 599 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
| OLD | NEW |