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

Side by Side Diff: webrtc/common_video/libyuv/scaler_unittest.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/common_video/libyuv/libyuv_unittest.cc ('k') | webrtc/common_video/video_frame.cc » ('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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 half_width_, half_height_, 97 half_width_, half_height_,
98 kI420, kI420, 98 kI420, kI420,
99 kScalePoint)); 99 kScalePoint));
100 VideoFrame test_frame2; 100 VideoFrame test_frame2;
101 rtc::scoped_ptr<uint8_t[]> orig_buffer(new uint8_t[frame_length_]); 101 rtc::scoped_ptr<uint8_t[]> orig_buffer(new uint8_t[frame_length_]);
102 EXPECT_GT(fread(orig_buffer.get(), 1, frame_length_, source_file_), 0U); 102 EXPECT_GT(fread(orig_buffer.get(), 1, frame_length_, source_file_), 0U);
103 test_frame_.CreateFrame(orig_buffer.get(), 103 test_frame_.CreateFrame(orig_buffer.get(),
104 orig_buffer.get() + size_y_, 104 orig_buffer.get() + size_y_,
105 orig_buffer.get() + size_y_ + size_uv_, 105 orig_buffer.get() + size_y_ + size_uv_,
106 width_, height_, 106 width_, height_,
107 width_, half_width_, half_width_); 107 width_, half_width_, half_width_,
108 kVideoRotation_0);
108 EXPECT_EQ(0, test_scaler_.Scale(test_frame_, &test_frame2)); 109 EXPECT_EQ(0, test_scaler_.Scale(test_frame_, &test_frame2));
109 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane)); 110 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane));
110 EXPECT_GT(size_uv_, test_frame2.allocated_size(kUPlane)); 111 EXPECT_GT(size_uv_, test_frame2.allocated_size(kUPlane));
111 EXPECT_GT(size_uv_, test_frame2.allocated_size(kVPlane)); 112 EXPECT_GT(size_uv_, test_frame2.allocated_size(kVPlane));
112 EXPECT_EQ(half_width_, test_frame2.width()); 113 EXPECT_EQ(half_width_, test_frame2.width());
113 EXPECT_EQ(half_height_, test_frame2.height()); 114 EXPECT_EQ(half_height_, test_frame2.height());
114 } 115 }
115 116
116 // TODO(mikhal): Converge the test into one function that accepts the method. 117 // TODO(mikhal): Converge the test into one function that accepts the method.
117 #if defined(WEBRTC_ANDROID) 118 #if defined(WEBRTC_ANDROID)
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 while (feof(source_file) == 0) { 366 while (feof(source_file) == 0) {
366 if (fread(frame_buffer.get(), 1, src_required_size, source_file) != 367 if (fread(frame_buffer.get(), 1, src_required_size, source_file) !=
367 src_required_size) 368 src_required_size)
368 break; 369 break;
369 370
370 input_frame.CreateFrame(frame_buffer.get(), 371 input_frame.CreateFrame(frame_buffer.get(),
371 frame_buffer.get() + size_y, 372 frame_buffer.get() + size_y,
372 frame_buffer.get() + size_y + size_uv, 373 frame_buffer.get() + size_y + size_uv,
373 src_width, src_height, 374 src_width, src_height,
374 src_width, (src_width + 1) / 2, 375 src_width, (src_width + 1) / 2,
375 (src_width + 1) / 2); 376 (src_width + 1) / 2,
377 kVideoRotation_0);
376 378
377 start_clock = TickTime::MillisecondTimestamp(); 379 start_clock = TickTime::MillisecondTimestamp();
378 EXPECT_EQ(0, test_scaler_.Scale(input_frame, &output_frame)); 380 EXPECT_EQ(0, test_scaler_.Scale(input_frame, &output_frame));
379 total_clock += TickTime::MillisecondTimestamp() - start_clock; 381 total_clock += TickTime::MillisecondTimestamp() - start_clock;
380 if (PrintVideoFrame(output_frame, output_file) < 0) { 382 if (PrintVideoFrame(output_frame, output_file) < 0) {
381 return; 383 return;
382 } 384 }
383 frame_count++; 385 frame_count++;
384 } 386 }
385 387
386 if (frame_count) { 388 if (frame_count) {
387 printf("Scaling[%d %d] => [%d %d]: ", 389 printf("Scaling[%d %d] => [%d %d]: ",
388 src_width, src_height, dst_width, dst_height); 390 src_width, src_height, dst_width, dst_height);
389 printf("Average time per frame[ms]: %.2lf\n", 391 printf("Average time per frame[ms]: %.2lf\n",
390 (static_cast<double>(total_clock) / frame_count)); 392 (static_cast<double>(total_clock) / frame_count));
391 } 393 }
392 ASSERT_EQ(0, fclose(output_file)); 394 ASSERT_EQ(0, fclose(output_file));
393 } 395 }
394 396
395 } // namespace webrtc 397 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/common_video/libyuv/libyuv_unittest.cc ('k') | webrtc/common_video/video_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698