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 #include <algorithm> // max | 10 #include <algorithm> // max |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "webrtc/base/scoped_ptr.h" | 21 #include "webrtc/base/scoped_ptr.h" |
22 #include "webrtc/call.h" | 22 #include "webrtc/call.h" |
23 #include "webrtc/call/transport_adapter.h" | 23 #include "webrtc/call/transport_adapter.h" |
24 #include "webrtc/frame_callback.h" | 24 #include "webrtc/frame_callback.h" |
25 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 25 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
26 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 26 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
27 #include "webrtc/modules/rtp_rtcp/source/rtcp_sender.h" | 27 #include "webrtc/modules/rtp_rtcp/source/rtcp_sender.h" |
28 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" | 28 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
29 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h" | 29 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h" |
30 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" | 30 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" |
31 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | |
32 #include "webrtc/system_wrappers/include/ref_count.h" | 31 #include "webrtc/system_wrappers/include/ref_count.h" |
33 #include "webrtc/system_wrappers/include/sleep.h" | 32 #include "webrtc/system_wrappers/include/sleep.h" |
34 #include "webrtc/test/call_test.h" | 33 #include "webrtc/test/call_test.h" |
35 #include "webrtc/test/configurable_frame_size_encoder.h" | 34 #include "webrtc/test/configurable_frame_size_encoder.h" |
36 #include "webrtc/test/fake_texture_frame.h" | 35 #include "webrtc/test/fake_texture_frame.h" |
37 #include "webrtc/test/null_transport.h" | 36 #include "webrtc/test/null_transport.h" |
38 #include "webrtc/test/testsupport/perf_test.h" | 37 #include "webrtc/test/testsupport/perf_test.h" |
39 #include "webrtc/video/send_statistics_proxy.h" | 38 #include "webrtc/video/send_statistics_proxy.h" |
40 #include "webrtc/video_frame.h" | 39 #include "webrtc/video_frame.h" |
41 #include "webrtc/video_send_stream.h" | 40 #include "webrtc/video_send_stream.h" |
(...skipping 2216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2258 observation_complete_.Set(); | 2257 observation_complete_.Set(); |
2259 } | 2258 } |
2260 } | 2259 } |
2261 } test; | 2260 } test; |
2262 | 2261 |
2263 RunBaseTest(&test); | 2262 RunBaseTest(&test); |
2264 } | 2263 } |
2265 #endif | 2264 #endif |
2266 | 2265 |
2267 } // namespace webrtc | 2266 } // namespace webrtc |
OLD | NEW |