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 #include <stdio.h> | 10 #include <stdio.h> |
11 | 11 |
12 #include <algorithm> | 12 #include <algorithm> |
13 #include <deque> | 13 #include <deque> |
14 #include <map> | 14 #include <map> |
15 #include <sstream> | 15 #include <sstream> |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
19 | 19 |
20 #include "webrtc/base/checks.h" | 20 #include "webrtc/base/checks.h" |
21 #include "webrtc/base/format_macros.h" | 21 #include "webrtc/base/format_macros.h" |
22 #include "webrtc/base/scoped_ptr.h" | 22 #include "webrtc/base/scoped_ptr.h" |
23 #include "webrtc/call.h" | 23 #include "webrtc/call.h" |
24 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 24 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 25 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
25 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 26 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
26 #include "webrtc/system_wrappers/include/cpu_info.h" | 27 #include "webrtc/system_wrappers/include/cpu_info.h" |
27 #include "webrtc/test/layer_filtering_transport.h" | 28 #include "webrtc/test/layer_filtering_transport.h" |
28 #include "webrtc/test/run_loop.h" | 29 #include "webrtc/test/run_loop.h" |
29 #include "webrtc/test/statistics.h" | 30 #include "webrtc/test/statistics.h" |
30 #include "webrtc/test/testsupport/fileutils.h" | 31 #include "webrtc/test/testsupport/fileutils.h" |
31 #include "webrtc/test/video_renderer.h" | 32 #include "webrtc/test/video_renderer.h" |
32 #include "webrtc/video/video_quality_test.h" | 33 #include "webrtc/video/video_quality_test.h" |
33 | 34 |
34 namespace webrtc { | 35 namespace webrtc { |
(...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 send_stream_->Stop(); | 1063 send_stream_->Stop(); |
1063 receive_stream->Stop(); | 1064 receive_stream->Stop(); |
1064 | 1065 |
1065 call->DestroyVideoReceiveStream(receive_stream); | 1066 call->DestroyVideoReceiveStream(receive_stream); |
1066 call->DestroyVideoSendStream(send_stream_); | 1067 call->DestroyVideoSendStream(send_stream_); |
1067 | 1068 |
1068 transport.StopSending(); | 1069 transport.StopSending(); |
1069 } | 1070 } |
1070 | 1071 |
1071 } // namespace webrtc | 1072 } // namespace webrtc |
OLD | NEW |