OLD | NEW |
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 Loading... |
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); | |
109 EXPECT_EQ(0, test_scaler_.Scale(test_frame_, &test_frame2)); | 108 EXPECT_EQ(0, test_scaler_.Scale(test_frame_, &test_frame2)); |
110 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane)); | 109 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane)); |
111 EXPECT_GT(size_uv_, test_frame2.allocated_size(kUPlane)); | 110 EXPECT_GT(size_uv_, test_frame2.allocated_size(kUPlane)); |
112 EXPECT_GT(size_uv_, test_frame2.allocated_size(kVPlane)); | 111 EXPECT_GT(size_uv_, test_frame2.allocated_size(kVPlane)); |
113 EXPECT_EQ(half_width_, test_frame2.width()); | 112 EXPECT_EQ(half_width_, test_frame2.width()); |
114 EXPECT_EQ(half_height_, test_frame2.height()); | 113 EXPECT_EQ(half_height_, test_frame2.height()); |
115 } | 114 } |
116 | 115 |
117 // TODO(mikhal): Converge the test into one function that accepts the method. | 116 // TODO(mikhal): Converge the test into one function that accepts the method. |
118 #if defined(WEBRTC_ANDROID) | 117 #if defined(WEBRTC_ANDROID) |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 while (feof(source_file) == 0) { | 365 while (feof(source_file) == 0) { |
367 if (fread(frame_buffer.get(), 1, src_required_size, source_file) != | 366 if (fread(frame_buffer.get(), 1, src_required_size, source_file) != |
368 src_required_size) | 367 src_required_size) |
369 break; | 368 break; |
370 | 369 |
371 input_frame.CreateFrame(frame_buffer.get(), | 370 input_frame.CreateFrame(frame_buffer.get(), |
372 frame_buffer.get() + size_y, | 371 frame_buffer.get() + size_y, |
373 frame_buffer.get() + size_y + size_uv, | 372 frame_buffer.get() + size_y + size_uv, |
374 src_width, src_height, | 373 src_width, src_height, |
375 src_width, (src_width + 1) / 2, | 374 src_width, (src_width + 1) / 2, |
376 (src_width + 1) / 2, | 375 (src_width + 1) / 2); |
377 kVideoRotation_0); | |
378 | 376 |
379 start_clock = TickTime::MillisecondTimestamp(); | 377 start_clock = TickTime::MillisecondTimestamp(); |
380 EXPECT_EQ(0, test_scaler_.Scale(input_frame, &output_frame)); | 378 EXPECT_EQ(0, test_scaler_.Scale(input_frame, &output_frame)); |
381 total_clock += TickTime::MillisecondTimestamp() - start_clock; | 379 total_clock += TickTime::MillisecondTimestamp() - start_clock; |
382 if (PrintVideoFrame(output_frame, output_file) < 0) { | 380 if (PrintVideoFrame(output_frame, output_file) < 0) { |
383 return; | 381 return; |
384 } | 382 } |
385 frame_count++; | 383 frame_count++; |
386 } | 384 } |
387 | 385 |
388 if (frame_count) { | 386 if (frame_count) { |
389 printf("Scaling[%d %d] => [%d %d]: ", | 387 printf("Scaling[%d %d] => [%d %d]: ", |
390 src_width, src_height, dst_width, dst_height); | 388 src_width, src_height, dst_width, dst_height); |
391 printf("Average time per frame[ms]: %.2lf\n", | 389 printf("Average time per frame[ms]: %.2lf\n", |
392 (static_cast<double>(total_clock) / frame_count)); | 390 (static_cast<double>(total_clock) / frame_count)); |
393 } | 391 } |
394 ASSERT_EQ(0, fclose(output_file)); | 392 ASSERT_EQ(0, fclose(output_file)); |
395 } | 393 } |
396 | 394 |
397 } // namespace webrtc | 395 } // namespace webrtc |
OLD | NEW |