| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 <utility> | 11 #include <utility> |
| 12 | 12 |
| 13 #include "webrtc/test/gtest.h" | |
| 14 #include "webrtc/base/logging.h" | 13 #include "webrtc/base/logging.h" |
| 15 #include "webrtc/test/encoder_settings.h" | 14 #include "webrtc/test/encoder_settings.h" |
| 16 #include "webrtc/test/fake_encoder.h" | 15 #include "webrtc/test/fake_encoder.h" |
| 17 #include "webrtc/test/frame_generator.h" | 16 #include "webrtc/test/frame_generator.h" |
| 17 #include "webrtc/test/gtest.h" |
| 18 #include "webrtc/video/send_statistics_proxy.h" | 18 #include "webrtc/video/send_statistics_proxy.h" |
| 19 #include "webrtc/video/vie_encoder.h" | 19 #include "webrtc/video/vie_encoder.h" |
| 20 | 20 |
| 21 namespace webrtc { | 21 namespace webrtc { |
| 22 | 22 |
| 23 class ViEEncoderTest : public ::testing::Test { | 23 class ViEEncoderTest : public ::testing::Test { |
| 24 public: | 24 public: |
| 25 static const int kDefaultTimeoutMs = 30 * 1000; | 25 static const int kDefaultTimeoutMs = 30 * 1000; |
| 26 | 26 |
| 27 ViEEncoderTest() | 27 ViEEncoderTest() |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 // Capture a frame and wait for it to synchronize with the encoder thread. | 294 // Capture a frame and wait for it to synchronize with the encoder thread. |
| 295 video_source_.IncomingCapturedFrame(CreateFrame(2, nullptr)); | 295 video_source_.IncomingCapturedFrame(CreateFrame(2, nullptr)); |
| 296 sink_.WaitForEncodedFrame(2); | 296 sink_.WaitForEncodedFrame(2); |
| 297 EXPECT_EQ(2, sink_.number_of_reconfigurations()); | 297 EXPECT_EQ(2, sink_.number_of_reconfigurations()); |
| 298 EXPECT_EQ(9999, sink_.last_min_transmit_bitrate()); | 298 EXPECT_EQ(9999, sink_.last_min_transmit_bitrate()); |
| 299 | 299 |
| 300 vie_encoder_->Stop(); | 300 vie_encoder_->Stop(); |
| 301 } | 301 } |
| 302 | 302 |
| 303 } // namespace webrtc | 303 } // namespace webrtc |
| OLD | NEW |