mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
BUG=none TEST=build\release\libyuv_unittest.exe --gtest_catch_exceptions=0 --gtest_filter=*ARGBScale* Review URL: https://webrtc-codereview.appspot.com/570005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@262 16f28f9a-4ce2-e073-06de-1de4eb20be90
217 lines
6.8 KiB
C++
217 lines
6.8 KiB
C++
/*
|
|
* Copyright (c) 2011 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 <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include "libyuv/cpu_id.h"
|
|
#include "libyuv/scale_argb.h"
|
|
#include "unit_test/unit_test.h"
|
|
|
|
namespace libyuv {
|
|
|
|
static int ARGBTestFilter(int src_width, int src_height,
|
|
int dst_width, int dst_height,
|
|
FilterMode f) {
|
|
const int b = 128;
|
|
int src_argb_plane_size = (src_width + (2 * b)) * (src_height + (2 * b)) * 4;
|
|
int src_stride_argb = (2 * b + src_width) * 4;
|
|
|
|
align_buffer_16(src_argb, src_argb_plane_size)
|
|
memset(src_argb, 1, src_argb_plane_size);
|
|
|
|
int dst_argb_plane_size = (dst_width + (2 * b)) * (dst_height + (2 * b)) * 4;
|
|
int dst_stride_argb = (2 * b + dst_width) * 4;
|
|
|
|
srandom(time(NULL));
|
|
|
|
int i, j;
|
|
for (i = b; i < (src_height + b); ++i) {
|
|
for (j = b; j < (src_width + b) * 4; ++j) {
|
|
src_argb[(i * src_stride_argb) + j] = (random() & 0xff);
|
|
}
|
|
}
|
|
|
|
const int runs = 1000;
|
|
align_buffer_16(dst_argb_c, dst_argb_plane_size)
|
|
align_buffer_16(dst_argb_opt, dst_argb_plane_size)
|
|
memset(dst_argb_c, 2, dst_argb_plane_size);
|
|
memset(dst_argb_opt, 3, dst_argb_plane_size);
|
|
|
|
// Warm up both versions for consistent benchmarks.
|
|
MaskCpuFlags(0); // Disable all CPU optimization.
|
|
ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
|
|
src_width, src_height,
|
|
dst_argb_c + (dst_stride_argb * b) + b * 4, dst_stride_argb,
|
|
dst_width, dst_height, f);
|
|
MaskCpuFlags(-1); // Enable all CPU optimization.
|
|
ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
|
|
src_width, src_height,
|
|
dst_argb_opt + (dst_stride_argb * b) + b * 4, dst_stride_argb,
|
|
dst_width, dst_height, f);
|
|
|
|
MaskCpuFlags(0); // Disable all CPU optimization.
|
|
double c_time = get_time();
|
|
for (i = 0; i < runs; ++i) {
|
|
ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
|
|
src_width, src_height,
|
|
dst_argb_c + (dst_stride_argb * b) + b * 4, dst_stride_argb,
|
|
dst_width, dst_height, f);
|
|
}
|
|
c_time = (get_time() - c_time) / runs;
|
|
|
|
MaskCpuFlags(-1); // Enable all CPU optimization.
|
|
double opt_time = get_time();
|
|
for (i = 0; i < runs; ++i) {
|
|
ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
|
|
src_width, src_height,
|
|
dst_argb_opt + (dst_stride_argb * b) + b * 4, dst_stride_argb,
|
|
dst_width, dst_height, f);
|
|
}
|
|
opt_time = (get_time() - opt_time) / runs;
|
|
|
|
// Report performance of C vs OPT
|
|
printf("filter %d - %8d us C - %8d us OPT\n",
|
|
f, static_cast<int>(c_time*1e6), static_cast<int>(opt_time*1e6));
|
|
|
|
// C version may be a little off from the optimized. Order of
|
|
// operations may introduce rounding somewhere. So do a difference
|
|
// of the buffers and look to see that the max difference isn't
|
|
// over 2.
|
|
int max_diff = 0;
|
|
for (i = b; i < (dst_height + b); ++i) {
|
|
for (j = b * 4; j < (dst_width + b) * 4; ++j) {
|
|
int abs_diff = abs(dst_argb_c[(i * dst_stride_argb) + j] -
|
|
dst_argb_opt[(i * dst_stride_argb) + j]);
|
|
if (abs_diff > max_diff)
|
|
max_diff = abs_diff;
|
|
}
|
|
}
|
|
|
|
free_aligned_buffer_16(dst_argb_c)
|
|
free_aligned_buffer_16(dst_argb_opt)
|
|
free_aligned_buffer_16(src_argb)
|
|
return max_diff;
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy2) {
|
|
const int src_width = 1280;
|
|
const int src_height = 720;
|
|
const int dst_width = src_width / 2;
|
|
const int dst_height = src_height / 2;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy4) {
|
|
const int src_width = 1280;
|
|
const int src_height = 720;
|
|
const int dst_width = src_width / 4;
|
|
const int dst_height = src_height / 4;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy5) {
|
|
const int src_width = 1280;
|
|
const int src_height = 720;
|
|
const int dst_width = src_width / 5;
|
|
const int dst_height = src_height / 5;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy8) {
|
|
const int src_width = 1280;
|
|
const int src_height = 720;
|
|
const int dst_width = src_width / 8;
|
|
const int dst_height = src_height / 8;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy16) {
|
|
const int src_width = 1280;
|
|
const int src_height = 720;
|
|
const int dst_width = src_width / 16;
|
|
const int dst_height = src_height / 16;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy34) {
|
|
const int src_width = 1280;
|
|
const int src_height = 720;
|
|
const int dst_width = src_width * 3 / 4;
|
|
const int dst_height = src_height * 3 / 4;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleDownBy38) {
|
|
int src_width = 1280;
|
|
int src_height = 720;
|
|
int dst_width = src_width * 3 / 8;
|
|
int dst_height = src_height * 3 / 8;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
TEST_F(libyuvTest, ARGBScaleTo1366) {
|
|
int src_width = 1280;
|
|
int src_height = 720;
|
|
int dst_width = 1366;
|
|
int dst_height = 768;
|
|
|
|
for (int f = 0; f < 2; ++f) {
|
|
int err = ARGBTestFilter(src_width, src_height,
|
|
dst_width, dst_height,
|
|
static_cast<FilterMode>(f));
|
|
EXPECT_GE(1, err);
|
|
}
|
|
}
|
|
|
|
} // namespace libyuv
|