/* * Copyright 2015 The LibYuv Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include #include "libyuv/convert.h" #include "libyuv/convert_argb.h" #include "libyuv/convert_from.h" #include "libyuv/convert_from_argb.h" #include "libyuv/cpu_id.h" #include "libyuv/row.h" // For Sobel #include "../unit_test/unit_test.h" namespace libyuv { #define TESTCS(TESTNAME, YUVTOARGB, ARGBTOYUV, HS1, HS, HN, DIFF) \ TEST_F(libyuvTest, TESTNAME) { \ const int kPixels = benchmark_width_ * benchmark_height_; \ const int kHalfPixels = ((benchmark_width_ + 1) / 2) * \ ((benchmark_height_ + HS1) / HS); \ align_buffer_64(orig_y, kPixels); \ align_buffer_64(orig_u, kHalfPixels); \ align_buffer_64(orig_v, kHalfPixels); \ align_buffer_64(orig_pixels, kPixels * 4); \ align_buffer_64(temp_y, kPixels); \ align_buffer_64(temp_u, kHalfPixels); \ align_buffer_64(temp_v, kHalfPixels); \ align_buffer_64(dst_pixels_opt, kPixels * 4); \ align_buffer_64(dst_pixels_c, kPixels * 4); \ \ MemRandomize(orig_pixels, kPixels * 4); \ MemRandomize(orig_y, kPixels); \ MemRandomize(orig_u, kHalfPixels); \ MemRandomize(orig_v, kHalfPixels); \ MemRandomize(temp_y, kPixels); \ MemRandomize(temp_u, kHalfPixels); \ MemRandomize(temp_v, kHalfPixels); \ MemRandomize(dst_pixels_opt, kPixels * 4); \ MemRandomize(dst_pixels_c, kPixels * 4); \ \ /* The test is overall for color conversion matrix being reversible, so */ \ /* this initializes the pixel with 2x2 blocks to eliminate subsampling. */ \ uint8* p = orig_y; \ for (int y = 0; y < benchmark_height_ - HS1; y += HS) { \ for (int x = 0; x < benchmark_width_ - 1; x += 2) { \ uint8 r = static_cast(random()); \ p[0] = r; \ p[1] = r; \ p[HN] = r; \ p[HN + 1] = r; \ p += 2; \ } \ p += HN; \ } \ \ /* Start with YUV converted to ARGB. */ \ YUVTOARGB(orig_y, benchmark_width_, \ orig_u, (benchmark_width_ + 1) / 2, \ orig_v, (benchmark_width_ + 1) / 2, \ orig_pixels, benchmark_width_ * 4, \ benchmark_width_, benchmark_height_); \ \ ARGBTOYUV(orig_pixels, benchmark_width_ * 4, \ temp_y, benchmark_width_, \ temp_u, (benchmark_width_ + 1) / 2, \ temp_v, (benchmark_width_ + 1) / 2, \ benchmark_width_, benchmark_height_); \ \ MaskCpuFlags(0); \ YUVTOARGB(temp_y, benchmark_width_, \ temp_u, (benchmark_width_ + 1) / 2, \ temp_v, (benchmark_width_ + 1) / 2, \ dst_pixels_c, benchmark_width_ * 4, \ benchmark_width_, benchmark_height_); \ MaskCpuFlags(-1); \ \ for (int i = 0; i < benchmark_iterations_; ++i) { \ YUVTOARGB(temp_y, benchmark_width_, \ temp_u, (benchmark_width_ + 1) / 2, \ temp_v, (benchmark_width_ + 1) / 2, \ dst_pixels_opt, benchmark_width_ * 4, \ benchmark_width_, benchmark_height_); \ } \ /* Test C and SIMD match. */ \ for (int i = 0; i < kPixels * 4; ++i) { \ EXPECT_EQ(dst_pixels_c[i], dst_pixels_opt[i]); \ } \ /* Test SIMD is close to original. */ \ for (int i = 0; i < kPixels * 4; ++i) { \ EXPECT_NEAR(static_cast(orig_pixels[i]), \ static_cast(dst_pixels_opt[i]), DIFF); \ } \ \ free_aligned_buffer_64(orig_pixels); \ free_aligned_buffer_64(orig_y); \ free_aligned_buffer_64(orig_u); \ free_aligned_buffer_64(orig_v); \ free_aligned_buffer_64(temp_y); \ free_aligned_buffer_64(temp_u); \ free_aligned_buffer_64(temp_v); \ free_aligned_buffer_64(dst_pixels_opt); \ free_aligned_buffer_64(dst_pixels_c); \ } \ TESTCS(TestJ420, J420ToARGB, ARGBToJ420, 1, 2, benchmark_width_, 3) TESTCS(TestI420, I420ToARGB, ARGBToI420, 1, 2, benchmark_width_, 6) TESTCS(TestI422, I422ToARGB, ARGBToI422, 0, 1, 0, 6) } // namespace libyuv