libyuv/unit_test/rotate_argb_test.cc
fbarchard@google.com cde587092f Replace two spaces with one after .
BUG=none
TEST=lint
Review URL: https://webrtc-codereview.appspot.com/1063010

git-svn-id: http://libyuv.googlecode.com/svn/trunk@553 16f28f9a-4ce2-e073-06de-1de4eb20be90
2013-01-28 00:02:35 +00:00

195 lines
6.7 KiB
C++

/*
* Copyright 2012 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/rotate_argb.h"
#include "../unit_test/unit_test.h"
namespace libyuv {
static int ARGBTestRotate(int src_width, int src_height,
int dst_width, int dst_height,
libyuv::RotationMode mode, int benchmark_iterations) {
const int b = 128;
int src_argb_plane_size = (src_width + b * 2) * (src_height + b * 2) * 4;
int src_stride_argb = (b * 2 + src_width) * 4;
align_buffer_64(src_argb, src_argb_plane_size)
memset(src_argb, 1, src_argb_plane_size);
int dst_argb_plane_size = (dst_width + b * 2) * (dst_height + b * 2) * 4;
int dst_stride_argb = (b * 2 + 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);
}
}
align_buffer_64(dst_argb_c, dst_argb_plane_size)
align_buffer_64(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.
ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
dst_argb_c + (dst_stride_argb * b) + b * 4, dst_stride_argb,
src_width, src_height, mode);
MaskCpuFlags(-1); // Enable all CPU optimization.
ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
dst_argb_opt + (dst_stride_argb * b) + b * 4, dst_stride_argb,
src_width, src_height, mode);
MaskCpuFlags(0); // Disable all CPU optimization.
double c_time = get_time();
ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
dst_argb_c + (dst_stride_argb * b) + b * 4, dst_stride_argb,
src_width, src_height, mode);
c_time = (get_time() - c_time);
MaskCpuFlags(-1); // Enable all CPU optimization.
double opt_time = get_time();
for (i = 0; i < benchmark_iterations; ++i) {
ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
dst_argb_opt + (dst_stride_argb * b) + b * 4, dst_stride_argb,
src_width, src_height, mode);
}
opt_time = (get_time() - opt_time) / benchmark_iterations;
// Report performance of C vs OPT
printf("filter %d - %8d us C - %8d us OPT\n",
mode, 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_64(dst_argb_c)
free_aligned_buffer_64(dst_argb_opt)
free_aligned_buffer_64(src_argb)
return max_diff;
}
TEST_F(libyuvTest, ARGBRotate0) {
const int src_width = benchmark_width_;
const int src_height = benchmark_height_;
const int dst_width = benchmark_width_;
const int dst_height = benchmark_height_;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate0,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate90) {
const int src_width = benchmark_width_;
const int src_height = benchmark_height_;
const int dst_width = benchmark_height_;
const int dst_height = benchmark_width_;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate90,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate180) {
const int src_width = benchmark_width_;
const int src_height = benchmark_height_;
const int dst_width = benchmark_width_;
const int dst_height = benchmark_height_;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate180,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate270) {
const int src_width = benchmark_width_;
const int src_height = benchmark_height_;
const int dst_width = benchmark_height_;
const int dst_height = benchmark_width_;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate270,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate0_Odd) {
const int src_width = benchmark_width_ - 3;
const int src_height = benchmark_height_ - 1;
const int dst_width = benchmark_width_ - 3;
const int dst_height = benchmark_height_ - 1;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate0,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate90_Odd) {
const int src_width = benchmark_width_ - 3;
const int src_height = benchmark_height_ - 1;
const int dst_width = benchmark_height_ - 1;
const int dst_height = benchmark_width_ - 3;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate90,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate180_Odd) {
const int src_width = benchmark_width_ - 3;
const int src_height = benchmark_height_ - 1;
const int dst_width = benchmark_width_ - 3;
const int dst_height = benchmark_height_ - 1;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate180,
benchmark_iterations_);
EXPECT_GE(1, err);
}
TEST_F(libyuvTest, ARGBRotate270_Odd) {
const int src_width = benchmark_width_ - 3;
const int src_height = benchmark_height_ - 1;
const int dst_width = benchmark_height_ - 1;
const int dst_height = benchmark_width_ - 3;
int err = ARGBTestRotate(src_width, src_height,
dst_width, dst_height, kRotate270,
benchmark_iterations_);
EXPECT_GE(1, err);
}
} // namespace libyuv