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 #include <string> | 11 #include <string> |
12 #include <utility> | 12 #include <utility> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "webrtc/audio/audio_send_stream.h" | 15 #include "webrtc/audio/audio_send_stream.h" |
16 #include "webrtc/audio/audio_state.h" | 16 #include "webrtc/audio/audio_state.h" |
17 #include "webrtc/audio/conversion.h" | 17 #include "webrtc/audio/conversion.h" |
18 #include "webrtc/base/ptr_util.h" | |
19 #include "webrtc/base/task_queue.h" | |
20 #include "webrtc/call/fake_rtp_transport_controller_send.h" | 18 #include "webrtc/call/fake_rtp_transport_controller_send.h" |
21 #include "webrtc/call/rtp_transport_controller_send_interface.h" | 19 #include "webrtc/call/rtp_transport_controller_send_interface.h" |
22 #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" | 20 #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" |
23 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" | 21 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" |
24 #include "webrtc/modules/audio_processing/include/mock_audio_processing.h" | 22 #include "webrtc/modules/audio_processing/include/mock_audio_processing.h" |
25 #include "webrtc/modules/congestion_controller/include/mock/mock_congestion_obse
rver.h" | 23 #include "webrtc/modules/congestion_controller/include/mock/mock_congestion_obse
rver.h" |
26 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" | 24 #include "webrtc/modules/congestion_controller/include/send_side_congestion_cont
roller.h" |
27 #include "webrtc/modules/pacing/paced_sender.h" | 25 #include "webrtc/modules/pacing/paced_sender.h" |
28 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtcp_rtt_stats.h" | 26 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtcp_rtt_stats.h" |
29 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h" | 27 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h" |
| 28 #include "webrtc/rtc_base/ptr_util.h" |
| 29 #include "webrtc/rtc_base/task_queue.h" |
30 #include "webrtc/test/gtest.h" | 30 #include "webrtc/test/gtest.h" |
31 #include "webrtc/test/mock_audio_encoder.h" | 31 #include "webrtc/test/mock_audio_encoder.h" |
32 #include "webrtc/test/mock_audio_encoder_factory.h" | 32 #include "webrtc/test/mock_audio_encoder_factory.h" |
33 #include "webrtc/test/mock_voe_channel_proxy.h" | 33 #include "webrtc/test/mock_voe_channel_proxy.h" |
34 #include "webrtc/test/mock_voice_engine.h" | 34 #include "webrtc/test/mock_voice_engine.h" |
35 #include "webrtc/voice_engine/transmit_mixer.h" | 35 #include "webrtc/voice_engine/transmit_mixer.h" |
36 | 36 |
37 namespace webrtc { | 37 namespace webrtc { |
38 namespace test { | 38 namespace test { |
39 namespace { | 39 namespace { |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 EXPECT_CALL(*helper.channel_proxy(), RegisterSenderCongestionControlObjects( | 563 EXPECT_CALL(*helper.channel_proxy(), RegisterSenderCongestionControlObjects( |
564 helper.transport(), Ne(nullptr))) | 564 helper.transport(), Ne(nullptr))) |
565 .Times(1); | 565 .Times(1); |
566 } | 566 } |
567 send_stream.Reconfigure(new_config); | 567 send_stream.Reconfigure(new_config); |
568 } | 568 } |
569 | 569 |
570 | 570 |
571 } // namespace test | 571 } // namespace test |
572 } // namespace webrtc | 572 } // namespace webrtc |
OLD | NEW |