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 "webrtc/test/fake_audio_device.h" | 11 #include "webrtc/test/fake_audio_device.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <utility> | 14 #include <utility> |
15 | 15 |
16 #include "webrtc/base/checks.h" | |
17 #include "webrtc/base/random.h" | |
18 #include "webrtc/common_audio/wav_file.h" | 16 #include "webrtc/common_audio/wav_file.h" |
| 17 #include "webrtc/rtc_base/checks.h" |
| 18 #include "webrtc/rtc_base/random.h" |
19 #include "webrtc/system_wrappers/include/event_wrapper.h" | 19 #include "webrtc/system_wrappers/include/event_wrapper.h" |
20 | 20 |
21 namespace webrtc { | 21 namespace webrtc { |
22 | 22 |
23 namespace { | 23 namespace { |
24 | 24 |
25 constexpr int kFrameLengthMs = 10; | 25 constexpr int kFrameLengthMs = 10; |
26 constexpr int kFramesPerSecond = 1000 / kFrameLengthMs; | 26 constexpr int kFramesPerSecond = 1000 / kFrameLengthMs; |
27 | 27 |
28 // Assuming 10ms audio packets.. | 28 // Assuming 10ms audio packets.. |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 done_rendering_.Set(); | 371 done_rendering_.Set(); |
372 } | 372 } |
373 } | 373 } |
374 } | 374 } |
375 tick_->Wait(WEBRTC_EVENT_INFINITE); | 375 tick_->Wait(WEBRTC_EVENT_INFINITE); |
376 } | 376 } |
377 | 377 |
378 | 378 |
379 } // namespace test | 379 } // namespace test |
380 } // namespace webrtc | 380 } // namespace webrtc |
OLD | NEW |