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 "testing/gtest/include/gtest/gtest.h" | 11 #include "webrtc/base/gtest.h" |
12 #include "webrtc/base/logging.h" | 12 #include "webrtc/base/logging.h" |
13 #include "webrtc/test/encoder_settings.h" | 13 #include "webrtc/test/encoder_settings.h" |
14 #include "webrtc/test/fake_encoder.h" | 14 #include "webrtc/test/fake_encoder.h" |
15 #include "webrtc/test/frame_generator.h" | 15 #include "webrtc/test/frame_generator.h" |
16 #include "webrtc/video/send_statistics_proxy.h" | 16 #include "webrtc/video/send_statistics_proxy.h" |
17 #include "webrtc/video/vie_encoder.h" | 17 #include "webrtc/video/vie_encoder.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 class ViEEncoderTest : public ::testing::Test { | 21 class ViEEncoderTest : public ::testing::Test { |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 // call to ContinueEncode. | 249 // call to ContinueEncode. |
250 video_source_.IncomingCapturedFrame(CreateFrame(2, nullptr)); | 250 video_source_.IncomingCapturedFrame(CreateFrame(2, nullptr)); |
251 video_source_.IncomingCapturedFrame(CreateFrame(3, nullptr)); | 251 video_source_.IncomingCapturedFrame(CreateFrame(3, nullptr)); |
252 fake_encoder_.ContinueEncode(); | 252 fake_encoder_.ContinueEncode(); |
253 sink_.WaitForEncodedFrame(3); | 253 sink_.WaitForEncodedFrame(3); |
254 | 254 |
255 vie_encoder_->Stop(); | 255 vie_encoder_->Stop(); |
256 } | 256 } |
257 | 257 |
258 } // namespace webrtc | 258 } // namespace webrtc |
OLD | NEW |