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 <functional> | 10 #include <functional> |
11 #include <list> | 11 #include <list> |
12 #include <memory> | 12 #include <memory> |
13 #include <string> | 13 #include <string> |
14 | 14 |
15 #include "webrtc/base/checks.h" | |
16 #include "webrtc/base/event.h" | |
17 #include "webrtc/base/logging.h" | |
18 #include "webrtc/base/thread_annotations.h" | |
19 #include "webrtc/call/call.h" | 15 #include "webrtc/call/call.h" |
| 16 #include "webrtc/rtc_base/checks.h" |
| 17 #include "webrtc/rtc_base/event.h" |
| 18 #include "webrtc/rtc_base/logging.h" |
| 19 #include "webrtc/rtc_base/thread_annotations.h" |
20 #include "webrtc/test/call_test.h" | 20 #include "webrtc/test/call_test.h" |
21 #include "webrtc/test/direct_transport.h" | 21 #include "webrtc/test/direct_transport.h" |
22 #include "webrtc/test/encoder_settings.h" | 22 #include "webrtc/test/encoder_settings.h" |
23 #include "webrtc/test/fake_decoder.h" | 23 #include "webrtc/test/fake_decoder.h" |
24 #include "webrtc/test/fake_encoder.h" | 24 #include "webrtc/test/fake_encoder.h" |
25 #include "webrtc/test/frame_generator_capturer.h" | 25 #include "webrtc/test/frame_generator_capturer.h" |
26 #include "webrtc/test/gtest.h" | 26 #include "webrtc/test/gtest.h" |
27 | 27 |
28 namespace webrtc { | 28 namespace webrtc { |
29 namespace { | 29 namespace { |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId); | 297 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId); |
298 receiver_log_.PushExpectedLogLine(kAbsSendTimeLog); | 298 receiver_log_.PushExpectedLogLine(kAbsSendTimeLog); |
299 receiver_log_.PushExpectedLogLine( | 299 receiver_log_.PushExpectedLogLine( |
300 "WrappingBitrateEstimator: Switching to transmission time offset RBE."); | 300 "WrappingBitrateEstimator: Switching to transmission time offset RBE."); |
301 streams_.push_back(new Stream(this)); | 301 streams_.push_back(new Stream(this)); |
302 streams_[0]->StopSending(); | 302 streams_[0]->StopSending(); |
303 streams_[1]->StopSending(); | 303 streams_[1]->StopSending(); |
304 EXPECT_TRUE(receiver_log_.Wait()); | 304 EXPECT_TRUE(receiver_log_.Wait()); |
305 } | 305 } |
306 } // namespace webrtc | 306 } // namespace webrtc |
OLD | NEW |