| 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 |
| 11 #include <math.h> | 11 #include <math.h> |
| 12 #include <string.h> | 12 #include <string.h> |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 | 15 |
| 16 #include "webrtc/test/gtest.h" | |
| 17 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 16 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 18 #include "webrtc/test/frame_utils.h" | 17 #include "webrtc/test/frame_utils.h" |
| 18 #include "webrtc/test/gtest.h" |
| 19 #include "webrtc/test/testsupport/fileutils.h" | 19 #include "webrtc/test/testsupport/fileutils.h" |
| 20 #include "webrtc/video_frame.h" | 20 #include "webrtc/video_frame.h" |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| 25 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) { | 25 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) { |
| 26 *stride_y = 16 * ((width + 15) / 16); | 26 *stride_y = 16 * ((width + 15) / 16); |
| 27 *stride_uv = 16 * ((width + 31) / 32); | 27 *stride_uv = 16 * ((width + 31) / 32); |
| 28 } | 28 } |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 0, kVideoRotation_270, | 247 0, kVideoRotation_270, |
| 248 rotated_res_i420_buffer.get())); | 248 rotated_res_i420_buffer.get())); |
| 249 rotated_res_i420_buffer = I420Buffer::Create( | 249 rotated_res_i420_buffer = I420Buffer::Create( |
| 250 width_, height_, width_, (width_ + 1) / 2, (width_ + 1) / 2); | 250 width_, height_, width_, (width_ + 1) / 2, (width_ + 1) / 2); |
| 251 EXPECT_EQ(0, ConvertToI420(kI420, orig_buffer, 0, 0, width_, height_, | 251 EXPECT_EQ(0, ConvertToI420(kI420, orig_buffer, 0, 0, width_, height_, |
| 252 0, kVideoRotation_180, | 252 0, kVideoRotation_180, |
| 253 rotated_res_i420_buffer.get())); | 253 rotated_res_i420_buffer.get())); |
| 254 } | 254 } |
| 255 | 255 |
| 256 } // namespace webrtc | 256 } // namespace webrtc |
| OLD | NEW |