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 <queue> | 11 #include <queue> |
12 | 12 |
13 #include "webrtc/base/format_macros.h" | 13 #include "webrtc/rtc_base/format_macros.h" |
14 #include "webrtc/base/timeutils.h" | 14 #include "webrtc/rtc_base/timeutils.h" |
15 #include "webrtc/system_wrappers/include/sleep.h" | 15 #include "webrtc/system_wrappers/include/sleep.h" |
16 #include "webrtc/test/gtest.h" | 16 #include "webrtc/test/gtest.h" |
17 #include "webrtc/test/testsupport/fileutils.h" | 17 #include "webrtc/test/testsupport/fileutils.h" |
18 #include "webrtc/voice_engine/test/auto_test/fakes/conference_transport.h" | 18 #include "webrtc/voice_engine/test/auto_test/fakes/conference_transport.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 namespace { | 21 namespace { |
22 | 22 |
23 const int kRttMs = 25; | 23 const int kRttMs = 25; |
24 | 24 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 EXPECT_NEAR(stats_1.packetsReceived, kPackets, 2); | 170 EXPECT_NEAR(stats_1.packetsReceived, kPackets, 2); |
171 EXPECT_NEAR(stats_2.packetsReceived, kPackets, 2); | 171 EXPECT_NEAR(stats_2.packetsReceived, kPackets, 2); |
172 EXPECT_NEAR(stats_3.packetsReceived, kPackets, 2); | 172 EXPECT_NEAR(stats_3.packetsReceived, kPackets, 2); |
173 } | 173 } |
174 | 174 |
175 remove(silence_file.c_str()); | 175 remove(silence_file.c_str()); |
176 } | 176 } |
177 | 177 |
178 } // namespace voetest | 178 } // namespace voetest |
179 } // namespace webrtc | 179 } // namespace webrtc |
OLD | NEW |