Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: webrtc/video/video_send_stream_tests.cc

Issue 1679323002: Cleanup of webrtc::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/video/video_capture_input_unittest.cc ('k') | webrtc/video_frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/video/video_capture_input_unittest.cc ('k') | webrtc/video_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698