Coverage Report

Created: 2026-09-14 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/aom_dsp/intrapred.c
Line
Count
Source
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 <math.h>
14
15
#include "config/aom_config.h"
16
#include "config/aom_dsp_rtcd.h"
17
18
#include "aom_dsp/aom_dsp_common.h"
19
#include "aom_dsp/intrapred_common.h"
20
#include "aom_mem/aom_mem.h"
21
#include "aom_ports/bitops.h"
22
23
static inline void v_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
24
600k
                               const uint8_t *above, const uint8_t *left) {
25
600k
  int r;
26
600k
  (void)left;
27
28
4.67M
  for (r = 0; r < bh; r++) {
29
4.07M
    memcpy(dst, above, bw);
30
4.07M
    dst += stride;
31
4.07M
  }
32
600k
}
33
34
static inline void h_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
35
516k
                               const uint8_t *above, const uint8_t *left) {
36
516k
  int r;
37
516k
  (void)above;
38
39
4.62M
  for (r = 0; r < bh; r++) {
40
4.10M
    memset(dst, left[r], bw);
41
4.10M
    dst += stride;
42
4.10M
  }
43
516k
}
44
45
3.53G
static inline int abs_diff(int a, int b) { return (a > b) ? a - b : b - a; }
46
47
static inline uint16_t paeth_predictor_single(uint16_t left, uint16_t top,
48
1.17G
                                              uint16_t top_left) {
49
1.17G
  const int base = top + left - top_left;
50
1.17G
  const int p_left = abs_diff(base, left);
51
1.17G
  const int p_top = abs_diff(base, top);
52
1.17G
  const int p_top_left = abs_diff(base, top_left);
53
54
  // Return nearest to base of left, top and top_left.
55
1.17G
  return (p_left <= p_top && p_left <= p_top_left) ? left
56
1.17G
         : (p_top <= p_top_left)                   ? top
57
153M
                                                   : top_left;
58
1.17G
}
59
60
static inline void paeth_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
61
                                   int bh, const uint8_t *above,
62
5.01M
                                   const uint8_t *left) {
63
5.01M
  int r, c;
64
5.01M
  const uint8_t ytop_left = above[-1];
65
66
50.4M
  for (r = 0; r < bh; r++) {
67
903M
    for (c = 0; c < bw; c++)
68
858M
      dst[c] = (uint8_t)paeth_predictor_single(left[r], above[c], ytop_left);
69
45.4M
    dst += stride;
70
45.4M
  }
71
5.01M
}
72
73
// Some basic checks on weights for smooth predictor.
74
#define sm_weights_sanity_checks(weights_w, weights_h, weights_scale, \
75
                                 pred_scale)                          \
76
2.40M
  assert(weights_w[0] < weights_scale);                               \
77
2.40M
  assert(weights_h[0] < weights_scale);                               \
78
2.40M
  assert(weights_scale - weights_w[bw - 1] < weights_scale);          \
79
2.40M
  assert(weights_scale - weights_h[bh - 1] < weights_scale);          \
80
2.40M
  assert(pred_scale < 31)  // ensures no overflow when calculating predictor.
81
82
544M
#define divide_round(value, bits) (((value) + (1 << ((bits) - 1))) >> (bits))
83
84
static inline void smooth_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
85
                                    int bh, const uint8_t *above,
86
758k
                                    const uint8_t *left) {
87
758k
  const uint8_t below_pred = left[bh - 1];   // estimated by bottom-left pixel
88
758k
  const uint8_t right_pred = above[bw - 1];  // estimated by top-right pixel
89
758k
  const uint8_t *const sm_weights_w = smooth_weights + bw - 4;
90
758k
  const uint8_t *const sm_weights_h = smooth_weights + bh - 4;
91
  // scale = 2 * 2^SMOOTH_WEIGHT_LOG2_SCALE
92
758k
  const int log2_scale = 1 + SMOOTH_WEIGHT_LOG2_SCALE;
93
758k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
94
758k
  sm_weights_sanity_checks(sm_weights_w, sm_weights_h, scale,
95
758k
                           log2_scale + sizeof(*dst));
96
758k
  int r;
97
9.03M
  for (r = 0; r < bh; ++r) {
98
8.27M
    int c;
99
164M
    for (c = 0; c < bw; ++c) {
100
155M
      const uint8_t pixels[] = { above[c], below_pred, left[r], right_pred };
101
155M
      const uint8_t weights[] = { sm_weights_h[r], scale - sm_weights_h[r],
102
155M
                                  sm_weights_w[c], scale - sm_weights_w[c] };
103
155M
      uint32_t this_pred = 0;
104
155M
      int i;
105
155M
      assert(scale >= sm_weights_h[r] && scale >= sm_weights_w[c]);
106
779M
      for (i = 0; i < 4; ++i) {
107
623M
        this_pred += weights[i] * pixels[i];
108
623M
      }
109
155M
      dst[c] = divide_round(this_pred, log2_scale);
110
155M
    }
111
8.27M
    dst += stride;
112
8.27M
  }
113
758k
}
114
115
static inline void smooth_v_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
116
                                      int bh, const uint8_t *above,
117
246k
                                      const uint8_t *left) {
118
246k
  const uint8_t below_pred = left[bh - 1];  // estimated by bottom-left pixel
119
246k
  const uint8_t *const sm_weights = smooth_weights + bh - 4;
120
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
121
246k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
122
246k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
123
246k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
124
246k
                           log2_scale + sizeof(*dst));
125
126
246k
  int r;
127
3.08M
  for (r = 0; r < bh; r++) {
128
2.83M
    int c;
129
58.1M
    for (c = 0; c < bw; ++c) {
130
55.2M
      const uint8_t pixels[] = { above[c], below_pred };
131
55.2M
      const uint8_t weights[] = { sm_weights[r], scale - sm_weights[r] };
132
55.2M
      uint32_t this_pred = 0;
133
55.2M
      assert(scale >= sm_weights[r]);
134
55.2M
      int i;
135
165M
      for (i = 0; i < 2; ++i) {
136
110M
        this_pred += weights[i] * pixels[i];
137
110M
      }
138
55.2M
      dst[c] = divide_round(this_pred, log2_scale);
139
55.2M
    }
140
2.83M
    dst += stride;
141
2.83M
  }
142
246k
}
143
144
static inline void smooth_h_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
145
                                      int bh, const uint8_t *above,
146
342k
                                      const uint8_t *left) {
147
342k
  const uint8_t right_pred = above[bw - 1];  // estimated by top-right pixel
148
342k
  const uint8_t *const sm_weights = smooth_weights + bw - 4;
149
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
150
342k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
151
342k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
152
342k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
153
342k
                           log2_scale + sizeof(*dst));
154
155
342k
  int r;
156
4.19M
  for (r = 0; r < bh; r++) {
157
3.85M
    int c;
158
74.4M
    for (c = 0; c < bw; ++c) {
159
70.5M
      const uint8_t pixels[] = { left[r], right_pred };
160
70.5M
      const uint8_t weights[] = { sm_weights[c], scale - sm_weights[c] };
161
70.5M
      uint32_t this_pred = 0;
162
70.5M
      assert(scale >= sm_weights[c]);
163
70.5M
      int i;
164
211M
      for (i = 0; i < 2; ++i) {
165
141M
        this_pred += weights[i] * pixels[i];
166
141M
      }
167
70.5M
      dst[c] = divide_round(this_pred, log2_scale);
168
70.5M
    }
169
3.85M
    dst += stride;
170
3.85M
  }
171
342k
}
172
173
static inline void dc_128_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
174
                                    int bh, const uint8_t *above,
175
20.8k
                                    const uint8_t *left) {
176
20.8k
  int r;
177
20.8k
  (void)above;
178
20.8k
  (void)left;
179
180
477k
  for (r = 0; r < bh; r++) {
181
456k
    memset(dst, 128, bw);
182
456k
    dst += stride;
183
456k
  }
184
20.8k
}
185
186
static inline void dc_left_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
187
                                     int bh, const uint8_t *above,
188
248k
                                     const uint8_t *left) {
189
248k
  int i, r, expected_dc, sum = 0;
190
248k
  (void)above;
191
192
3.18M
  for (i = 0; i < bh; i++) sum += left[i];
193
248k
  expected_dc = (sum + (bh >> 1)) / bh;
194
195
3.18M
  for (r = 0; r < bh; r++) {
196
2.93M
    memset(dst, expected_dc, bw);
197
2.93M
    dst += stride;
198
2.93M
  }
199
248k
}
200
201
static inline void dc_top_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
202
                                    int bh, const uint8_t *above,
203
419k
                                    const uint8_t *left) {
204
419k
  int i, r, expected_dc, sum = 0;
205
419k
  (void)left;
206
207
5.59M
  for (i = 0; i < bw; i++) sum += above[i];
208
419k
  expected_dc = (sum + (bw >> 1)) / bw;
209
210
6.21M
  for (r = 0; r < bh; r++) {
211
5.79M
    memset(dst, expected_dc, bw);
212
5.79M
    dst += stride;
213
5.79M
  }
214
419k
}
215
216
static inline void dc_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
217
6.33M
                                const uint8_t *above, const uint8_t *left) {
218
6.33M
  int i, r, expected_dc, sum = 0;
219
6.33M
  const int count = bw + bh;
220
221
48.3M
  for (i = 0; i < bw; i++) {
222
41.9M
    sum += above[i];
223
41.9M
  }
224
48.3M
  for (i = 0; i < bh; i++) {
225
41.9M
    sum += left[i];
226
41.9M
  }
227
228
6.33M
  expected_dc = (sum + (count >> 1)) / count;
229
230
48.3M
  for (r = 0; r < bh; r++) {
231
41.9M
    memset(dst, expected_dc, bw);
232
41.9M
    dst += stride;
233
41.9M
  }
234
6.33M
}
235
236
static inline int divide_using_multiply_shift(int num, int shift1,
237
2.39M
                                              int multiplier, int shift2) {
238
2.39M
  const int interm = num >> shift1;
239
2.39M
  return interm * multiplier >> shift2;
240
2.39M
}
241
242
// The constants (multiplier and shifts) for a given block size are obtained
243
// as follows:
244
// - Let sum_w_h =  block width + block height.
245
// - Shift 'sum_w_h' right until we reach an odd number. Let the number of
246
// shifts for that block size be called 'shift1' (see the parameter in
247
// dc_predictor_rect() function), and let the odd number be 'd'. [d has only 2
248
// possible values: d = 3 for a 1:2 rect block and d = 5 for a 1:4 rect
249
// block].
250
// - Find multipliers for (i) dividing by 3, and (ii) dividing by 5,
251
// using the "Algorithm 1" in:
252
// http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=1467632
253
// by ensuring that m + n = 16 (in that algorithm). This ensures that our 2nd
254
// shift will be 16, regardless of the block size.
255
256
// Note: For low bitdepth, assembly code may be optimized by using smaller
257
// constants for smaller block sizes, where the range of the 'sum' is
258
// restricted to fewer bits.
259
260
772k
#define DC_MULTIPLIER_1X2 0x5556
261
436k
#define DC_MULTIPLIER_1X4 0x3334
262
263
1.20M
#define DC_SHIFT2 16
264
265
static inline void dc_predictor_rect(uint8_t *dst, ptrdiff_t stride, int bw,
266
                                     int bh, const uint8_t *above,
267
                                     const uint8_t *left, int shift1,
268
1.20M
                                     int multiplier) {
269
1.20M
  int sum = 0;
270
271
15.5M
  for (int i = 0; i < bw; i++) {
272
14.3M
    sum += above[i];
273
14.3M
  }
274
15.3M
  for (int i = 0; i < bh; i++) {
275
14.1M
    sum += left[i];
276
14.1M
  }
277
278
1.20M
  const int expected_dc = divide_using_multiply_shift(
279
1.20M
      sum + ((bw + bh) >> 1), shift1, multiplier, DC_SHIFT2);
280
1.20M
  assert(expected_dc < (1 << 8));
281
282
15.3M
  for (int r = 0; r < bh; r++) {
283
14.1M
    memset(dst, expected_dc, bw);
284
14.1M
    dst += stride;
285
14.1M
  }
286
1.20M
}
287
288
#undef DC_SHIFT2
289
290
void aom_dc_predictor_4x8_c(uint8_t *dst, ptrdiff_t stride,
291
190k
                            const uint8_t *above, const uint8_t *left) {
292
190k
  dc_predictor_rect(dst, stride, 4, 8, above, left, 2, DC_MULTIPLIER_1X2);
293
190k
}
294
295
void aom_dc_predictor_8x4_c(uint8_t *dst, ptrdiff_t stride,
296
196k
                            const uint8_t *above, const uint8_t *left) {
297
196k
  dc_predictor_rect(dst, stride, 8, 4, above, left, 2, DC_MULTIPLIER_1X2);
298
196k
}
299
300
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
301
void aom_dc_predictor_4x16_c(uint8_t *dst, ptrdiff_t stride,
302
119k
                             const uint8_t *above, const uint8_t *left) {
303
119k
  dc_predictor_rect(dst, stride, 4, 16, above, left, 2, DC_MULTIPLIER_1X4);
304
119k
}
305
306
void aom_dc_predictor_16x4_c(uint8_t *dst, ptrdiff_t stride,
307
159k
                             const uint8_t *above, const uint8_t *left) {
308
159k
  dc_predictor_rect(dst, stride, 16, 4, above, left, 2, DC_MULTIPLIER_1X4);
309
159k
}
310
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
311
312
void aom_dc_predictor_8x16_c(uint8_t *dst, ptrdiff_t stride,
313
120k
                             const uint8_t *above, const uint8_t *left) {
314
120k
  dc_predictor_rect(dst, stride, 8, 16, above, left, 3, DC_MULTIPLIER_1X2);
315
120k
}
316
317
void aom_dc_predictor_16x8_c(uint8_t *dst, ptrdiff_t stride,
318
170k
                             const uint8_t *above, const uint8_t *left) {
319
170k
  dc_predictor_rect(dst, stride, 16, 8, above, left, 3, DC_MULTIPLIER_1X2);
320
170k
}
321
322
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
323
void aom_dc_predictor_8x32_c(uint8_t *dst, ptrdiff_t stride,
324
89.7k
                             const uint8_t *above, const uint8_t *left) {
325
89.7k
  dc_predictor_rect(dst, stride, 8, 32, above, left, 3, DC_MULTIPLIER_1X4);
326
89.7k
}
327
328
void aom_dc_predictor_32x8_c(uint8_t *dst, ptrdiff_t stride,
329
60.2k
                             const uint8_t *above, const uint8_t *left) {
330
60.2k
  dc_predictor_rect(dst, stride, 32, 8, above, left, 3, DC_MULTIPLIER_1X4);
331
60.2k
}
332
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
333
334
void aom_dc_predictor_16x32_c(uint8_t *dst, ptrdiff_t stride,
335
43.1k
                              const uint8_t *above, const uint8_t *left) {
336
43.1k
  dc_predictor_rect(dst, stride, 16, 32, above, left, 4, DC_MULTIPLIER_1X2);
337
43.1k
}
338
339
void aom_dc_predictor_32x16_c(uint8_t *dst, ptrdiff_t stride,
340
47.4k
                              const uint8_t *above, const uint8_t *left) {
341
47.4k
  dc_predictor_rect(dst, stride, 32, 16, above, left, 4, DC_MULTIPLIER_1X2);
342
47.4k
}
343
344
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
345
void aom_dc_predictor_16x64_c(uint8_t *dst, ptrdiff_t stride,
346
4.61k
                              const uint8_t *above, const uint8_t *left) {
347
4.61k
  dc_predictor_rect(dst, stride, 16, 64, above, left, 4, DC_MULTIPLIER_1X4);
348
4.61k
}
349
350
void aom_dc_predictor_64x16_c(uint8_t *dst, ptrdiff_t stride,
351
2.89k
                              const uint8_t *above, const uint8_t *left) {
352
2.89k
  dc_predictor_rect(dst, stride, 64, 16, above, left, 4, DC_MULTIPLIER_1X4);
353
2.89k
}
354
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
355
356
void aom_dc_predictor_32x64_c(uint8_t *dst, ptrdiff_t stride,
357
1.75k
                              const uint8_t *above, const uint8_t *left) {
358
1.75k
  dc_predictor_rect(dst, stride, 32, 64, above, left, 5, DC_MULTIPLIER_1X2);
359
1.75k
}
360
361
void aom_dc_predictor_64x32_c(uint8_t *dst, ptrdiff_t stride,
362
2.32k
                              const uint8_t *above, const uint8_t *left) {
363
2.32k
  dc_predictor_rect(dst, stride, 64, 32, above, left, 5, DC_MULTIPLIER_1X2);
364
2.32k
}
365
366
#undef DC_MULTIPLIER_1X2
367
#undef DC_MULTIPLIER_1X4
368
369
#if CONFIG_AV1_HIGHBITDEPTH
370
371
static inline void highbd_v_predictor(uint16_t *dst, ptrdiff_t stride, int bw,
372
                                      int bh, const uint16_t *above,
373
152k
                                      const uint16_t *left, int bd) {
374
152k
  int r;
375
152k
  (void)left;
376
152k
  (void)bd;
377
2.10M
  for (r = 0; r < bh; r++) {
378
1.95M
    memcpy(dst, above, bw * sizeof(uint16_t));
379
1.95M
    dst += stride;
380
1.95M
  }
381
152k
}
382
383
static inline void highbd_h_predictor(uint16_t *dst, ptrdiff_t stride, int bw,
384
                                      int bh, const uint16_t *above,
385
265k
                                      const uint16_t *left, int bd) {
386
265k
  int r;
387
265k
  (void)above;
388
265k
  (void)bd;
389
3.20M
  for (r = 0; r < bh; r++) {
390
2.94M
    aom_memset16(dst, left[r], bw);
391
2.94M
    dst += stride;
392
2.94M
  }
393
265k
}
394
395
static inline void highbd_paeth_predictor(uint16_t *dst, ptrdiff_t stride,
396
                                          int bw, int bh, const uint16_t *above,
397
802k
                                          const uint16_t *left, int bd) {
398
802k
  int r, c;
399
802k
  const uint16_t ytop_left = above[-1];
400
802k
  (void)bd;
401
402
15.3M
  for (r = 0; r < bh; r++) {
403
335M
    for (c = 0; c < bw; c++)
404
321M
      dst[c] = paeth_predictor_single(left[r], above[c], ytop_left);
405
14.5M
    dst += stride;
406
14.5M
  }
407
802k
}
408
409
static inline void highbd_smooth_predictor(uint16_t *dst, ptrdiff_t stride,
410
                                           int bw, int bh,
411
                                           const uint16_t *above,
412
546k
                                           const uint16_t *left, int bd) {
413
546k
  (void)bd;
414
546k
  const uint16_t below_pred = left[bh - 1];   // estimated by bottom-left pixel
415
546k
  const uint16_t right_pred = above[bw - 1];  // estimated by top-right pixel
416
546k
  const uint8_t *const sm_weights_w = smooth_weights + bw - 4;
417
546k
  const uint8_t *const sm_weights_h = smooth_weights + bh - 4;
418
  // scale = 2 * 2^SMOOTH_WEIGHT_LOG2_SCALE
419
546k
  const int log2_scale = 1 + SMOOTH_WEIGHT_LOG2_SCALE;
420
546k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
421
546k
  sm_weights_sanity_checks(sm_weights_w, sm_weights_h, scale,
422
546k
                           log2_scale + sizeof(*dst));
423
546k
  int r;
424
7.12M
  for (r = 0; r < bh; ++r) {
425
6.58M
    int c;
426
141M
    for (c = 0; c < bw; ++c) {
427
135M
      const uint16_t pixels[] = { above[c], below_pred, left[r], right_pred };
428
135M
      const uint8_t weights[] = { sm_weights_h[r], scale - sm_weights_h[r],
429
135M
                                  sm_weights_w[c], scale - sm_weights_w[c] };
430
135M
      uint32_t this_pred = 0;
431
135M
      int i;
432
135M
      assert(scale >= sm_weights_h[r] && scale >= sm_weights_w[c]);
433
676M
      for (i = 0; i < 4; ++i) {
434
540M
        this_pred += weights[i] * pixels[i];
435
540M
      }
436
135M
      dst[c] = divide_round(this_pred, log2_scale);
437
135M
    }
438
6.58M
    dst += stride;
439
6.58M
  }
440
546k
}
441
442
static inline void highbd_smooth_v_predictor(uint16_t *dst, ptrdiff_t stride,
443
                                             int bw, int bh,
444
                                             const uint16_t *above,
445
265k
                                             const uint16_t *left, int bd) {
446
265k
  (void)bd;
447
265k
  const uint16_t below_pred = left[bh - 1];  // estimated by bottom-left pixel
448
265k
  const uint8_t *const sm_weights = smooth_weights + bh - 4;
449
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
450
265k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
451
265k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
452
265k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
453
265k
                           log2_scale + sizeof(*dst));
454
455
265k
  int r;
456
3.63M
  for (r = 0; r < bh; r++) {
457
3.37M
    int c;
458
67.1M
    for (c = 0; c < bw; ++c) {
459
63.7M
      const uint16_t pixels[] = { above[c], below_pred };
460
63.7M
      const uint8_t weights[] = { sm_weights[r], scale - sm_weights[r] };
461
63.7M
      uint32_t this_pred = 0;
462
63.7M
      assert(scale >= sm_weights[r]);
463
63.7M
      int i;
464
191M
      for (i = 0; i < 2; ++i) {
465
127M
        this_pred += weights[i] * pixels[i];
466
127M
      }
467
63.7M
      dst[c] = divide_round(this_pred, log2_scale);
468
63.7M
    }
469
3.37M
    dst += stride;
470
3.37M
  }
471
265k
}
472
473
static inline void highbd_smooth_h_predictor(uint16_t *dst, ptrdiff_t stride,
474
                                             int bw, int bh,
475
                                             const uint16_t *above,
476
250k
                                             const uint16_t *left, int bd) {
477
250k
  (void)bd;
478
250k
  const uint16_t right_pred = above[bw - 1];  // estimated by top-right pixel
479
250k
  const uint8_t *const sm_weights = smooth_weights + bw - 4;
480
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
481
250k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
482
250k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
483
250k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
484
250k
                           log2_scale + sizeof(*dst));
485
486
250k
  int r;
487
3.46M
  for (r = 0; r < bh; r++) {
488
3.21M
    int c;
489
67.3M
    for (c = 0; c < bw; ++c) {
490
64.1M
      const uint16_t pixels[] = { left[r], right_pred };
491
64.1M
      const uint8_t weights[] = { sm_weights[c], scale - sm_weights[c] };
492
64.1M
      uint32_t this_pred = 0;
493
64.1M
      assert(scale >= sm_weights[c]);
494
64.1M
      int i;
495
192M
      for (i = 0; i < 2; ++i) {
496
128M
        this_pred += weights[i] * pixels[i];
497
128M
      }
498
64.1M
      dst[c] = divide_round(this_pred, log2_scale);
499
64.1M
    }
500
3.21M
    dst += stride;
501
3.21M
  }
502
250k
}
503
504
static inline void highbd_dc_128_predictor(uint16_t *dst, ptrdiff_t stride,
505
                                           int bw, int bh,
506
                                           const uint16_t *above,
507
31.6k
                                           const uint16_t *left, int bd) {
508
31.6k
  int r;
509
31.6k
  (void)above;
510
31.6k
  (void)left;
511
512
884k
  for (r = 0; r < bh; r++) {
513
853k
    aom_memset16(dst, 128 << (bd - 8), bw);
514
853k
    dst += stride;
515
853k
  }
516
31.6k
}
517
518
static inline void highbd_dc_left_predictor(uint16_t *dst, ptrdiff_t stride,
519
                                            int bw, int bh,
520
                                            const uint16_t *above,
521
126k
                                            const uint16_t *left, int bd) {
522
126k
  int i, r, expected_dc, sum = 0;
523
126k
  (void)above;
524
126k
  (void)bd;
525
526
3.20M
  for (i = 0; i < bh; i++) sum += left[i];
527
126k
  expected_dc = (sum + (bh >> 1)) / bh;
528
529
3.20M
  for (r = 0; r < bh; r++) {
530
3.07M
    aom_memset16(dst, expected_dc, bw);
531
3.07M
    dst += stride;
532
3.07M
  }
533
126k
}
534
535
static inline void highbd_dc_top_predictor(uint16_t *dst, ptrdiff_t stride,
536
                                           int bw, int bh,
537
                                           const uint16_t *above,
538
293k
                                           const uint16_t *left, int bd) {
539
293k
  int i, r, expected_dc, sum = 0;
540
293k
  (void)left;
541
293k
  (void)bd;
542
543
5.52M
  for (i = 0; i < bw; i++) sum += above[i];
544
293k
  expected_dc = (sum + (bw >> 1)) / bw;
545
546
5.98M
  for (r = 0; r < bh; r++) {
547
5.69M
    aom_memset16(dst, expected_dc, bw);
548
5.69M
    dst += stride;
549
5.69M
  }
550
293k
}
551
552
static inline void highbd_dc_predictor(uint16_t *dst, ptrdiff_t stride, int bw,
553
                                       int bh, const uint16_t *above,
554
2.31M
                                       const uint16_t *left, int bd) {
555
2.31M
  int i, r, expected_dc, sum = 0;
556
2.31M
  const int count = bw + bh;
557
2.31M
  (void)bd;
558
559
30.3M
  for (i = 0; i < bw; i++) {
560
28.0M
    sum += above[i];
561
28.0M
  }
562
30.3M
  for (i = 0; i < bh; i++) {
563
28.0M
    sum += left[i];
564
28.0M
  }
565
566
2.31M
  expected_dc = (sum + (count >> 1)) / count;
567
568
30.3M
  for (r = 0; r < bh; r++) {
569
28.0M
    aom_memset16(dst, expected_dc, bw);
570
28.0M
    dst += stride;
571
28.0M
  }
572
2.31M
}
573
574
// Obtained similarly as DC_MULTIPLIER_1X2 and DC_MULTIPLIER_1X4 above, but
575
// assume 2nd shift of 17 bits instead of 16.
576
// Note: Strictly speaking, 2nd shift needs to be 17 only when:
577
// - bit depth == 12, and
578
// - bw + bh is divisible by 5 (as opposed to divisible by 3).
579
// All other cases can use half the multipliers with a shift of 16 instead.
580
// This special optimization can be used when writing assembly code.
581
789k
#define HIGHBD_DC_MULTIPLIER_1X2 0xAAAB
582
// Note: This constant is odd, but a smaller even constant (0x199a) with the
583
// appropriate shift should work for neon in 8/10-bit.
584
392k
#define HIGHBD_DC_MULTIPLIER_1X4 0x6667
585
586
1.18M
#define HIGHBD_DC_SHIFT2 17
587
588
static inline void highbd_dc_predictor_rect(uint16_t *dst, ptrdiff_t stride,
589
                                            int bw, int bh,
590
                                            const uint16_t *above,
591
                                            const uint16_t *left, int bd,
592
1.18M
                                            int shift1, uint32_t multiplier) {
593
1.18M
  int sum = 0;
594
1.18M
  (void)bd;
595
596
15.6M
  for (int i = 0; i < bw; i++) {
597
14.4M
    sum += above[i];
598
14.4M
  }
599
14.8M
  for (int i = 0; i < bh; i++) {
600
13.6M
    sum += left[i];
601
13.6M
  }
602
603
1.18M
  const int expected_dc = divide_using_multiply_shift(
604
1.18M
      sum + ((bw + bh) >> 1), shift1, multiplier, HIGHBD_DC_SHIFT2);
605
1.18M
  assert(expected_dc < (1 << bd));
606
607
14.8M
  for (int r = 0; r < bh; r++) {
608
13.6M
    aom_memset16(dst, expected_dc, bw);
609
13.6M
    dst += stride;
610
13.6M
  }
611
1.18M
}
612
613
#undef HIGHBD_DC_SHIFT2
614
615
void aom_highbd_dc_predictor_4x8_c(uint16_t *dst, ptrdiff_t stride,
616
                                   const uint16_t *above, const uint16_t *left,
617
187k
                                   int bd) {
618
187k
  highbd_dc_predictor_rect(dst, stride, 4, 8, above, left, bd, 2,
619
187k
                           HIGHBD_DC_MULTIPLIER_1X2);
620
187k
}
621
622
void aom_highbd_dc_predictor_8x4_c(uint16_t *dst, ptrdiff_t stride,
623
                                   const uint16_t *above, const uint16_t *left,
624
208k
                                   int bd) {
625
208k
  highbd_dc_predictor_rect(dst, stride, 8, 4, above, left, bd, 2,
626
208k
                           HIGHBD_DC_MULTIPLIER_1X2);
627
208k
}
628
629
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
630
void aom_highbd_dc_predictor_4x16_c(uint16_t *dst, ptrdiff_t stride,
631
                                    const uint16_t *above, const uint16_t *left,
632
88.0k
                                    int bd) {
633
88.0k
  highbd_dc_predictor_rect(dst, stride, 4, 16, above, left, bd, 2,
634
88.0k
                           HIGHBD_DC_MULTIPLIER_1X4);
635
88.0k
}
636
637
void aom_highbd_dc_predictor_16x4_c(uint16_t *dst, ptrdiff_t stride,
638
                                    const uint16_t *above, const uint16_t *left,
639
153k
                                    int bd) {
640
153k
  highbd_dc_predictor_rect(dst, stride, 16, 4, above, left, bd, 2,
641
153k
                           HIGHBD_DC_MULTIPLIER_1X4);
642
153k
}
643
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
644
645
void aom_highbd_dc_predictor_8x16_c(uint16_t *dst, ptrdiff_t stride,
646
                                    const uint16_t *above, const uint16_t *left,
647
117k
                                    int bd) {
648
117k
  highbd_dc_predictor_rect(dst, stride, 8, 16, above, left, bd, 3,
649
117k
                           HIGHBD_DC_MULTIPLIER_1X2);
650
117k
}
651
652
void aom_highbd_dc_predictor_16x8_c(uint16_t *dst, ptrdiff_t stride,
653
                                    const uint16_t *above, const uint16_t *left,
654
169k
                                    int bd) {
655
169k
  highbd_dc_predictor_rect(dst, stride, 16, 8, above, left, bd, 3,
656
169k
                           HIGHBD_DC_MULTIPLIER_1X2);
657
169k
}
658
659
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
660
void aom_highbd_dc_predictor_8x32_c(uint16_t *dst, ptrdiff_t stride,
661
                                    const uint16_t *above, const uint16_t *left,
662
78.8k
                                    int bd) {
663
78.8k
  highbd_dc_predictor_rect(dst, stride, 8, 32, above, left, bd, 3,
664
78.8k
                           HIGHBD_DC_MULTIPLIER_1X4);
665
78.8k
}
666
667
void aom_highbd_dc_predictor_32x8_c(uint16_t *dst, ptrdiff_t stride,
668
                                    const uint16_t *above, const uint16_t *left,
669
64.1k
                                    int bd) {
670
64.1k
  highbd_dc_predictor_rect(dst, stride, 32, 8, above, left, bd, 3,
671
64.1k
                           HIGHBD_DC_MULTIPLIER_1X4);
672
64.1k
}
673
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
674
675
void aom_highbd_dc_predictor_16x32_c(uint16_t *dst, ptrdiff_t stride,
676
                                     const uint16_t *above,
677
55.4k
                                     const uint16_t *left, int bd) {
678
55.4k
  highbd_dc_predictor_rect(dst, stride, 16, 32, above, left, bd, 4,
679
55.4k
                           HIGHBD_DC_MULTIPLIER_1X2);
680
55.4k
}
681
682
void aom_highbd_dc_predictor_32x16_c(uint16_t *dst, ptrdiff_t stride,
683
                                     const uint16_t *above,
684
47.4k
                                     const uint16_t *left, int bd) {
685
47.4k
  highbd_dc_predictor_rect(dst, stride, 32, 16, above, left, bd, 4,
686
47.4k
                           HIGHBD_DC_MULTIPLIER_1X2);
687
47.4k
}
688
689
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
690
void aom_highbd_dc_predictor_16x64_c(uint16_t *dst, ptrdiff_t stride,
691
                                     const uint16_t *above,
692
4.48k
                                     const uint16_t *left, int bd) {
693
4.48k
  highbd_dc_predictor_rect(dst, stride, 16, 64, above, left, bd, 4,
694
4.48k
                           HIGHBD_DC_MULTIPLIER_1X4);
695
4.48k
}
696
697
void aom_highbd_dc_predictor_64x16_c(uint16_t *dst, ptrdiff_t stride,
698
                                     const uint16_t *above,
699
3.08k
                                     const uint16_t *left, int bd) {
700
3.08k
  highbd_dc_predictor_rect(dst, stride, 64, 16, above, left, bd, 4,
701
3.08k
                           HIGHBD_DC_MULTIPLIER_1X4);
702
3.08k
}
703
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
704
705
void aom_highbd_dc_predictor_32x64_c(uint16_t *dst, ptrdiff_t stride,
706
                                     const uint16_t *above,
707
1.79k
                                     const uint16_t *left, int bd) {
708
1.79k
  highbd_dc_predictor_rect(dst, stride, 32, 64, above, left, bd, 5,
709
1.79k
                           HIGHBD_DC_MULTIPLIER_1X2);
710
1.79k
}
711
712
void aom_highbd_dc_predictor_64x32_c(uint16_t *dst, ptrdiff_t stride,
713
                                     const uint16_t *above,
714
2.30k
                                     const uint16_t *left, int bd) {
715
2.30k
  highbd_dc_predictor_rect(dst, stride, 64, 32, above, left, bd, 5,
716
2.30k
                           HIGHBD_DC_MULTIPLIER_1X2);
717
2.30k
}
718
719
#undef HIGHBD_DC_MULTIPLIER_1X2
720
#undef HIGHBD_DC_MULTIPLIER_1X4
721
#endif  // CONFIG_AV1_HIGHBITDEPTH
722
723
// This serves as a wrapper function, so that all the prediction functions
724
// can be unified and accessed as a pointer array. Note that the boundary
725
// above and left are not necessarily used all the time.
726
#define intra_pred_sized(type, width, height)                  \
727
  void aom_##type##_predictor_##width##x##height##_c(          \
728
      uint8_t *dst, ptrdiff_t stride, const uint8_t *above,    \
729
14.4M
      const uint8_t *left) {                                   \
730
14.4M
    type##_predictor(dst, stride, width, height, above, left); \
731
14.4M
  }
aom_v_predictor_4x4_c
Line
Count
Source
729
443k
      const uint8_t *left) {                                   \
730
443k
    type##_predictor(dst, stride, width, height, above, left); \
731
443k
  }
aom_v_predictor_8x8_c
Line
Count
Source
729
27.2k
      const uint8_t *left) {                                   \
730
27.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
27.2k
  }
aom_v_predictor_16x16_c
Line
Count
Source
729
19.8k
      const uint8_t *left) {                                   \
730
19.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
19.8k
  }
aom_v_predictor_32x32_c
Line
Count
Source
729
24.6k
      const uint8_t *left) {                                   \
730
24.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
24.6k
  }
aom_v_predictor_64x64_c
Line
Count
Source
729
1.40k
      const uint8_t *left) {                                   \
730
1.40k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.40k
  }
aom_v_predictor_4x8_c
Line
Count
Source
729
14.0k
      const uint8_t *left) {                                   \
730
14.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
14.0k
  }
aom_v_predictor_8x4_c
Line
Count
Source
729
20.5k
      const uint8_t *left) {                                   \
730
20.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
20.5k
  }
aom_v_predictor_8x16_c
Line
Count
Source
729
8.33k
      const uint8_t *left) {                                   \
730
8.33k
    type##_predictor(dst, stride, width, height, above, left); \
731
8.33k
  }
aom_v_predictor_16x8_c
Line
Count
Source
729
11.1k
      const uint8_t *left) {                                   \
730
11.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
11.1k
  }
aom_v_predictor_16x32_c
Line
Count
Source
729
3.46k
      const uint8_t *left) {                                   \
730
3.46k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.46k
  }
aom_v_predictor_32x16_c
Line
Count
Source
729
3.30k
      const uint8_t *left) {                                   \
730
3.30k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.30k
  }
aom_v_predictor_32x64_c
Line
Count
Source
729
229
      const uint8_t *left) {                                   \
730
229
    type##_predictor(dst, stride, width, height, above, left); \
731
229
  }
aom_v_predictor_64x32_c
Line
Count
Source
729
262
      const uint8_t *left) {                                   \
730
262
    type##_predictor(dst, stride, width, height, above, left); \
731
262
  }
aom_v_predictor_4x16_c
Line
Count
Source
729
5.05k
      const uint8_t *left) {                                   \
730
5.05k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.05k
  }
aom_v_predictor_16x4_c
Line
Count
Source
729
10.0k
      const uint8_t *left) {                                   \
730
10.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
10.0k
  }
aom_v_predictor_8x32_c
Line
Count
Source
729
3.13k
      const uint8_t *left) {                                   \
730
3.13k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.13k
  }
aom_v_predictor_32x8_c
Line
Count
Source
729
3.55k
      const uint8_t *left) {                                   \
730
3.55k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.55k
  }
aom_v_predictor_16x64_c
Line
Count
Source
729
436
      const uint8_t *left) {                                   \
730
436
    type##_predictor(dst, stride, width, height, above, left); \
731
436
  }
aom_v_predictor_64x16_c
Line
Count
Source
729
400
      const uint8_t *left) {                                   \
730
400
    type##_predictor(dst, stride, width, height, above, left); \
731
400
  }
aom_h_predictor_4x4_c
Line
Count
Source
729
302k
      const uint8_t *left) {                                   \
730
302k
    type##_predictor(dst, stride, width, height, above, left); \
731
302k
  }
aom_h_predictor_8x8_c
Line
Count
Source
729
38.7k
      const uint8_t *left) {                                   \
730
38.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
38.7k
  }
aom_h_predictor_16x16_c
Line
Count
Source
729
28.3k
      const uint8_t *left) {                                   \
730
28.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
28.3k
  }
aom_h_predictor_32x32_c
Line
Count
Source
729
23.8k
      const uint8_t *left) {                                   \
730
23.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
23.8k
  }
aom_h_predictor_64x64_c
Line
Count
Source
729
2.11k
      const uint8_t *left) {                                   \
730
2.11k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.11k
  }
aom_h_predictor_4x8_c
Line
Count
Source
729
22.1k
      const uint8_t *left) {                                   \
730
22.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
22.1k
  }
aom_h_predictor_8x4_c
Line
Count
Source
729
30.5k
      const uint8_t *left) {                                   \
730
30.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
30.5k
  }
aom_h_predictor_8x16_c
Line
Count
Source
729
10.6k
      const uint8_t *left) {                                   \
730
10.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
10.6k
  }
aom_h_predictor_16x8_c
Line
Count
Source
729
15.9k
      const uint8_t *left) {                                   \
730
15.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
15.9k
  }
aom_h_predictor_16x32_c
Line
Count
Source
729
4.03k
      const uint8_t *left) {                                   \
730
4.03k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.03k
  }
aom_h_predictor_32x16_c
Line
Count
Source
729
4.57k
      const uint8_t *left) {                                   \
730
4.57k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.57k
  }
aom_h_predictor_32x64_c
Line
Count
Source
729
245
      const uint8_t *left) {                                   \
730
245
    type##_predictor(dst, stride, width, height, above, left); \
731
245
  }
aom_h_predictor_64x32_c
Line
Count
Source
729
358
      const uint8_t *left) {                                   \
730
358
    type##_predictor(dst, stride, width, height, above, left); \
731
358
  }
aom_h_predictor_4x16_c
Line
Count
Source
729
8.05k
      const uint8_t *left) {                                   \
730
8.05k
    type##_predictor(dst, stride, width, height, above, left); \
731
8.05k
  }
aom_h_predictor_16x4_c
Line
Count
Source
729
13.4k
      const uint8_t *left) {                                   \
730
13.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.4k
  }
aom_h_predictor_8x32_c
Line
Count
Source
729
4.33k
      const uint8_t *left) {                                   \
730
4.33k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.33k
  }
aom_h_predictor_32x8_c
Line
Count
Source
729
4.97k
      const uint8_t *left) {                                   \
730
4.97k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.97k
  }
aom_h_predictor_16x64_c
Line
Count
Source
729
591
      const uint8_t *left) {                                   \
730
591
    type##_predictor(dst, stride, width, height, above, left); \
731
591
  }
aom_h_predictor_64x16_c
Line
Count
Source
729
472
      const uint8_t *left) {                                   \
730
472
    type##_predictor(dst, stride, width, height, above, left); \
731
472
  }
aom_smooth_predictor_4x4_c
Line
Count
Source
729
229k
      const uint8_t *left) {                                   \
730
229k
    type##_predictor(dst, stride, width, height, above, left); \
731
229k
  }
aom_smooth_predictor_8x8_c
Line
Count
Source
729
111k
      const uint8_t *left) {                                   \
730
111k
    type##_predictor(dst, stride, width, height, above, left); \
731
111k
  }
aom_smooth_predictor_16x16_c
Line
Count
Source
729
68.8k
      const uint8_t *left) {                                   \
730
68.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
68.8k
  }
aom_smooth_predictor_32x32_c
Line
Count
Source
729
50.8k
      const uint8_t *left) {                                   \
730
50.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
50.8k
  }
aom_smooth_predictor_64x64_c
Line
Count
Source
729
7.94k
      const uint8_t *left) {                                   \
730
7.94k
    type##_predictor(dst, stride, width, height, above, left); \
731
7.94k
  }
aom_smooth_predictor_4x8_c
Line
Count
Source
729
36.6k
      const uint8_t *left) {                                   \
730
36.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
36.6k
  }
aom_smooth_predictor_8x4_c
Line
Count
Source
729
50.7k
      const uint8_t *left) {                                   \
730
50.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
50.7k
  }
aom_smooth_predictor_8x16_c
Line
Count
Source
729
32.8k
      const uint8_t *left) {                                   \
730
32.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
32.8k
  }
aom_smooth_predictor_16x8_c
Line
Count
Source
729
48.9k
      const uint8_t *left) {                                   \
730
48.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
48.9k
  }
aom_smooth_predictor_16x32_c
Line
Count
Source
729
11.1k
      const uint8_t *left) {                                   \
730
11.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
11.1k
  }
aom_smooth_predictor_32x16_c
Line
Count
Source
729
11.6k
      const uint8_t *left) {                                   \
730
11.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
11.6k
  }
aom_smooth_predictor_32x64_c
Line
Count
Source
729
1.12k
      const uint8_t *left) {                                   \
730
1.12k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.12k
  }
aom_smooth_predictor_64x32_c
Line
Count
Source
729
921
      const uint8_t *left) {                                   \
730
921
    type##_predictor(dst, stride, width, height, above, left); \
731
921
  }
aom_smooth_predictor_4x16_c
Line
Count
Source
729
25.4k
      const uint8_t *left) {                                   \
730
25.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
25.4k
  }
aom_smooth_predictor_16x4_c
Line
Count
Source
729
41.5k
      const uint8_t *left) {                                   \
730
41.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
41.5k
  }
aom_smooth_predictor_8x32_c
Line
Count
Source
729
11.3k
      const uint8_t *left) {                                   \
730
11.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
11.3k
  }
aom_smooth_predictor_32x8_c
Line
Count
Source
729
15.6k
      const uint8_t *left) {                                   \
730
15.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
15.6k
  }
aom_smooth_predictor_16x64_c
Line
Count
Source
729
1.46k
      const uint8_t *left) {                                   \
730
1.46k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.46k
  }
aom_smooth_predictor_64x16_c
Line
Count
Source
729
1.19k
      const uint8_t *left) {                                   \
730
1.19k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.19k
  }
aom_smooth_v_predictor_4x4_c
Line
Count
Source
729
61.5k
      const uint8_t *left) {                                   \
730
61.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
61.5k
  }
aom_smooth_v_predictor_8x8_c
Line
Count
Source
729
39.8k
      const uint8_t *left) {                                   \
730
39.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
39.8k
  }
aom_smooth_v_predictor_16x16_c
Line
Count
Source
729
19.8k
      const uint8_t *left) {                                   \
730
19.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
19.8k
  }
aom_smooth_v_predictor_32x32_c
Line
Count
Source
729
21.2k
      const uint8_t *left) {                                   \
730
21.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
21.2k
  }
aom_smooth_v_predictor_64x64_c
Line
Count
Source
729
2.29k
      const uint8_t *left) {                                   \
730
2.29k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.29k
  }
aom_smooth_v_predictor_4x8_c
Line
Count
Source
729
12.7k
      const uint8_t *left) {                                   \
730
12.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
12.7k
  }
aom_smooth_v_predictor_8x4_c
Line
Count
Source
729
18.9k
      const uint8_t *left) {                                   \
730
18.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
18.9k
  }
aom_smooth_v_predictor_8x16_c
Line
Count
Source
729
10.6k
      const uint8_t *left) {                                   \
730
10.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
10.6k
  }
aom_smooth_v_predictor_16x8_c
Line
Count
Source
729
15.7k
      const uint8_t *left) {                                   \
730
15.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
15.7k
  }
aom_smooth_v_predictor_16x32_c
Line
Count
Source
729
4.08k
      const uint8_t *left) {                                   \
730
4.08k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.08k
  }
aom_smooth_v_predictor_32x16_c
Line
Count
Source
729
5.78k
      const uint8_t *left) {                                   \
730
5.78k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.78k
  }
aom_smooth_v_predictor_32x64_c
Line
Count
Source
729
304
      const uint8_t *left) {                                   \
730
304
    type##_predictor(dst, stride, width, height, above, left); \
731
304
  }
aom_smooth_v_predictor_64x32_c
Line
Count
Source
729
280
      const uint8_t *left) {                                   \
730
280
    type##_predictor(dst, stride, width, height, above, left); \
731
280
  }
aom_smooth_v_predictor_4x16_c
Line
Count
Source
729
8.46k
      const uint8_t *left) {                                   \
730
8.46k
    type##_predictor(dst, stride, width, height, above, left); \
731
8.46k
  }
aom_smooth_v_predictor_16x4_c
Line
Count
Source
729
13.6k
      const uint8_t *left) {                                   \
730
13.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.6k
  }
aom_smooth_v_predictor_8x32_c
Line
Count
Source
729
4.04k
      const uint8_t *left) {                                   \
730
4.04k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.04k
  }
aom_smooth_v_predictor_32x8_c
Line
Count
Source
729
6.73k
      const uint8_t *left) {                                   \
730
6.73k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.73k
  }
aom_smooth_v_predictor_16x64_c
Line
Count
Source
729
318
      const uint8_t *left) {                                   \
730
318
    type##_predictor(dst, stride, width, height, above, left); \
731
318
  }
aom_smooth_v_predictor_64x16_c
Line
Count
Source
729
351
      const uint8_t *left) {                                   \
730
351
    type##_predictor(dst, stride, width, height, above, left); \
731
351
  }
aom_smooth_h_predictor_4x4_c
Line
Count
Source
729
91.7k
      const uint8_t *left) {                                   \
730
91.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
91.7k
  }
aom_smooth_h_predictor_8x8_c
Line
Count
Source
729
51.0k
      const uint8_t *left) {                                   \
730
51.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
51.0k
  }
aom_smooth_h_predictor_16x16_c
Line
Count
Source
729
36.5k
      const uint8_t *left) {                                   \
730
36.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
36.5k
  }
aom_smooth_h_predictor_32x32_c
Line
Count
Source
729
25.3k
      const uint8_t *left) {                                   \
730
25.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
25.3k
  }
aom_smooth_h_predictor_64x64_c
Line
Count
Source
729
2.64k
      const uint8_t *left) {                                   \
730
2.64k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.64k
  }
aom_smooth_h_predictor_4x8_c
Line
Count
Source
729
14.9k
      const uint8_t *left) {                                   \
730
14.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
14.9k
  }
aom_smooth_h_predictor_8x4_c
Line
Count
Source
729
23.4k
      const uint8_t *left) {                                   \
730
23.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
23.4k
  }
aom_smooth_h_predictor_8x16_c
Line
Count
Source
729
17.0k
      const uint8_t *left) {                                   \
730
17.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.0k
  }
aom_smooth_h_predictor_16x8_c
Line
Count
Source
729
21.7k
      const uint8_t *left) {                                   \
730
21.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
21.7k
  }
aom_smooth_h_predictor_16x32_c
Line
Count
Source
729
6.06k
      const uint8_t *left) {                                   \
730
6.06k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.06k
  }
aom_smooth_h_predictor_32x16_c
Line
Count
Source
729
5.71k
      const uint8_t *left) {                                   \
730
5.71k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.71k
  }
aom_smooth_h_predictor_32x64_c
Line
Count
Source
729
362
      const uint8_t *left) {                                   \
730
362
    type##_predictor(dst, stride, width, height, above, left); \
731
362
  }
aom_smooth_h_predictor_64x32_c
Line
Count
Source
729
236
      const uint8_t *left) {                                   \
730
236
    type##_predictor(dst, stride, width, height, above, left); \
731
236
  }
aom_smooth_h_predictor_4x16_c
Line
Count
Source
729
11.4k
      const uint8_t *left) {                                   \
730
11.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
11.4k
  }
aom_smooth_h_predictor_16x4_c
Line
Count
Source
729
19.8k
      const uint8_t *left) {                                   \
730
19.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
19.8k
  }
aom_smooth_h_predictor_8x32_c
Line
Count
Source
729
5.66k
      const uint8_t *left) {                                   \
730
5.66k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.66k
  }
aom_smooth_h_predictor_32x8_c
Line
Count
Source
729
7.32k
      const uint8_t *left) {                                   \
730
7.32k
    type##_predictor(dst, stride, width, height, above, left); \
731
7.32k
  }
aom_smooth_h_predictor_16x64_c
Line
Count
Source
729
495
      const uint8_t *left) {                                   \
730
495
    type##_predictor(dst, stride, width, height, above, left); \
731
495
  }
aom_smooth_h_predictor_64x16_c
Line
Count
Source
729
410
      const uint8_t *left) {                                   \
730
410
    type##_predictor(dst, stride, width, height, above, left); \
731
410
  }
aom_paeth_predictor_4x4_c
Line
Count
Source
729
3.63M
      const uint8_t *left) {                                   \
730
3.63M
    type##_predictor(dst, stride, width, height, above, left); \
731
3.63M
  }
aom_paeth_predictor_8x8_c
Line
Count
Source
729
134k
      const uint8_t *left) {                                   \
730
134k
    type##_predictor(dst, stride, width, height, above, left); \
731
134k
  }
aom_paeth_predictor_16x16_c
Line
Count
Source
729
199k
      const uint8_t *left) {                                   \
730
199k
    type##_predictor(dst, stride, width, height, above, left); \
731
199k
  }
aom_paeth_predictor_32x32_c
Line
Count
Source
729
438k
      const uint8_t *left) {                                   \
730
438k
    type##_predictor(dst, stride, width, height, above, left); \
731
438k
  }
aom_paeth_predictor_64x64_c
Line
Count
Source
729
44.6k
      const uint8_t *left) {                                   \
730
44.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
44.6k
  }
aom_paeth_predictor_4x8_c
Line
Count
Source
729
45.1k
      const uint8_t *left) {                                   \
730
45.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
45.1k
  }
aom_paeth_predictor_8x4_c
Line
Count
Source
729
58.8k
      const uint8_t *left) {                                   \
730
58.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
58.8k
  }
aom_paeth_predictor_8x16_c
Line
Count
Source
729
44.8k
      const uint8_t *left) {                                   \
730
44.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
44.8k
  }
aom_paeth_predictor_16x8_c
Line
Count
Source
729
57.8k
      const uint8_t *left) {                                   \
730
57.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
57.8k
  }
aom_paeth_predictor_16x32_c
Line
Count
Source
729
80.9k
      const uint8_t *left) {                                   \
730
80.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
80.9k
  }
aom_paeth_predictor_32x16_c
Line
Count
Source
729
15.7k
      const uint8_t *left) {                                   \
730
15.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
15.7k
  }
aom_paeth_predictor_32x64_c
Line
Count
Source
729
6.19k
      const uint8_t *left) {                                   \
730
6.19k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.19k
  }
aom_paeth_predictor_64x32_c
Line
Count
Source
729
1.41k
      const uint8_t *left) {                                   \
730
1.41k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.41k
  }
aom_paeth_predictor_4x16_c
Line
Count
Source
729
126k
      const uint8_t *left) {                                   \
730
126k
    type##_predictor(dst, stride, width, height, above, left); \
731
126k
  }
aom_paeth_predictor_16x4_c
Line
Count
Source
729
52.4k
      const uint8_t *left) {                                   \
730
52.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
52.4k
  }
aom_paeth_predictor_8x32_c
Line
Count
Source
729
38.9k
      const uint8_t *left) {                                   \
730
38.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
38.9k
  }
aom_paeth_predictor_32x8_c
Line
Count
Source
729
17.0k
      const uint8_t *left) {                                   \
730
17.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.0k
  }
aom_paeth_predictor_16x64_c
Line
Count
Source
729
18.0k
      const uint8_t *left) {                                   \
730
18.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
18.0k
  }
aom_paeth_predictor_64x16_c
Line
Count
Source
729
1.42k
      const uint8_t *left) {                                   \
730
1.42k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.42k
  }
aom_dc_128_predictor_4x4_c
Line
Count
Source
729
5.63k
      const uint8_t *left) {                                   \
730
5.63k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.63k
  }
aom_dc_128_predictor_8x8_c
Line
Count
Source
729
1.40k
      const uint8_t *left) {                                   \
730
1.40k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.40k
  }
aom_dc_128_predictor_16x16_c
Line
Count
Source
729
198
      const uint8_t *left) {                                   \
730
198
    type##_predictor(dst, stride, width, height, above, left); \
731
198
  }
aom_dc_128_predictor_32x32_c
Line
Count
Source
729
4.90k
      const uint8_t *left) {                                   \
730
4.90k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.90k
  }
aom_dc_128_predictor_64x64_c
Line
Count
Source
729
2.04k
      const uint8_t *left) {                                   \
730
2.04k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.04k
  }
aom_dc_128_predictor_4x8_c
Line
Count
Source
729
634
      const uint8_t *left) {                                   \
730
634
    type##_predictor(dst, stride, width, height, above, left); \
731
634
  }
aom_dc_128_predictor_8x4_c
Line
Count
Source
729
52
      const uint8_t *left) {                                   \
730
52
    type##_predictor(dst, stride, width, height, above, left); \
731
52
  }
aom_dc_128_predictor_8x16_c
Line
Count
Source
729
119
      const uint8_t *left) {                                   \
730
119
    type##_predictor(dst, stride, width, height, above, left); \
731
119
  }
aom_dc_128_predictor_16x8_c
Line
Count
Source
729
1.19k
      const uint8_t *left) {                                   \
730
1.19k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.19k
  }
aom_dc_128_predictor_16x32_c
Line
Count
Source
729
1.79k
      const uint8_t *left) {                                   \
730
1.79k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.79k
  }
aom_dc_128_predictor_32x16_c
Line
Count
Source
729
1.47k
      const uint8_t *left) {                                   \
730
1.47k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.47k
  }
aom_dc_128_predictor_32x64_c
Line
Count
Source
729
286
      const uint8_t *left) {                                   \
730
286
    type##_predictor(dst, stride, width, height, above, left); \
731
286
  }
aom_dc_128_predictor_64x32_c
Line
Count
Source
729
84
      const uint8_t *left) {                                   \
730
84
    type##_predictor(dst, stride, width, height, above, left); \
731
84
  }
aom_dc_128_predictor_4x16_c
Line
Count
Source
729
173
      const uint8_t *left) {                                   \
730
173
    type##_predictor(dst, stride, width, height, above, left); \
731
173
  }
aom_dc_128_predictor_16x4_c
Line
Count
Source
729
31
      const uint8_t *left) {                                   \
730
31
    type##_predictor(dst, stride, width, height, above, left); \
731
31
  }
aom_dc_128_predictor_8x32_c
Line
Count
Source
729
90
      const uint8_t *left) {                                   \
730
90
    type##_predictor(dst, stride, width, height, above, left); \
731
90
  }
aom_dc_128_predictor_32x8_c
Line
Count
Source
729
698
      const uint8_t *left) {                                   \
730
698
    type##_predictor(dst, stride, width, height, above, left); \
731
698
  }
aom_dc_128_predictor_16x64_c
Line
Count
Source
729
33
      const uint8_t *left) {                                   \
730
33
    type##_predictor(dst, stride, width, height, above, left); \
731
33
  }
aom_dc_128_predictor_64x16_c
Line
Count
Source
729
7
      const uint8_t *left) {                                   \
730
7
    type##_predictor(dst, stride, width, height, above, left); \
731
7
  }
aom_dc_left_predictor_4x4_c
Line
Count
Source
729
166k
      const uint8_t *left) {                                   \
730
166k
    type##_predictor(dst, stride, width, height, above, left); \
731
166k
  }
aom_dc_left_predictor_8x8_c
Line
Count
Source
729
5.25k
      const uint8_t *left) {                                   \
730
5.25k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.25k
  }
aom_dc_left_predictor_16x16_c
Line
Count
Source
729
6.35k
      const uint8_t *left) {                                   \
730
6.35k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.35k
  }
aom_dc_left_predictor_32x32_c
Line
Count
Source
729
35.2k
      const uint8_t *left) {                                   \
730
35.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
35.2k
  }
aom_dc_left_predictor_64x64_c
Line
Count
Source
729
7.80k
      const uint8_t *left) {                                   \
730
7.80k
    type##_predictor(dst, stride, width, height, above, left); \
731
7.80k
  }
aom_dc_left_predictor_4x8_c
Line
Count
Source
729
2.92k
      const uint8_t *left) {                                   \
730
2.92k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.92k
  }
aom_dc_left_predictor_8x4_c
Line
Count
Source
729
1.62k
      const uint8_t *left) {                                   \
730
1.62k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.62k
  }
aom_dc_left_predictor_8x16_c
Line
Count
Source
729
2.21k
      const uint8_t *left) {                                   \
730
2.21k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.21k
  }
aom_dc_left_predictor_16x8_c
Line
Count
Source
729
3.63k
      const uint8_t *left) {                                   \
730
3.63k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.63k
  }
aom_dc_left_predictor_16x32_c
Line
Count
Source
729
2.55k
      const uint8_t *left) {                                   \
730
2.55k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.55k
  }
aom_dc_left_predictor_32x16_c
Line
Count
Source
729
3.10k
      const uint8_t *left) {                                   \
730
3.10k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.10k
  }
aom_dc_left_predictor_32x64_c
Line
Count
Source
729
403
      const uint8_t *left) {                                   \
730
403
    type##_predictor(dst, stride, width, height, above, left); \
731
403
  }
aom_dc_left_predictor_64x32_c
Line
Count
Source
729
776
      const uint8_t *left) {                                   \
730
776
    type##_predictor(dst, stride, width, height, above, left); \
731
776
  }
aom_dc_left_predictor_4x16_c
Line
Count
Source
729
4.80k
      const uint8_t *left) {                                   \
730
4.80k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.80k
  }
aom_dc_left_predictor_16x4_c
Line
Count
Source
729
984
      const uint8_t *left) {                                   \
730
984
    type##_predictor(dst, stride, width, height, above, left); \
731
984
  }
aom_dc_left_predictor_8x32_c
Line
Count
Source
729
2.78k
      const uint8_t *left) {                                   \
730
2.78k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.78k
  }
aom_dc_left_predictor_32x8_c
Line
Count
Source
729
873
      const uint8_t *left) {                                   \
730
873
    type##_predictor(dst, stride, width, height, above, left); \
731
873
  }
aom_dc_left_predictor_16x64_c
Line
Count
Source
729
650
      const uint8_t *left) {                                   \
730
650
    type##_predictor(dst, stride, width, height, above, left); \
731
650
  }
aom_dc_left_predictor_64x16_c
Line
Count
Source
729
230
      const uint8_t *left) {                                   \
730
230
    type##_predictor(dst, stride, width, height, above, left); \
731
230
  }
aom_dc_top_predictor_4x4_c
Line
Count
Source
729
177k
      const uint8_t *left) {                                   \
730
177k
    type##_predictor(dst, stride, width, height, above, left); \
731
177k
  }
aom_dc_top_predictor_8x8_c
Line
Count
Source
729
19.7k
      const uint8_t *left) {                                   \
730
19.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
19.7k
  }
aom_dc_top_predictor_16x16_c
Line
Count
Source
729
13.2k
      const uint8_t *left) {                                   \
730
13.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.2k
  }
aom_dc_top_predictor_32x32_c
Line
Count
Source
729
58.5k
      const uint8_t *left) {                                   \
730
58.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
58.5k
  }
aom_dc_top_predictor_64x64_c
Line
Count
Source
729
10.1k
      const uint8_t *left) {                                   \
730
10.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
10.1k
  }
aom_dc_top_predictor_4x8_c
Line
Count
Source
729
50.6k
      const uint8_t *left) {                                   \
730
50.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
50.6k
  }
aom_dc_top_predictor_8x4_c
Line
Count
Source
729
13.8k
      const uint8_t *left) {                                   \
730
13.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.8k
  }
aom_dc_top_predictor_8x16_c
Line
Count
Source
729
26.4k
      const uint8_t *left) {                                   \
730
26.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
26.4k
  }
aom_dc_top_predictor_16x8_c
Line
Count
Source
729
4.59k
      const uint8_t *left) {                                   \
730
4.59k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.59k
  }
aom_dc_top_predictor_16x32_c
Line
Count
Source
729
21.3k
      const uint8_t *left) {                                   \
730
21.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
21.3k
  }
aom_dc_top_predictor_32x16_c
Line
Count
Source
729
5.53k
      const uint8_t *left) {                                   \
730
5.53k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.53k
  }
aom_dc_top_predictor_32x64_c
Line
Count
Source
729
4.10k
      const uint8_t *left) {                                   \
730
4.10k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.10k
  }
aom_dc_top_predictor_64x32_c
Line
Count
Source
729
1.15k
      const uint8_t *left) {                                   \
730
1.15k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.15k
  }
aom_dc_top_predictor_4x16_c
Line
Count
Source
729
2.70k
      const uint8_t *left) {                                   \
730
2.70k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.70k
  }
aom_dc_top_predictor_16x4_c
Line
Count
Source
729
2.20k
      const uint8_t *left) {                                   \
730
2.20k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.20k
  }
aom_dc_top_predictor_8x32_c
Line
Count
Source
729
2.43k
      const uint8_t *left) {                                   \
730
2.43k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.43k
  }
aom_dc_top_predictor_32x8_c
Line
Count
Source
729
3.23k
      const uint8_t *left) {                                   \
730
3.23k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.23k
  }
aom_dc_top_predictor_16x64_c
Line
Count
Source
729
434
      const uint8_t *left) {                                   \
730
434
    type##_predictor(dst, stride, width, height, above, left); \
731
434
  }
aom_dc_top_predictor_64x16_c
Line
Count
Source
729
1.12k
      const uint8_t *left) {                                   \
730
1.12k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.12k
  }
aom_dc_predictor_4x4_c
Line
Count
Source
729
5.33M
      const uint8_t *left) {                                   \
730
5.33M
    type##_predictor(dst, stride, width, height, above, left); \
731
5.33M
  }
aom_dc_predictor_8x8_c
Line
Count
Source
729
355k
      const uint8_t *left) {                                   \
730
355k
    type##_predictor(dst, stride, width, height, above, left); \
731
355k
  }
aom_dc_predictor_16x16_c
Line
Count
Source
729
229k
      const uint8_t *left) {                                   \
730
229k
    type##_predictor(dst, stride, width, height, above, left); \
731
229k
  }
aom_dc_predictor_32x32_c
Line
Count
Source
729
380k
      const uint8_t *left) {                                   \
730
380k
    type##_predictor(dst, stride, width, height, above, left); \
731
380k
  }
aom_dc_predictor_64x64_c
Line
Count
Source
729
30.3k
      const uint8_t *left) {                                   \
730
30.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
30.3k
  }
732
733
#if CONFIG_AV1_HIGHBITDEPTH
734
#define intra_pred_highbd_sized(type, width, height)                        \
735
  void aom_highbd_##type##_predictor_##width##x##height##_c(                \
736
      uint16_t *dst, ptrdiff_t stride, const uint16_t *above,               \
737
5.04M
      const uint16_t *left, int bd) {                                       \
738
5.04M
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.04M
  }
aom_highbd_v_predictor_4x4_c
Line
Count
Source
737
29.4k
      const uint16_t *left, int bd) {                                       \
738
29.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
29.4k
  }
aom_highbd_v_predictor_8x8_c
Line
Count
Source
737
23.8k
      const uint16_t *left, int bd) {                                       \
738
23.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
23.8k
  }
aom_highbd_v_predictor_16x16_c
Line
Count
Source
737
10.9k
      const uint16_t *left, int bd) {                                       \
738
10.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
10.9k
  }
aom_highbd_v_predictor_32x32_c
Line
Count
Source
737
19.5k
      const uint16_t *left, int bd) {                                       \
738
19.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
19.5k
  }
aom_highbd_v_predictor_64x64_c
Line
Count
Source
737
1.60k
      const uint16_t *left, int bd) {                                       \
738
1.60k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.60k
  }
aom_highbd_v_predictor_4x8_c
Line
Count
Source
737
11.5k
      const uint16_t *left, int bd) {                                       \
738
11.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.5k
  }
aom_highbd_v_predictor_8x4_c
Line
Count
Source
737
15.4k
      const uint16_t *left, int bd) {                                       \
738
15.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
15.4k
  }
aom_highbd_v_predictor_8x16_c
Line
Count
Source
737
6.07k
      const uint16_t *left, int bd) {                                       \
738
6.07k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.07k
  }
aom_highbd_v_predictor_16x8_c
Line
Count
Source
737
9.01k
      const uint16_t *left, int bd) {                                       \
738
9.01k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.01k
  }
aom_highbd_v_predictor_16x32_c
Line
Count
Source
737
3.23k
      const uint16_t *left, int bd) {                                       \
738
3.23k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.23k
  }
aom_highbd_v_predictor_32x16_c
Line
Count
Source
737
2.74k
      const uint16_t *left, int bd) {                                       \
738
2.74k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.74k
  }
aom_highbd_v_predictor_32x64_c
Line
Count
Source
737
183
      const uint16_t *left, int bd) {                                       \
738
183
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
183
  }
aom_highbd_v_predictor_64x32_c
Line
Count
Source
737
193
      const uint16_t *left, int bd) {                                       \
738
193
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
193
  }
aom_highbd_v_predictor_4x16_c
Line
Count
Source
737
4.16k
      const uint16_t *left, int bd) {                                       \
738
4.16k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.16k
  }
aom_highbd_v_predictor_16x4_c
Line
Count
Source
737
7.70k
      const uint16_t *left, int bd) {                                       \
738
7.70k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.70k
  }
aom_highbd_v_predictor_8x32_c
Line
Count
Source
737
2.93k
      const uint16_t *left, int bd) {                                       \
738
2.93k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.93k
  }
aom_highbd_v_predictor_32x8_c
Line
Count
Source
737
3.46k
      const uint16_t *left, int bd) {                                       \
738
3.46k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.46k
  }
aom_highbd_v_predictor_16x64_c
Line
Count
Source
737
497
      const uint16_t *left, int bd) {                                       \
738
497
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
497
  }
aom_highbd_v_predictor_64x16_c
Line
Count
Source
737
288
      const uint16_t *left, int bd) {                                       \
738
288
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
288
  }
aom_highbd_h_predictor_4x4_c
Line
Count
Source
737
54.7k
      const uint16_t *left, int bd) {                                       \
738
54.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
54.7k
  }
aom_highbd_h_predictor_8x8_c
Line
Count
Source
737
44.7k
      const uint16_t *left, int bd) {                                       \
738
44.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
44.7k
  }
aom_highbd_h_predictor_16x16_c
Line
Count
Source
737
22.4k
      const uint16_t *left, int bd) {                                       \
738
22.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
22.4k
  }
aom_highbd_h_predictor_32x32_c
Line
Count
Source
737
19.8k
      const uint16_t *left, int bd) {                                       \
738
19.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
19.8k
  }
aom_highbd_h_predictor_64x64_c
Line
Count
Source
737
2.32k
      const uint16_t *left, int bd) {                                       \
738
2.32k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.32k
  }
aom_highbd_h_predictor_4x8_c
Line
Count
Source
737
22.1k
      const uint16_t *left, int bd) {                                       \
738
22.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
22.1k
  }
aom_highbd_h_predictor_8x4_c
Line
Count
Source
737
30.0k
      const uint16_t *left, int bd) {                                       \
738
30.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
30.0k
  }
aom_highbd_h_predictor_8x16_c
Line
Count
Source
737
11.3k
      const uint16_t *left, int bd) {                                       \
738
11.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.3k
  }
aom_highbd_h_predictor_16x8_c
Line
Count
Source
737
15.3k
      const uint16_t *left, int bd) {                                       \
738
15.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
15.3k
  }
aom_highbd_h_predictor_16x32_c
Line
Count
Source
737
3.99k
      const uint16_t *left, int bd) {                                       \
738
3.99k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.99k
  }
aom_highbd_h_predictor_32x16_c
Line
Count
Source
737
4.78k
      const uint16_t *left, int bd) {                                       \
738
4.78k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.78k
  }
aom_highbd_h_predictor_32x64_c
Line
Count
Source
737
217
      const uint16_t *left, int bd) {                                       \
738
217
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
217
  }
aom_highbd_h_predictor_64x32_c
Line
Count
Source
737
291
      const uint16_t *left, int bd) {                                       \
738
291
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
291
  }
aom_highbd_h_predictor_4x16_c
Line
Count
Source
737
7.13k
      const uint16_t *left, int bd) {                                       \
738
7.13k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.13k
  }
aom_highbd_h_predictor_16x4_c
Line
Count
Source
737
14.4k
      const uint16_t *left, int bd) {                                       \
738
14.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
14.4k
  }
aom_highbd_h_predictor_8x32_c
Line
Count
Source
737
4.19k
      const uint16_t *left, int bd) {                                       \
738
4.19k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.19k
  }
aom_highbd_h_predictor_32x8_c
Line
Count
Source
737
5.74k
      const uint16_t *left, int bd) {                                       \
738
5.74k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.74k
  }
aom_highbd_h_predictor_16x64_c
Line
Count
Source
737
491
      const uint16_t *left, int bd) {                                       \
738
491
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
491
  }
aom_highbd_h_predictor_64x16_c
Line
Count
Source
737
640
      const uint16_t *left, int bd) {                                       \
738
640
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
640
  }
aom_highbd_smooth_predictor_4x4_c
Line
Count
Source
737
115k
      const uint16_t *left, int bd) {                                       \
738
115k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
115k
  }
aom_highbd_smooth_predictor_8x8_c
Line
Count
Source
737
94.4k
      const uint16_t *left, int bd) {                                       \
738
94.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
94.4k
  }
aom_highbd_smooth_predictor_16x16_c
Line
Count
Source
737
45.1k
      const uint16_t *left, int bd) {                                       \
738
45.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
45.1k
  }
aom_highbd_smooth_predictor_32x32_c
Line
Count
Source
737
39.6k
      const uint16_t *left, int bd) {                                       \
738
39.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
39.6k
  }
aom_highbd_smooth_predictor_64x64_c
Line
Count
Source
737
9.13k
      const uint16_t *left, int bd) {                                       \
738
9.13k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.13k
  }
aom_highbd_smooth_predictor_4x8_c
Line
Count
Source
737
30.7k
      const uint16_t *left, int bd) {                                       \
738
30.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
30.7k
  }
aom_highbd_smooth_predictor_8x4_c
Line
Count
Source
737
42.8k
      const uint16_t *left, int bd) {                                       \
738
42.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
42.8k
  }
aom_highbd_smooth_predictor_8x16_c
Line
Count
Source
737
27.3k
      const uint16_t *left, int bd) {                                       \
738
27.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
27.3k
  }
aom_highbd_smooth_predictor_16x8_c
Line
Count
Source
737
37.5k
      const uint16_t *left, int bd) {                                       \
738
37.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
37.5k
  }
aom_highbd_smooth_predictor_16x32_c
Line
Count
Source
737
11.2k
      const uint16_t *left, int bd) {                                       \
738
11.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.2k
  }
aom_highbd_smooth_predictor_32x16_c
Line
Count
Source
737
9.47k
      const uint16_t *left, int bd) {                                       \
738
9.47k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.47k
  }
aom_highbd_smooth_predictor_32x64_c
Line
Count
Source
737
999
      const uint16_t *left, int bd) {                                       \
738
999
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
999
  }
aom_highbd_smooth_predictor_64x32_c
Line
Count
Source
737
900
      const uint16_t *left, int bd) {                                       \
738
900
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
900
  }
aom_highbd_smooth_predictor_4x16_c
Line
Count
Source
737
18.0k
      const uint16_t *left, int bd) {                                       \
738
18.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.0k
  }
aom_highbd_smooth_predictor_16x4_c
Line
Count
Source
737
34.1k
      const uint16_t *left, int bd) {                                       \
738
34.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
34.1k
  }
aom_highbd_smooth_predictor_8x32_c
Line
Count
Source
737
11.9k
      const uint16_t *left, int bd) {                                       \
738
11.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.9k
  }
aom_highbd_smooth_predictor_32x8_c
Line
Count
Source
737
14.2k
      const uint16_t *left, int bd) {                                       \
738
14.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
14.2k
  }
aom_highbd_smooth_predictor_16x64_c
Line
Count
Source
737
1.34k
      const uint16_t *left, int bd) {                                       \
738
1.34k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.34k
  }
aom_highbd_smooth_predictor_64x16_c
Line
Count
Source
737
1.17k
      const uint16_t *left, int bd) {                                       \
738
1.17k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.17k
  }
aom_highbd_smooth_v_predictor_4x4_c
Line
Count
Source
737
29.8k
      const uint16_t *left, int bd) {                                       \
738
29.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
29.8k
  }
aom_highbd_smooth_v_predictor_8x8_c
Line
Count
Source
737
47.1k
      const uint16_t *left, int bd) {                                       \
738
47.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
47.1k
  }
aom_highbd_smooth_v_predictor_16x16_c
Line
Count
Source
737
21.9k
      const uint16_t *left, int bd) {                                       \
738
21.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
21.9k
  }
aom_highbd_smooth_v_predictor_32x32_c
Line
Count
Source
737
22.8k
      const uint16_t *left, int bd) {                                       \
738
22.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
22.8k
  }
aom_highbd_smooth_v_predictor_64x64_c
Line
Count
Source
737
2.54k
      const uint16_t *left, int bd) {                                       \
738
2.54k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.54k
  }
aom_highbd_smooth_v_predictor_4x8_c
Line
Count
Source
737
18.1k
      const uint16_t *left, int bd) {                                       \
738
18.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.1k
  }
aom_highbd_smooth_v_predictor_8x4_c
Line
Count
Source
737
21.9k
      const uint16_t *left, int bd) {                                       \
738
21.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
21.9k
  }
aom_highbd_smooth_v_predictor_8x16_c
Line
Count
Source
737
16.8k
      const uint16_t *left, int bd) {                                       \
738
16.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
16.8k
  }
aom_highbd_smooth_v_predictor_16x8_c
Line
Count
Source
737
24.5k
      const uint16_t *left, int bd) {                                       \
738
24.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
24.5k
  }
aom_highbd_smooth_v_predictor_16x32_c
Line
Count
Source
737
7.43k
      const uint16_t *left, int bd) {                                       \
738
7.43k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.43k
  }
aom_highbd_smooth_v_predictor_32x16_c
Line
Count
Source
737
5.61k
      const uint16_t *left, int bd) {                                       \
738
5.61k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.61k
  }
aom_highbd_smooth_v_predictor_32x64_c
Line
Count
Source
737
241
      const uint16_t *left, int bd) {                                       \
738
241
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
241
  }
aom_highbd_smooth_v_predictor_64x32_c
Line
Count
Source
737
210
      const uint16_t *left, int bd) {                                       \
738
210
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
210
  }
aom_highbd_smooth_v_predictor_4x16_c
Line
Count
Source
737
9.63k
      const uint16_t *left, int bd) {                                       \
738
9.63k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.63k
  }
aom_highbd_smooth_v_predictor_16x4_c
Line
Count
Source
737
19.2k
      const uint16_t *left, int bd) {                                       \
738
19.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
19.2k
  }
aom_highbd_smooth_v_predictor_8x32_c
Line
Count
Source
737
8.28k
      const uint16_t *left, int bd) {                                       \
738
8.28k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.28k
  }
aom_highbd_smooth_v_predictor_32x8_c
Line
Count
Source
737
8.71k
      const uint16_t *left, int bd) {                                       \
738
8.71k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.71k
  }
aom_highbd_smooth_v_predictor_16x64_c
Line
Count
Source
737
232
      const uint16_t *left, int bd) {                                       \
738
232
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
232
  }
aom_highbd_smooth_v_predictor_64x16_c
Line
Count
Source
737
215
      const uint16_t *left, int bd) {                                       \
738
215
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
215
  }
aom_highbd_smooth_h_predictor_4x4_c
Line
Count
Source
737
36.9k
      const uint16_t *left, int bd) {                                       \
738
36.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
36.9k
  }
aom_highbd_smooth_h_predictor_8x8_c
Line
Count
Source
737
49.9k
      const uint16_t *left, int bd) {                                       \
738
49.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
49.9k
  }
aom_highbd_smooth_h_predictor_16x16_c
Line
Count
Source
737
21.4k
      const uint16_t *left, int bd) {                                       \
738
21.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
21.4k
  }
aom_highbd_smooth_h_predictor_32x32_c
Line
Count
Source
737
25.9k
      const uint16_t *left, int bd) {                                       \
738
25.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
25.9k
  }
aom_highbd_smooth_h_predictor_64x64_c
Line
Count
Source
737
2.55k
      const uint16_t *left, int bd) {                                       \
738
2.55k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.55k
  }
aom_highbd_smooth_h_predictor_4x8_c
Line
Count
Source
737
13.9k
      const uint16_t *left, int bd) {                                       \
738
13.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.9k
  }
aom_highbd_smooth_h_predictor_8x4_c
Line
Count
Source
737
16.7k
      const uint16_t *left, int bd) {                                       \
738
16.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
16.7k
  }
aom_highbd_smooth_h_predictor_8x16_c
Line
Count
Source
737
14.6k
      const uint16_t *left, int bd) {                                       \
738
14.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
14.6k
  }
aom_highbd_smooth_h_predictor_16x8_c
Line
Count
Source
737
18.4k
      const uint16_t *left, int bd) {                                       \
738
18.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.4k
  }
aom_highbd_smooth_h_predictor_16x32_c
Line
Count
Source
737
5.78k
      const uint16_t *left, int bd) {                                       \
738
5.78k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.78k
  }
aom_highbd_smooth_h_predictor_32x16_c
Line
Count
Source
737
5.30k
      const uint16_t *left, int bd) {                                       \
738
5.30k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.30k
  }
aom_highbd_smooth_h_predictor_32x64_c
Line
Count
Source
737
324
      const uint16_t *left, int bd) {                                       \
738
324
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
324
  }
aom_highbd_smooth_h_predictor_64x32_c
Line
Count
Source
737
248
      const uint16_t *left, int bd) {                                       \
738
248
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
248
  }
aom_highbd_smooth_h_predictor_4x16_c
Line
Count
Source
737
8.37k
      const uint16_t *left, int bd) {                                       \
738
8.37k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.37k
  }
aom_highbd_smooth_h_predictor_16x4_c
Line
Count
Source
737
15.1k
      const uint16_t *left, int bd) {                                       \
738
15.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
15.1k
  }
aom_highbd_smooth_h_predictor_8x32_c
Line
Count
Source
737
5.53k
      const uint16_t *left, int bd) {                                       \
738
5.53k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.53k
  }
aom_highbd_smooth_h_predictor_32x8_c
Line
Count
Source
737
7.88k
      const uint16_t *left, int bd) {                                       \
738
7.88k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.88k
  }
aom_highbd_smooth_h_predictor_16x64_c
Line
Count
Source
737
501
      const uint16_t *left, int bd) {                                       \
738
501
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
501
  }
aom_highbd_smooth_h_predictor_64x16_c
Line
Count
Source
737
391
      const uint16_t *left, int bd) {                                       \
738
391
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
391
  }
aom_highbd_paeth_predictor_4x4_c
Line
Count
Source
737
128k
      const uint16_t *left, int bd) {                                       \
738
128k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
128k
  }
aom_highbd_paeth_predictor_8x8_c
Line
Count
Source
737
90.1k
      const uint16_t *left, int bd) {                                       \
738
90.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
90.1k
  }
aom_highbd_paeth_predictor_16x16_c
Line
Count
Source
737
42.8k
      const uint16_t *left, int bd) {                                       \
738
42.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
42.8k
  }
aom_highbd_paeth_predictor_32x32_c
Line
Count
Source
737
136k
      const uint16_t *left, int bd) {                                       \
738
136k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
136k
  }
aom_highbd_paeth_predictor_64x64_c
Line
Count
Source
737
16.8k
      const uint16_t *left, int bd) {                                       \
738
16.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
16.8k
  }
aom_highbd_paeth_predictor_4x8_c
Line
Count
Source
737
29.8k
      const uint16_t *left, int bd) {                                       \
738
29.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
29.8k
  }
aom_highbd_paeth_predictor_8x4_c
Line
Count
Source
737
39.7k
      const uint16_t *left, int bd) {                                       \
738
39.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
39.7k
  }
aom_highbd_paeth_predictor_8x16_c
Line
Count
Source
737
30.7k
      const uint16_t *left, int bd) {                                       \
738
30.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
30.7k
  }
aom_highbd_paeth_predictor_16x8_c
Line
Count
Source
737
38.4k
      const uint16_t *left, int bd) {                                       \
738
38.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
38.4k
  }
aom_highbd_paeth_predictor_16x32_c
Line
Count
Source
737
61.2k
      const uint16_t *left, int bd) {                                       \
738
61.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
61.2k
  }
aom_highbd_paeth_predictor_32x16_c
Line
Count
Source
737
9.53k
      const uint16_t *left, int bd) {                                       \
738
9.53k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.53k
  }
aom_highbd_paeth_predictor_32x64_c
Line
Count
Source
737
4.26k
      const uint16_t *left, int bd) {                                       \
738
4.26k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.26k
  }
aom_highbd_paeth_predictor_64x32_c
Line
Count
Source
737
1.01k
      const uint16_t *left, int bd) {                                       \
738
1.01k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.01k
  }
aom_highbd_paeth_predictor_4x16_c
Line
Count
Source
737
79.2k
      const uint16_t *left, int bd) {                                       \
738
79.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
79.2k
  }
aom_highbd_paeth_predictor_16x4_c
Line
Count
Source
737
33.8k
      const uint16_t *left, int bd) {                                       \
738
33.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
33.8k
  }
aom_highbd_paeth_predictor_8x32_c
Line
Count
Source
737
29.6k
      const uint16_t *left, int bd) {                                       \
738
29.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
29.6k
  }
aom_highbd_paeth_predictor_32x8_c
Line
Count
Source
737
13.1k
      const uint16_t *left, int bd) {                                       \
738
13.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.1k
  }
aom_highbd_paeth_predictor_16x64_c
Line
Count
Source
737
16.2k
      const uint16_t *left, int bd) {                                       \
738
16.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
16.2k
  }
aom_highbd_paeth_predictor_64x16_c
Line
Count
Source
737
901
      const uint16_t *left, int bd) {                                       \
738
901
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
901
  }
aom_highbd_dc_128_predictor_4x4_c
Line
Count
Source
737
4.98k
      const uint16_t *left, int bd) {                                       \
738
4.98k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.98k
  }
aom_highbd_dc_128_predictor_8x8_c
Line
Count
Source
737
3.24k
      const uint16_t *left, int bd) {                                       \
738
3.24k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.24k
  }
aom_highbd_dc_128_predictor_16x16_c
Line
Count
Source
737
1.89k
      const uint16_t *left, int bd) {                                       \
738
1.89k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.89k
  }
aom_highbd_dc_128_predictor_32x32_c
Line
Count
Source
737
11.5k
      const uint16_t *left, int bd) {                                       \
738
11.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.5k
  }
aom_highbd_dc_128_predictor_64x64_c
Line
Count
Source
737
4.21k
      const uint16_t *left, int bd) {                                       \
738
4.21k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.21k
  }
aom_highbd_dc_128_predictor_4x8_c
Line
Count
Source
737
489
      const uint16_t *left, int bd) {                                       \
738
489
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
489
  }
aom_highbd_dc_128_predictor_8x4_c
Line
Count
Source
737
33
      const uint16_t *left, int bd) {                                       \
738
33
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
33
  }
aom_highbd_dc_128_predictor_8x16_c
Line
Count
Source
737
196
      const uint16_t *left, int bd) {                                       \
738
196
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
196
  }
aom_highbd_dc_128_predictor_16x8_c
Line
Count
Source
737
127
      const uint16_t *left, int bd) {                                       \
738
127
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
127
  }
aom_highbd_dc_128_predictor_16x32_c
Line
Count
Source
737
1.66k
      const uint16_t *left, int bd) {                                       \
738
1.66k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.66k
  }
aom_highbd_dc_128_predictor_32x16_c
Line
Count
Source
737
1.82k
      const uint16_t *left, int bd) {                                       \
738
1.82k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.82k
  }
aom_highbd_dc_128_predictor_32x64_c
Line
Count
Source
737
383
      const uint16_t *left, int bd) {                                       \
738
383
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
383
  }
aom_highbd_dc_128_predictor_64x32_c
Line
Count
Source
737
98
      const uint16_t *left, int bd) {                                       \
738
98
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
98
  }
aom_highbd_dc_128_predictor_4x16_c
Line
Count
Source
737
204
      const uint16_t *left, int bd) {                                       \
738
204
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
204
  }
aom_highbd_dc_128_predictor_16x4_c
Line
Count
Source
737
78
      const uint16_t *left, int bd) {                                       \
738
78
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
78
  }
aom_highbd_dc_128_predictor_8x32_c
Line
Count
Source
737
355
      const uint16_t *left, int bd) {                                       \
738
355
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
355
  }
aom_highbd_dc_128_predictor_32x8_c
Line
Count
Source
737
157
      const uint16_t *left, int bd) {                                       \
738
157
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
157
  }
aom_highbd_dc_128_predictor_16x64_c
Line
Count
Source
737
144
      const uint16_t *left, int bd) {                                       \
738
144
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
144
  }
aom_highbd_dc_128_predictor_64x16_c
Line
Count
Source
737
13
      const uint16_t *left, int bd) {                                       \
738
13
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13
  }
aom_highbd_dc_left_predictor_4x4_c
Line
Count
Source
737
18.5k
      const uint16_t *left, int bd) {                                       \
738
18.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.5k
  }
aom_highbd_dc_left_predictor_8x8_c
Line
Count
Source
737
6.99k
      const uint16_t *left, int bd) {                                       \
738
6.99k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.99k
  }
aom_highbd_dc_left_predictor_16x16_c
Line
Count
Source
737
8.06k
      const uint16_t *left, int bd) {                                       \
738
8.06k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.06k
  }
aom_highbd_dc_left_predictor_32x32_c
Line
Count
Source
737
43.7k
      const uint16_t *left, int bd) {                                       \
738
43.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
43.7k
  }
aom_highbd_dc_left_predictor_64x64_c
Line
Count
Source
737
11.1k
      const uint16_t *left, int bd) {                                       \
738
11.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.1k
  }
aom_highbd_dc_left_predictor_4x8_c
Line
Count
Source
737
3.82k
      const uint16_t *left, int bd) {                                       \
738
3.82k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.82k
  }
aom_highbd_dc_left_predictor_8x4_c
Line
Count
Source
737
2.16k
      const uint16_t *left, int bd) {                                       \
738
2.16k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.16k
  }
aom_highbd_dc_left_predictor_8x16_c
Line
Count
Source
737
3.10k
      const uint16_t *left, int bd) {                                       \
738
3.10k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.10k
  }
aom_highbd_dc_left_predictor_16x8_c
Line
Count
Source
737
4.67k
      const uint16_t *left, int bd) {                                       \
738
4.67k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.67k
  }
aom_highbd_dc_left_predictor_16x32_c
Line
Count
Source
737
3.93k
      const uint16_t *left, int bd) {                                       \
738
3.93k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.93k
  }
aom_highbd_dc_left_predictor_32x16_c
Line
Count
Source
737
4.01k
      const uint16_t *left, int bd) {                                       \
738
4.01k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.01k
  }
aom_highbd_dc_left_predictor_32x64_c
Line
Count
Source
737
595
      const uint16_t *left, int bd) {                                       \
738
595
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
595
  }
aom_highbd_dc_left_predictor_64x32_c
Line
Count
Source
737
911
      const uint16_t *left, int bd) {                                       \
738
911
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
911
  }
aom_highbd_dc_left_predictor_4x16_c
Line
Count
Source
737
7.56k
      const uint16_t *left, int bd) {                                       \
738
7.56k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.56k
  }
aom_highbd_dc_left_predictor_16x4_c
Line
Count
Source
737
906
      const uint16_t *left, int bd) {                                       \
738
906
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
906
  }
aom_highbd_dc_left_predictor_8x32_c
Line
Count
Source
737
3.46k
      const uint16_t *left, int bd) {                                       \
738
3.46k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.46k
  }
aom_highbd_dc_left_predictor_32x8_c
Line
Count
Source
737
1.10k
      const uint16_t *left, int bd) {                                       \
738
1.10k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.10k
  }
aom_highbd_dc_left_predictor_16x64_c
Line
Count
Source
737
1.08k
      const uint16_t *left, int bd) {                                       \
738
1.08k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.08k
  }
aom_highbd_dc_left_predictor_64x16_c
Line
Count
Source
737
355
      const uint16_t *left, int bd) {                                       \
738
355
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
355
  }
aom_highbd_dc_top_predictor_4x4_c
Line
Count
Source
737
74.8k
      const uint16_t *left, int bd) {                                       \
738
74.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
74.8k
  }
aom_highbd_dc_top_predictor_8x8_c
Line
Count
Source
737
12.2k
      const uint16_t *left, int bd) {                                       \
738
12.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
12.2k
  }
aom_highbd_dc_top_predictor_16x16_c
Line
Count
Source
737
10.2k
      const uint16_t *left, int bd) {                                       \
738
10.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
10.2k
  }
aom_highbd_dc_top_predictor_32x32_c
Line
Count
Source
737
83.6k
      const uint16_t *left, int bd) {                                       \
738
83.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
83.6k
  }
aom_highbd_dc_top_predictor_64x64_c
Line
Count
Source
737
11.7k
      const uint16_t *left, int bd) {                                       \
738
11.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.7k
  }
aom_highbd_dc_top_predictor_4x8_c
Line
Count
Source
737
33.1k
      const uint16_t *left, int bd) {                                       \
738
33.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
33.1k
  }
aom_highbd_dc_top_predictor_8x4_c
Line
Count
Source
737
9.08k
      const uint16_t *left, int bd) {                                       \
738
9.08k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.08k
  }
aom_highbd_dc_top_predictor_8x16_c
Line
Count
Source
737
15.8k
      const uint16_t *left, int bd) {                                       \
738
15.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
15.8k
  }
aom_highbd_dc_top_predictor_16x8_c
Line
Count
Source
737
4.58k
      const uint16_t *left, int bd) {                                       \
738
4.58k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.58k
  }
aom_highbd_dc_top_predictor_16x32_c
Line
Count
Source
737
13.9k
      const uint16_t *left, int bd) {                                       \
738
13.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.9k
  }
aom_highbd_dc_top_predictor_32x16_c
Line
Count
Source
737
4.73k
      const uint16_t *left, int bd) {                                       \
738
4.73k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.73k
  }
aom_highbd_dc_top_predictor_32x64_c
Line
Count
Source
737
5.32k
      const uint16_t *left, int bd) {                                       \
738
5.32k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.32k
  }
aom_highbd_dc_top_predictor_64x32_c
Line
Count
Source
737
571
      const uint16_t *left, int bd) {                                       \
738
571
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
571
  }
aom_highbd_dc_top_predictor_4x16_c
Line
Count
Source
737
1.46k
      const uint16_t *left, int bd) {                                       \
738
1.46k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.46k
  }
aom_highbd_dc_top_predictor_16x4_c
Line
Count
Source
737
3.24k
      const uint16_t *left, int bd) {                                       \
738
3.24k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.24k
  }
aom_highbd_dc_top_predictor_8x32_c
Line
Count
Source
737
4.63k
      const uint16_t *left, int bd) {                                       \
738
4.63k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.63k
  }
aom_highbd_dc_top_predictor_32x8_c
Line
Count
Source
737
3.22k
      const uint16_t *left, int bd) {                                       \
738
3.22k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.22k
  }
aom_highbd_dc_top_predictor_16x64_c
Line
Count
Source
737
592
      const uint16_t *left, int bd) {                                       \
738
592
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
592
  }
aom_highbd_dc_top_predictor_64x16_c
Line
Count
Source
737
797
      const uint16_t *left, int bd) {                                       \
738
797
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
797
  }
aom_highbd_dc_predictor_4x4_c
Line
Count
Source
737
1.24M
      const uint16_t *left, int bd) {                                       \
738
1.24M
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.24M
  }
aom_highbd_dc_predictor_8x8_c
Line
Count
Source
737
399k
      const uint16_t *left, int bd) {                                       \
738
399k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
399k
  }
aom_highbd_dc_predictor_16x16_c
Line
Count
Source
737
178k
      const uint16_t *left, int bd) {                                       \
738
178k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
178k
  }
aom_highbd_dc_predictor_32x32_c
Line
Count
Source
737
448k
      const uint16_t *left, int bd) {                                       \
738
448k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
448k
  }
aom_highbd_dc_predictor_64x64_c
Line
Count
Source
737
41.6k
      const uint16_t *left, int bd) {                                       \
738
41.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
41.6k
  }
740
#else  // !CONFIG_AV1_HIGHBITDEPTH
741
#define intra_pred_highbd_sized(type, width, height)
742
#endif  // CONFIG_AV1_HIGHBITDEPTH
743
744
/* clang-format off */
745
#if CONFIG_REALTIME_ONLY && !CONFIG_AV1_DECODER
746
#define intra_pred_rectangular(type) \
747
  intra_pred_sized(type, 4, 8) \
748
  intra_pred_sized(type, 8, 4) \
749
  intra_pred_sized(type, 8, 16) \
750
  intra_pred_sized(type, 16, 8) \
751
  intra_pred_sized(type, 16, 32) \
752
  intra_pred_sized(type, 32, 16) \
753
  intra_pred_sized(type, 32, 64) \
754
  intra_pred_sized(type, 64, 32) \
755
  intra_pred_highbd_sized(type, 4, 8) \
756
  intra_pred_highbd_sized(type, 8, 4) \
757
  intra_pred_highbd_sized(type, 8, 16) \
758
  intra_pred_highbd_sized(type, 16, 8) \
759
  intra_pred_highbd_sized(type, 16, 32) \
760
  intra_pred_highbd_sized(type, 32, 16) \
761
  intra_pred_highbd_sized(type, 32, 64) \
762
  intra_pred_highbd_sized(type, 64, 32)
763
#else
764
#define intra_pred_rectangular(type) \
765
  intra_pred_sized(type, 4, 8) \
766
  intra_pred_sized(type, 8, 4) \
767
  intra_pred_sized(type, 8, 16) \
768
  intra_pred_sized(type, 16, 8) \
769
  intra_pred_sized(type, 16, 32) \
770
  intra_pred_sized(type, 32, 16) \
771
  intra_pred_sized(type, 32, 64) \
772
  intra_pred_sized(type, 64, 32) \
773
  intra_pred_sized(type, 4, 16) \
774
  intra_pred_sized(type, 16, 4) \
775
  intra_pred_sized(type, 8, 32) \
776
  intra_pred_sized(type, 32, 8) \
777
  intra_pred_sized(type, 16, 64) \
778
  intra_pred_sized(type, 64, 16) \
779
  intra_pred_highbd_sized(type, 4, 8) \
780
  intra_pred_highbd_sized(type, 8, 4) \
781
  intra_pred_highbd_sized(type, 8, 16) \
782
  intra_pred_highbd_sized(type, 16, 8) \
783
  intra_pred_highbd_sized(type, 16, 32) \
784
  intra_pred_highbd_sized(type, 32, 16) \
785
  intra_pred_highbd_sized(type, 32, 64) \
786
  intra_pred_highbd_sized(type, 64, 32) \
787
  intra_pred_highbd_sized(type, 4, 16) \
788
  intra_pred_highbd_sized(type, 16, 4) \
789
  intra_pred_highbd_sized(type, 8, 32) \
790
  intra_pred_highbd_sized(type, 32, 8) \
791
  intra_pred_highbd_sized(type, 16, 64) \
792
  intra_pred_highbd_sized(type, 64, 16)
793
#endif // CONFIG_REALTIME_ONLY && !CONFIG_AV1_DECODER
794
795
#define intra_pred_above_4x4(type) \
796
  intra_pred_sized(type, 8, 8) \
797
  intra_pred_sized(type, 16, 16) \
798
  intra_pred_sized(type, 32, 32) \
799
  intra_pred_sized(type, 64, 64) \
800
  intra_pred_highbd_sized(type, 4, 4) \
801
  intra_pred_highbd_sized(type, 8, 8) \
802
  intra_pred_highbd_sized(type, 16, 16) \
803
  intra_pred_highbd_sized(type, 32, 32) \
804
  intra_pred_highbd_sized(type, 64, 64) \
805
  intra_pred_rectangular(type)
806
#define intra_pred_allsizes(type) \
807
  intra_pred_sized(type, 4, 4) \
808
  intra_pred_above_4x4(type)
809
#define intra_pred_square(type) \
810
  intra_pred_sized(type, 4, 4) \
811
  intra_pred_sized(type, 8, 8) \
812
  intra_pred_sized(type, 16, 16) \
813
  intra_pred_sized(type, 32, 32) \
814
  intra_pred_sized(type, 64, 64) \
815
  intra_pred_highbd_sized(type, 4, 4) \
816
  intra_pred_highbd_sized(type, 8, 8) \
817
  intra_pred_highbd_sized(type, 16, 16) \
818
  intra_pred_highbd_sized(type, 32, 32) \
819
  intra_pred_highbd_sized(type, 64, 64)
820
821
intra_pred_allsizes(v)
822
intra_pred_allsizes(h)
823
intra_pred_allsizes(smooth)
824
intra_pred_allsizes(smooth_v)
825
intra_pred_allsizes(smooth_h)
826
intra_pred_allsizes(paeth)
827
intra_pred_allsizes(dc_128)
828
intra_pred_allsizes(dc_left)
829
intra_pred_allsizes(dc_top)
830
intra_pred_square(dc)
831
/* clang-format on */
832
#undef intra_pred_allsizes