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 <algorithm> // max | 10 #include <algorithm> // max |
(...skipping 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1291 for (size_t i = 0; i < std::min(frames1.size(), frames2.size()); ++i) | 1291 for (size_t i = 0; i < std::min(frames1.size(), frames2.size()); ++i) |
1292 ExpectEqualFrames(frames1[i], frames2[i]); | 1292 ExpectEqualFrames(frames1[i], frames2[i]); |
1293 } | 1293 } |
1294 | 1294 |
1295 VideoFrame CreateVideoFrame(int width, int height, uint8_t data) { | 1295 VideoFrame CreateVideoFrame(int width, int height, uint8_t data) { |
1296 const int kSizeY = width * height * 2; | 1296 const int kSizeY = width * height * 2; |
1297 rtc::scoped_ptr<uint8_t[]> buffer(new uint8_t[kSizeY]); | 1297 rtc::scoped_ptr<uint8_t[]> buffer(new uint8_t[kSizeY]); |
1298 memset(buffer.get(), data, kSizeY); | 1298 memset(buffer.get(), data, kSizeY); |
1299 VideoFrame frame; | 1299 VideoFrame frame; |
1300 frame.CreateFrame(buffer.get(), buffer.get(), buffer.get(), width, height, | 1300 frame.CreateFrame(buffer.get(), buffer.get(), buffer.get(), width, height, |
1301 width, width / 2, width / 2); | 1301 width, width / 2, width / 2, kVideoRotation_0); |
1302 frame.set_timestamp(data); | 1302 frame.set_timestamp(data); |
1303 frame.set_render_time_ms(data); | 1303 frame.set_render_time_ms(data); |
1304 return frame; | 1304 return frame; |
1305 } | 1305 } |
1306 | 1306 |
1307 TEST_F(VideoSendStreamTest, EncoderIsProperlyInitializedAndDestroyed) { | 1307 TEST_F(VideoSendStreamTest, EncoderIsProperlyInitializedAndDestroyed) { |
1308 class EncoderStateObserver : public test::SendTest, public VideoEncoder { | 1308 class EncoderStateObserver : public test::SendTest, public VideoEncoder { |
1309 public: | 1309 public: |
1310 EncoderStateObserver() | 1310 EncoderStateObserver() |
1311 : SendTest(kDefaultTimeoutMs), | 1311 : SendTest(kDefaultTimeoutMs), |
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2315 observation_complete_.Set(); | 2315 observation_complete_.Set(); |
2316 } | 2316 } |
2317 } | 2317 } |
2318 } test; | 2318 } test; |
2319 | 2319 |
2320 RunBaseTest(&test); | 2320 RunBaseTest(&test); |
2321 } | 2321 } |
2322 #endif | 2322 #endif |
2323 | 2323 |
2324 } // namespace webrtc | 2324 } // namespace webrtc |
OLD | NEW |