| 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> |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 public: | 101 public: |
| 102 BitrateEstimatorTest() : receive_config_(nullptr) {} | 102 BitrateEstimatorTest() : receive_config_(nullptr) {} |
| 103 | 103 |
| 104 virtual ~BitrateEstimatorTest() { EXPECT_TRUE(streams_.empty()); } | 104 virtual ~BitrateEstimatorTest() { EXPECT_TRUE(streams_.empty()); } |
| 105 | 105 |
| 106 virtual void SetUp() { | 106 virtual void SetUp() { |
| 107 Call::Config config(&event_log_); | 107 Call::Config config(&event_log_); |
| 108 receiver_call_.reset(Call::Create(config)); | 108 receiver_call_.reset(Call::Create(config)); |
| 109 sender_call_.reset(Call::Create(config)); | 109 sender_call_.reset(Call::Create(config)); |
| 110 | 110 |
| 111 send_transport_.reset(new test::DirectTransport(sender_call_.get())); | 111 send_transport_.reset( |
| 112 new test::DirectTransport(sender_call_.get(), MediaType::VIDEO)); |
| 112 send_transport_->SetReceiver(receiver_call_->Receiver()); | 113 send_transport_->SetReceiver(receiver_call_->Receiver()); |
| 113 receive_transport_.reset(new test::DirectTransport(receiver_call_.get())); | 114 receive_transport_.reset( |
| 115 new test::DirectTransport(receiver_call_.get(), MediaType::VIDEO)); |
| 114 receive_transport_->SetReceiver(sender_call_->Receiver()); | 116 receive_transport_->SetReceiver(sender_call_->Receiver()); |
| 115 | 117 |
| 116 video_send_config_ = VideoSendStream::Config(send_transport_.get()); | 118 video_send_config_ = VideoSendStream::Config(send_transport_.get()); |
| 117 video_send_config_.rtp.ssrcs.push_back(kVideoSendSsrcs[0]); | 119 video_send_config_.rtp.ssrcs.push_back(kVideoSendSsrcs[0]); |
| 118 // Encoders will be set separately per stream. | 120 // Encoders will be set separately per stream. |
| 119 video_send_config_.encoder_settings.encoder = nullptr; | 121 video_send_config_.encoder_settings.encoder = nullptr; |
| 120 video_send_config_.encoder_settings.payload_name = "FAKE"; | 122 video_send_config_.encoder_settings.payload_name = "FAKE"; |
| 121 video_send_config_.encoder_settings.payload_type = | 123 video_send_config_.encoder_settings.payload_type = |
| 122 kFakeVideoSendPayloadType; | 124 kFakeVideoSendPayloadType; |
| 123 test::FillEncoderConfiguration(1, &video_encoder_config_); | 125 test::FillEncoderConfiguration(1, &video_encoder_config_); |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId); | 299 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId); |
| 298 receiver_log_.PushExpectedLogLine(kAbsSendTimeLog); | 300 receiver_log_.PushExpectedLogLine(kAbsSendTimeLog); |
| 299 receiver_log_.PushExpectedLogLine( | 301 receiver_log_.PushExpectedLogLine( |
| 300 "WrappingBitrateEstimator: Switching to transmission time offset RBE."); | 302 "WrappingBitrateEstimator: Switching to transmission time offset RBE."); |
| 301 streams_.push_back(new Stream(this)); | 303 streams_.push_back(new Stream(this)); |
| 302 streams_[0]->StopSending(); | 304 streams_[0]->StopSending(); |
| 303 streams_[1]->StopSending(); | 305 streams_[1]->StopSending(); |
| 304 EXPECT_TRUE(receiver_log_.Wait()); | 306 EXPECT_TRUE(receiver_log_.Wait()); |
| 305 } | 307 } |
| 306 } // namespace webrtc | 308 } // namespace webrtc |
| OLD | NEW |