Coverage Report

Created: 2025-06-22 08:04

/src/aom/av1/encoder/k_means_template.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
3
 *
4
 * This source code is subject to the terms of the BSD 2 Clause License and
5
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6
 * was not distributed with this source code in the LICENSE file, you can
7
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8
 * Media Patent License 1.0 was not distributed with this source code in the
9
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10
 */
11
12
#include <assert.h>
13
#include <stdint.h>
14
#include <stdlib.h>
15
#include <string.h>
16
17
#include "av1/common/blockd.h"
18
#include "av1/encoder/palette.h"
19
#include "av1/encoder/random.h"
20
21
#ifndef AV1_K_MEANS_DIM
22
#error "This template requires AV1_K_MEANS_DIM to be defined"
23
#endif
24
25
0
#define RENAME_(x, y) AV1_K_MEANS_RENAME(x, y)
26
0
#define RENAME(x) RENAME_(x, AV1_K_MEANS_DIM)
27
#define K_MEANS_RENAME_C(x, y) x##_dim##y##_c
28
#define RENAME_C_(x, y) K_MEANS_RENAME_C(x, y)
29
#define RENAME_C(x) RENAME_C_(x, AV1_K_MEANS_DIM)
30
31
// Though we want to compute the smallest L2 norm, in 1 dimension,
32
// it is equivalent to find the smallest L1 norm and then square it.
33
// This is preferrable for speed, especially on the SIMD side.
34
0
static int RENAME(calc_dist)(const int16_t *p1, const int16_t *p2) {
35
#if AV1_K_MEANS_DIM == 1
36
  return abs(p1[0] - p2[0]);
37
#else
38
  int dist = 0;
39
0
  for (int i = 0; i < AV1_K_MEANS_DIM; ++i) {
40
0
    const int diff = p1[i] - p2[i];
41
0
    dist += diff * diff;
42
0
  }
43
  return dist;
44
#endif
45
0
}
Unexecuted instantiation: palette.c:calc_dist_dim1
Unexecuted instantiation: palette.c:calc_dist_dim2
46
47
void RENAME_C(av1_calc_indices)(const int16_t *data, const int16_t *centroids,
48
0
                                uint8_t *indices, int64_t *dist, int n, int k) {
49
0
  if (dist) {
50
0
    *dist = 0;
51
0
  }
52
0
  for (int i = 0; i < n; ++i) {
53
0
    int min_dist = RENAME(calc_dist)(data + i * AV1_K_MEANS_DIM, centroids);
54
0
    indices[i] = 0;
55
0
    for (int j = 1; j < k; ++j) {
56
0
      const int this_dist = RENAME(calc_dist)(data + i * AV1_K_MEANS_DIM,
57
0
                                              centroids + j * AV1_K_MEANS_DIM);
58
0
      if (this_dist < min_dist) {
59
0
        min_dist = this_dist;
60
0
        indices[i] = j;
61
0
      }
62
0
    }
63
0
    if (dist) {
64
#if AV1_K_MEANS_DIM == 1
65
      *dist += min_dist * min_dist;
66
#else
67
      *dist += min_dist;
68
#endif
69
0
    }
70
0
  }
71
0
}
Unexecuted instantiation: av1_calc_indices_dim1_c
Unexecuted instantiation: av1_calc_indices_dim2_c
72
73
static void RENAME(calc_centroids)(const int16_t *data, int16_t *centroids,
74
0
                                   const uint8_t *indices, int n, int k) {
75
0
  int i, j;
76
0
  int count[PALETTE_MAX_SIZE] = { 0 };
77
0
  int centroids_sum[AV1_K_MEANS_DIM * PALETTE_MAX_SIZE];
78
0
  unsigned int rand_state = (unsigned int)data[0];
79
0
  assert(n <= 32768);
80
0
  memset(centroids_sum, 0, sizeof(centroids_sum[0]) * k * AV1_K_MEANS_DIM);
81
82
0
  for (i = 0; i < n; ++i) {
83
0
    const int index = indices[i];
84
0
    assert(index < k);
85
0
    ++count[index];
86
0
    for (j = 0; j < AV1_K_MEANS_DIM; ++j) {
87
0
      centroids_sum[index * AV1_K_MEANS_DIM + j] +=
88
0
          data[i * AV1_K_MEANS_DIM + j];
89
0
    }
90
0
  }
91
92
0
  for (i = 0; i < k; ++i) {
93
0
    if (count[i] == 0) {
94
0
      memcpy(centroids + i * AV1_K_MEANS_DIM,
95
0
             data + (lcg_rand16(&rand_state) % n) * AV1_K_MEANS_DIM,
96
0
             sizeof(centroids[0]) * AV1_K_MEANS_DIM);
97
0
    } else {
98
0
      for (j = 0; j < AV1_K_MEANS_DIM; ++j) {
99
0
        centroids[i * AV1_K_MEANS_DIM + j] =
100
0
            DIVIDE_AND_ROUND(centroids_sum[i * AV1_K_MEANS_DIM + j], count[i]);
101
0
      }
102
0
    }
103
0
  }
104
0
}
Unexecuted instantiation: palette.c:calc_centroids_dim1
Unexecuted instantiation: palette.c:calc_centroids_dim2
105
106
void RENAME(av1_k_means)(const int16_t *data, int16_t *centroids,
107
0
                         uint8_t *indices, int n, int k, int max_itr) {
108
0
  int16_t centroids_tmp[AV1_K_MEANS_DIM * PALETTE_MAX_SIZE];
109
0
  uint8_t indices_tmp[MAX_PALETTE_BLOCK_WIDTH * MAX_PALETTE_BLOCK_HEIGHT];
110
0
  int16_t *meta_centroids[2] = { centroids, centroids_tmp };
111
0
  uint8_t *meta_indices[2] = { indices, indices_tmp };
112
0
  int i, l = 0, prev_l, best_l = 0;
113
0
  int64_t this_dist;
114
115
0
  assert(n <= MAX_PALETTE_BLOCK_WIDTH * MAX_PALETTE_BLOCK_HEIGHT);
116
117
#if AV1_K_MEANS_DIM == 1
118
0
  av1_calc_indices_dim1(data, centroids, indices, &this_dist, n, k);
119
#else
120
0
  av1_calc_indices_dim2(data, centroids, indices, &this_dist, n, k);
121
#endif
122
123
0
  for (i = 0; i < max_itr; ++i) {
124
0
    const int64_t prev_dist = this_dist;
125
0
    prev_l = l;
126
0
    l = (l == 1) ? 0 : 1;
127
128
0
    RENAME(calc_centroids)(data, meta_centroids[l], meta_indices[prev_l], n, k);
129
0
    if (!memcmp(meta_centroids[l], meta_centroids[prev_l],
130
0
                sizeof(centroids[0]) * k * AV1_K_MEANS_DIM)) {
131
0
      break;
132
0
    }
133
#if AV1_K_MEANS_DIM == 1
134
0
    av1_calc_indices_dim1(data, meta_centroids[l], meta_indices[l], &this_dist,
135
0
                          n, k);
136
#else
137
0
    av1_calc_indices_dim2(data, meta_centroids[l], meta_indices[l], &this_dist,
138
0
                          n, k);
139
0
#endif
140
141
0
    if (this_dist > prev_dist) {
142
0
      best_l = prev_l;
143
0
      break;
144
0
    }
145
0
  }
146
0
  if (i == max_itr) best_l = l;
147
0
  if (best_l != 0) {
148
0
    memcpy(centroids, meta_centroids[1],
149
0
           sizeof(centroids[0]) * k * AV1_K_MEANS_DIM);
150
0
    memcpy(indices, meta_indices[1], sizeof(indices[0]) * n);
151
0
  }
152
0
}
Unexecuted instantiation: av1_k_means_dim1
Unexecuted instantiation: av1_k_means_dim2
153
#undef RENAME_
154
#undef RENAME
155
#undef K_MEANS_RENAME_C
156
#undef RENAME_C_
157
#undef RENAME_C