scale_test.cc 6.28 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 *  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 "unit_test.h"
frkoenig@google.com's avatar
frkoenig@google.com committed
12

13 14 15
#include <stdlib.h>
#include <time.h>

frkoenig@google.com's avatar
frkoenig@google.com committed
16 17 18
#include "libyuv/cpu_id.h"
#include "libyuv/scale.h"

mikhal@webrtc.org's avatar
mikhal@webrtc.org committed
19
namespace libyuv {
20

21 22 23
static int TestFilter(int src_width, int src_height,
                      int dst_width, int dst_height,
                      FilterMode f) {
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

  int b = 128;
  int src_width_uv = (src_width + 1) >> 1;
  int src_height_uv = (src_height + 1) >> 1;

  int src_y_plane_size = (src_width + (2 * b)) * (src_height + (2 * b));
  int src_uv_plane_size = (src_width_uv + (2 * b)) * (src_height_uv + (2 * b));

  int src_stride_y = 2 * b + src_width;
  int src_stride_uv = 2 * b + src_width_uv;

  align_buffer_16(src_y, src_y_plane_size)
  align_buffer_16(src_u, src_uv_plane_size)
  align_buffer_16(src_v, src_uv_plane_size)

  int dst_width_uv = (dst_width + 1) >> 1;
  int dst_height_uv = (dst_height + 1) >> 1;

  int dst_y_plane_size = (dst_width + (2 * b)) * (dst_height + (2 * b));
  int dst_uv_plane_size = (dst_width_uv + (2 * b)) * (dst_height_uv + (2 * b));

  int dst_stride_y = 2 * b + dst_width;
  int dst_stride_uv = 2 * b + dst_width_uv;

  srandom(time(NULL));

  int i, j;

  for (i = b; i < (src_height + b); ++i) {
    for (j = b; j < (src_width + b); ++j) {
      src_y[(i * src_stride_y) + j] = (random() & 0xff);
    }
  }

  for (i = b; i < (src_height_uv + b); ++i) {
    for (j = b; j < (src_width_uv + b); ++j) {
      src_u[(i * src_stride_uv) + j] = (random() & 0xff);
      src_v[(i * src_stride_uv) + j] = (random() & 0xff);
    }
  }

65 66 67 68 69 70 71 72
  const int runs = 128;
  align_buffer_16(dst_y_c, dst_y_plane_size)
  align_buffer_16(dst_u_c, dst_uv_plane_size)
  align_buffer_16(dst_v_c, dst_uv_plane_size)
  align_buffer_16(dst_y_opt, dst_y_plane_size)
  align_buffer_16(dst_u_opt, dst_uv_plane_size)
  align_buffer_16(dst_v_opt, dst_uv_plane_size)

mikhal@webrtc.org's avatar
mikhal@webrtc.org committed
73
  MaskCpuFlags(kCpuInitialized);
74
  double c_time = get_time();
75

76
  for (i = 0; i < runs; ++i)
77 78 79 80 81 82 83
    I420Scale(src_y + (src_stride_y * b) + b, src_stride_y,
              src_u + (src_stride_uv * b) + b, src_stride_uv,
              src_v + (src_stride_uv * b) + b, src_stride_uv,
              src_width, src_height,
              dst_y_c + (dst_stride_y * b) + b, dst_stride_y,
              dst_u_c + (dst_stride_uv * b) + b, dst_stride_uv,
              dst_v_c + (dst_stride_uv * b) + b, dst_stride_uv,
84
              dst_width, dst_height, f);
85

86 87
  c_time = (get_time() - c_time) / runs;

mikhal@webrtc.org's avatar
mikhal@webrtc.org committed
88
  MaskCpuFlags(-1);
89 90 91
  double opt_time = get_time();

  for (i = 0; i < runs; ++i)
92 93 94 95 96 97 98
    I420Scale(src_y + (src_stride_y * b) + b, src_stride_y,
              src_u + (src_stride_uv * b) + b, src_stride_uv,
              src_v + (src_stride_uv * b) + b, src_stride_uv,
              src_width, src_height,
              dst_y_opt + (dst_stride_y * b) + b, dst_stride_y,
              dst_u_opt + (dst_stride_uv * b) + b, dst_stride_uv,
              dst_v_opt + (dst_stride_uv * b) + b, dst_stride_uv,
99
              dst_width, dst_height, f);
100

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
  opt_time = (get_time() - opt_time) / runs;

  printf ("filter %d - %8d us c - %8d us opt\n",
          f, (int)(c_time*1e6), (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 err = 0;
  int max_diff = 0;
  for (i = b; i < (dst_height + b); ++i) {
    for (j = b; j < (dst_width + b); ++j) {
      int abs_diff = abs(dst_y_c[(i * dst_stride_y) + j] -
                          dst_y_opt[(i * dst_stride_y) + j]);
      if (abs_diff > max_diff)
        max_diff = abs_diff;
118
    }
119
  }
120

121 122 123 124 125 126 127 128 129 130
  for (i = b; i < (dst_height_uv + b); ++i) {
    for (j = b; j < (dst_width_uv + b); ++j) {
      int abs_diff = abs(dst_u_c[(i * dst_stride_uv) + j] -
                          dst_u_opt[(i * dst_stride_uv) + j]);
      if (abs_diff > max_diff)
        max_diff = abs_diff;
      abs_diff = abs(dst_v_c[(i * dst_stride_uv) + j] -
                      dst_v_opt[(i * dst_stride_uv) + j]);
      if (abs_diff > max_diff)
        max_diff = abs_diff;
131

132
    }
133 134
  }

135 136 137 138 139 140 141 142 143 144
  if (max_diff > 2)
    err++;

  free_aligned_buffer_16(dst_y_c)
  free_aligned_buffer_16(dst_u_c)
  free_aligned_buffer_16(dst_v_c)
  free_aligned_buffer_16(dst_y_opt)
  free_aligned_buffer_16(dst_u_opt)
  free_aligned_buffer_16(dst_v_opt)

145 146 147 148
  free_aligned_buffer_16(src_y)
  free_aligned_buffer_16(src_u)
  free_aligned_buffer_16(src_v)

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  return err;
}

TEST_F(libyuvTest, ScaleDownBy2) {

  const int src_width = 1280;
  const int src_height = 720;
  const int dst_width = src_width >> 1;
  const int dst_height = src_height >> 1;
  int err = 0;

  for (int f = 0; f < 3; ++f)
    err += TestFilter (src_width, src_height,
                       dst_width, dst_height,
                       static_cast<FilterMode>(f));

  EXPECT_EQ(0, err);
}

TEST_F(libyuvTest, ScaleDownBy4) {

  const int src_width = 1280;
  const int src_height = 720;
  const int dst_width = src_width >> 2;
  const int dst_height = src_height >> 2;
  int err = 0;

  for (int f = 0; f < 3; ++f)
    err += TestFilter (src_width, src_height,
                       dst_width, dst_height,
                       static_cast<FilterMode>(f));

  EXPECT_EQ(0, err);
}

TEST_F(libyuvTest, ScaleDownBy34) {

  const int src_width = 1280;
  const int src_height = 720;
  const int dst_width = (src_width*3) >> 2;
  const int dst_height = (src_height*3) >> 2;
  int err = 0;

  for (int f = 0; f < 3; ++f)
    err += TestFilter (src_width, src_height,
                       dst_width, dst_height,
                       static_cast<FilterMode>(f));

  EXPECT_EQ(0, err);
}

TEST_F(libyuvTest, ScaleDownBy38) {
  int src_width = 1280;
  int src_height = 720;
  int dst_width = (src_width*3) >> 3;
  int dst_height = (src_height*3) >> 3;

  int err = 0;

  for (int f = 0; f < 3; ++f)
    err += TestFilter (src_width, src_height,
                       dst_width, dst_height,
                       static_cast<FilterMode>(f));

213 214
  EXPECT_EQ(0, err);
}
mikhal@webrtc.org's avatar
mikhal@webrtc.org committed
215

frkoenig@google.com's avatar
frkoenig@google.com committed
216
}  // namespace libyuv