OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 <algorithm> | 11 #include <algorithm> |
12 #include <limits> | 12 #include <limits> |
13 #include <memory> | 13 #include <memory> |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "webrtc/api/audio_codecs/builtin_audio_encoder_factory.h" | 16 #include "webrtc/api/audio_codecs/builtin_audio_encoder_factory.h" |
17 #include "webrtc/base/checks.h" | |
18 #include "webrtc/base/constructormagic.h" | |
19 #include "webrtc/base/thread_annotations.h" | |
20 #include "webrtc/call/call.h" | 17 #include "webrtc/call/call.h" |
21 #include "webrtc/config.h" | 18 #include "webrtc/config.h" |
22 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 19 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
23 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" | 20 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" |
24 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" | 21 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" |
25 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 22 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
| 23 #include "webrtc/rtc_base/checks.h" |
| 24 #include "webrtc/rtc_base/constructormagic.h" |
| 25 #include "webrtc/rtc_base/thread_annotations.h" |
26 #include "webrtc/system_wrappers/include/metrics_default.h" | 26 #include "webrtc/system_wrappers/include/metrics_default.h" |
27 #include "webrtc/test/call_test.h" | 27 #include "webrtc/test/call_test.h" |
28 #include "webrtc/test/direct_transport.h" | 28 #include "webrtc/test/direct_transport.h" |
29 #include "webrtc/test/drifting_clock.h" | 29 #include "webrtc/test/drifting_clock.h" |
30 #include "webrtc/test/encoder_settings.h" | 30 #include "webrtc/test/encoder_settings.h" |
31 #include "webrtc/test/fake_audio_device.h" | 31 #include "webrtc/test/fake_audio_device.h" |
32 #include "webrtc/test/fake_decoder.h" | 32 #include "webrtc/test/fake_decoder.h" |
33 #include "webrtc/test/fake_encoder.h" | 33 #include "webrtc/test/fake_encoder.h" |
34 #include "webrtc/test/field_trial.h" | 34 #include "webrtc/test/field_trial.h" |
35 #include "webrtc/test/frame_generator.h" | 35 #include "webrtc/test/frame_generator.h" |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 uint32_t last_set_bitrate_kbps_; | 757 uint32_t last_set_bitrate_kbps_; |
758 VideoSendStream* send_stream_; | 758 VideoSendStream* send_stream_; |
759 test::FrameGeneratorCapturer* frame_generator_; | 759 test::FrameGeneratorCapturer* frame_generator_; |
760 VideoEncoderConfig encoder_config_; | 760 VideoEncoderConfig encoder_config_; |
761 } test; | 761 } test; |
762 | 762 |
763 RunBaseTest(&test); | 763 RunBaseTest(&test); |
764 } | 764 } |
765 | 765 |
766 } // namespace webrtc | 766 } // namespace webrtc |
OLD | NEW |