OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2011 The LibYuv 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 1673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1684 free_aligned_buffer_64(orig_v); \ | 1684 free_aligned_buffer_64(orig_v); \ |
1685 free_aligned_buffer_64(dst_y_orig); \ | 1685 free_aligned_buffer_64(dst_y_orig); \ |
1686 free_aligned_buffer_64(dst_uv_orig); \ | 1686 free_aligned_buffer_64(dst_uv_orig); \ |
1687 free_aligned_buffer_64(dst_y); \ | 1687 free_aligned_buffer_64(dst_y); \ |
1688 free_aligned_buffer_64(dst_uv); \ | 1688 free_aligned_buffer_64(dst_uv); \ |
1689 } | 1689 } |
1690 | 1690 |
1691 TESTPTOB(TestYUY2ToNV12, YUY2ToI420, YUY2ToNV12) | 1691 TESTPTOB(TestYUY2ToNV12, YUY2ToI420, YUY2ToNV12) |
1692 TESTPTOB(TestUYVYToNV12, UYVYToI420, UYVYToNV12) | 1692 TESTPTOB(TestUYVYToNV12, UYVYToI420, UYVYToNV12) |
1693 | 1693 |
| 1694 TEST_F(LibYUVConvertTest, TestI444ToABGRvsARGB) { |
| 1695 align_buffer_64(src_y, benchmark_width_ * benchmark_height_); |
| 1696 align_buffer_64(src_u, benchmark_width_ * benchmark_height_); |
| 1697 align_buffer_64(src_v, benchmark_width_ * benchmark_height_); |
| 1698 align_buffer_64(dst_argb, benchmark_width_ * benchmark_height_ * 4); |
| 1699 align_buffer_64(dst_abgr, benchmark_width_ * benchmark_height_ * 4); |
| 1700 MemRandomize(src_y, benchmark_width_ * benchmark_height_); |
| 1701 MemRandomize(src_u, benchmark_width_ * benchmark_height_); |
| 1702 MemRandomize(src_v, benchmark_width_ * benchmark_height_); |
| 1703 MemRandomize(dst_argb, benchmark_width_ * benchmark_height_ * 4); |
| 1704 MemRandomize(dst_abgr, benchmark_width_ * benchmark_height_ * 4); |
| 1705 libyuv::I444ToARGB(src_y, benchmark_width_, |
| 1706 src_u, benchmark_width_, |
| 1707 src_v, benchmark_width_, |
| 1708 dst_argb, benchmark_width_ * 4, |
| 1709 benchmark_width_, benchmark_height_); |
| 1710 libyuv::I444ToABGR(src_y, benchmark_width_, |
| 1711 src_u, benchmark_width_, |
| 1712 src_v, benchmark_width_, |
| 1713 dst_abgr, benchmark_width_ * 4, |
| 1714 benchmark_width_, benchmark_height_); |
| 1715 // swap in place. |
| 1716 libyuv::ABGRToARGB(dst_abgr, benchmark_width_ * 4, |
| 1717 dst_abgr, benchmark_width_ * 4, |
| 1718 benchmark_width_, benchmark_height_); |
| 1719 for (int i = 0; i < benchmark_width_ * benchmark_height_ * 4; ++i) { |
| 1720 EXPECT_EQ(dst_abgr[i], dst_argb[i]); |
| 1721 } |
| 1722 free_aligned_buffer_64(src_y); |
| 1723 free_aligned_buffer_64(src_u); |
| 1724 free_aligned_buffer_64(src_v); |
| 1725 free_aligned_buffer_64(dst_argb); |
| 1726 free_aligned_buffer_64(dst_abgr); |
| 1727 } |
| 1728 |
1694 } // namespace libyuv | 1729 } // namespace libyuv |
OLD | NEW |