Coverage Report

Created: 2026-06-14 06:57

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
420k
                               const uint8_t *above, const uint8_t *left) {
25
420k
  int r;
26
420k
  (void)left;
27
28
3.44M
  for (r = 0; r < bh; r++) {
29
3.02M
    memcpy(dst, above, bw);
30
3.02M
    dst += stride;
31
3.02M
  }
32
420k
}
33
34
static inline void h_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
35
422k
                               const uint8_t *above, const uint8_t *left) {
36
422k
  int r;
37
422k
  (void)above;
38
39
3.93M
  for (r = 0; r < bh; r++) {
40
3.51M
    memset(dst, left[r], bw);
41
3.51M
    dst += stride;
42
3.51M
  }
43
422k
}
44
45
3.43G
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.14G
                                              uint16_t top_left) {
49
1.14G
  const int base = top + left - top_left;
50
1.14G
  const int p_left = abs_diff(base, left);
51
1.14G
  const int p_top = abs_diff(base, top);
52
1.14G
  const int p_top_left = abs_diff(base, top_left);
53
54
  // Return nearest to base of left, top and top_left.
55
1.14G
  return (p_left <= p_top && p_left <= p_top_left) ? left
56
1.14G
         : (p_top <= p_top_left)                   ? top
57
100M
                                                   : top_left;
58
1.14G
}
59
60
static inline void paeth_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
61
                                   int bh, const uint8_t *above,
62
4.57M
                                   const uint8_t *left) {
63
4.57M
  int r, c;
64
4.57M
  const uint8_t ytop_left = above[-1];
65
66
45.9M
  for (r = 0; r < bh; r++) {
67
858M
    for (c = 0; c < bw; c++)
68
817M
      dst[c] = (uint8_t)paeth_predictor_single(left[r], above[c], ytop_left);
69
41.3M
    dst += stride;
70
41.3M
  }
71
4.57M
}
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.14M
  assert(weights_w[0] < weights_scale);                               \
77
2.14M
  assert(weights_h[0] < weights_scale);                               \
78
2.14M
  assert(weights_scale - weights_w[bw - 1] < weights_scale);          \
79
2.14M
  assert(weights_scale - weights_h[bh - 1] < weights_scale);          \
80
2.14M
  assert(pred_scale < 31)  // ensures no overflow when calculating predictor.
81
82
500M
#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
643k
                                    const uint8_t *left) {
87
643k
  const uint8_t below_pred = left[bh - 1];   // estimated by bottom-left pixel
88
643k
  const uint8_t right_pred = above[bw - 1];  // estimated by top-right pixel
89
643k
  const uint8_t *const sm_weights_w = smooth_weights + bw - 4;
90
643k
  const uint8_t *const sm_weights_h = smooth_weights + bh - 4;
91
  // scale = 2 * 2^SMOOTH_WEIGHT_LOG2_SCALE
92
643k
  const int log2_scale = 1 + SMOOTH_WEIGHT_LOG2_SCALE;
93
643k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
94
643k
  sm_weights_sanity_checks(sm_weights_w, sm_weights_h, scale,
95
643k
                           log2_scale + sizeof(*dst));
96
643k
  int r;
97
7.71M
  for (r = 0; r < bh; ++r) {
98
7.07M
    int c;
99
143M
    for (c = 0; c < bw; ++c) {
100
136M
      const uint8_t pixels[] = { above[c], below_pred, left[r], right_pred };
101
136M
      const uint8_t weights[] = { sm_weights_h[r], scale - sm_weights_h[r],
102
136M
                                  sm_weights_w[c], scale - sm_weights_w[c] };
103
136M
      uint32_t this_pred = 0;
104
136M
      int i;
105
136M
      assert(scale >= sm_weights_h[r] && scale >= sm_weights_w[c]);
106
680M
      for (i = 0; i < 4; ++i) {
107
544M
        this_pred += weights[i] * pixels[i];
108
544M
      }
109
136M
      dst[c] = divide_round(this_pred, log2_scale);
110
136M
    }
111
7.07M
    dst += stride;
112
7.07M
  }
113
643k
}
114
115
static inline void smooth_v_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
116
                                      int bh, const uint8_t *above,
117
220k
                                      const uint8_t *left) {
118
220k
  const uint8_t below_pred = left[bh - 1];  // estimated by bottom-left pixel
119
220k
  const uint8_t *const sm_weights = smooth_weights + bh - 4;
120
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
121
220k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
122
220k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
123
220k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
124
220k
                           log2_scale + sizeof(*dst));
125
126
220k
  int r;
127
2.73M
  for (r = 0; r < bh; r++) {
128
2.51M
    int c;
129
50.9M
    for (c = 0; c < bw; ++c) {
130
48.4M
      const uint8_t pixels[] = { above[c], below_pred };
131
48.4M
      const uint8_t weights[] = { sm_weights[r], scale - sm_weights[r] };
132
48.4M
      uint32_t this_pred = 0;
133
48.4M
      assert(scale >= sm_weights[r]);
134
48.4M
      int i;
135
145M
      for (i = 0; i < 2; ++i) {
136
96.9M
        this_pred += weights[i] * pixels[i];
137
96.9M
      }
138
48.4M
      dst[c] = divide_round(this_pred, log2_scale);
139
48.4M
    }
140
2.51M
    dst += stride;
141
2.51M
  }
142
220k
}
143
144
static inline void smooth_h_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
145
                                      int bh, const uint8_t *above,
146
316k
                                      const uint8_t *left) {
147
316k
  const uint8_t right_pred = above[bw - 1];  // estimated by top-right pixel
148
316k
  const uint8_t *const sm_weights = smooth_weights + bw - 4;
149
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
150
316k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
151
316k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
152
316k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
153
316k
                           log2_scale + sizeof(*dst));
154
155
316k
  int r;
156
3.84M
  for (r = 0; r < bh; r++) {
157
3.52M
    int c;
158
68.1M
    for (c = 0; c < bw; ++c) {
159
64.6M
      const uint8_t pixels[] = { left[r], right_pred };
160
64.6M
      const uint8_t weights[] = { sm_weights[c], scale - sm_weights[c] };
161
64.6M
      uint32_t this_pred = 0;
162
64.6M
      assert(scale >= sm_weights[c]);
163
64.6M
      int i;
164
193M
      for (i = 0; i < 2; ++i) {
165
129M
        this_pred += weights[i] * pixels[i];
166
129M
      }
167
64.6M
      dst[c] = divide_round(this_pred, log2_scale);
168
64.6M
    }
169
3.52M
    dst += stride;
170
3.52M
  }
171
316k
}
172
173
static inline void dc_128_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
174
                                    int bh, const uint8_t *above,
175
17.4k
                                    const uint8_t *left) {
176
17.4k
  int r;
177
17.4k
  (void)above;
178
17.4k
  (void)left;
179
180
439k
  for (r = 0; r < bh; r++) {
181
422k
    memset(dst, 128, bw);
182
422k
    dst += stride;
183
422k
  }
184
17.4k
}
185
186
static inline void dc_left_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
187
                                     int bh, const uint8_t *above,
188
165k
                                     const uint8_t *left) {
189
165k
  int i, r, expected_dc, sum = 0;
190
165k
  (void)above;
191
192
2.66M
  for (i = 0; i < bh; i++) sum += left[i];
193
165k
  expected_dc = (sum + (bh >> 1)) / bh;
194
195
2.66M
  for (r = 0; r < bh; r++) {
196
2.49M
    memset(dst, expected_dc, bw);
197
2.49M
    dst += stride;
198
2.49M
  }
199
165k
}
200
201
static inline void dc_top_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
202
                                    int bh, const uint8_t *above,
203
329k
                                    const uint8_t *left) {
204
329k
  int i, r, expected_dc, sum = 0;
205
329k
  (void)left;
206
207
4.76M
  for (i = 0; i < bw; i++) sum += above[i];
208
329k
  expected_dc = (sum + (bw >> 1)) / bw;
209
210
5.24M
  for (r = 0; r < bh; r++) {
211
4.91M
    memset(dst, expected_dc, bw);
212
4.91M
    dst += stride;
213
4.91M
  }
214
329k
}
215
216
static inline void dc_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
217
3.34M
                                const uint8_t *above, const uint8_t *left) {
218
3.34M
  int i, r, expected_dc, sum = 0;
219
3.34M
  const int count = bw + bh;
220
221
31.0M
  for (i = 0; i < bw; i++) {
222
27.7M
    sum += above[i];
223
27.7M
  }
224
31.0M
  for (i = 0; i < bh; i++) {
225
27.7M
    sum += left[i];
226
27.7M
  }
227
228
3.34M
  expected_dc = (sum + (count >> 1)) / count;
229
230
31.0M
  for (r = 0; r < bh; r++) {
231
27.7M
    memset(dst, expected_dc, bw);
232
27.7M
    dst += stride;
233
27.7M
  }
234
3.34M
}
235
236
static inline int divide_using_multiply_shift(int num, int shift1,
237
2.10M
                                              int multiplier, int shift2) {
238
2.10M
  const int interm = num >> shift1;
239
2.10M
  return interm * multiplier >> shift2;
240
2.10M
}
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
679k
#define DC_MULTIPLIER_1X2 0x5556
261
385k
#define DC_MULTIPLIER_1X4 0x3334
262
263
1.06M
#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.06M
                                     int multiplier) {
269
1.06M
  int sum = 0;
270
271
13.6M
  for (int i = 0; i < bw; i++) {
272
12.6M
    sum += above[i];
273
12.6M
  }
274
13.5M
  for (int i = 0; i < bh; i++) {
275
12.4M
    sum += left[i];
276
12.4M
  }
277
278
1.06M
  const int expected_dc = divide_using_multiply_shift(
279
1.06M
      sum + ((bw + bh) >> 1), shift1, multiplier, DC_SHIFT2);
280
1.06M
  assert(expected_dc < (1 << 8));
281
282
13.5M
  for (int r = 0; r < bh; r++) {
283
12.4M
    memset(dst, expected_dc, bw);
284
12.4M
    dst += stride;
285
12.4M
  }
286
1.06M
}
287
288
#undef DC_SHIFT2
289
290
void aom_dc_predictor_4x8_c(uint8_t *dst, ptrdiff_t stride,
291
171k
                            const uint8_t *above, const uint8_t *left) {
292
171k
  dc_predictor_rect(dst, stride, 4, 8, above, left, 2, DC_MULTIPLIER_1X2);
293
171k
}
294
295
void aom_dc_predictor_8x4_c(uint8_t *dst, ptrdiff_t stride,
296
181k
                            const uint8_t *above, const uint8_t *left) {
297
181k
  dc_predictor_rect(dst, stride, 8, 4, above, left, 2, DC_MULTIPLIER_1X2);
298
181k
}
299
300
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
301
void aom_dc_predictor_4x16_c(uint8_t *dst, ptrdiff_t stride,
302
102k
                             const uint8_t *above, const uint8_t *left) {
303
102k
  dc_predictor_rect(dst, stride, 4, 16, above, left, 2, DC_MULTIPLIER_1X4);
304
102k
}
305
306
void aom_dc_predictor_16x4_c(uint8_t *dst, ptrdiff_t stride,
307
141k
                             const uint8_t *above, const uint8_t *left) {
308
141k
  dc_predictor_rect(dst, stride, 16, 4, above, left, 2, DC_MULTIPLIER_1X4);
309
141k
}
310
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
311
312
void aom_dc_predictor_8x16_c(uint8_t *dst, ptrdiff_t stride,
313
100k
                             const uint8_t *above, const uint8_t *left) {
314
100k
  dc_predictor_rect(dst, stride, 8, 16, above, left, 3, DC_MULTIPLIER_1X2);
315
100k
}
316
317
void aom_dc_predictor_16x8_c(uint8_t *dst, ptrdiff_t stride,
318
142k
                             const uint8_t *above, const uint8_t *left) {
319
142k
  dc_predictor_rect(dst, stride, 16, 8, above, left, 3, DC_MULTIPLIER_1X2);
320
142k
}
321
322
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
323
void aom_dc_predictor_8x32_c(uint8_t *dst, ptrdiff_t stride,
324
81.8k
                             const uint8_t *above, const uint8_t *left) {
325
81.8k
  dc_predictor_rect(dst, stride, 8, 32, above, left, 3, DC_MULTIPLIER_1X4);
326
81.8k
}
327
328
void aom_dc_predictor_32x8_c(uint8_t *dst, ptrdiff_t stride,
329
53.6k
                             const uint8_t *above, const uint8_t *left) {
330
53.6k
  dc_predictor_rect(dst, stride, 32, 8, above, left, 3, DC_MULTIPLIER_1X4);
331
53.6k
}
332
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
333
334
void aom_dc_predictor_16x32_c(uint8_t *dst, ptrdiff_t stride,
335
37.8k
                              const uint8_t *above, const uint8_t *left) {
336
37.8k
  dc_predictor_rect(dst, stride, 16, 32, above, left, 4, DC_MULTIPLIER_1X2);
337
37.8k
}
338
339
void aom_dc_predictor_32x16_c(uint8_t *dst, ptrdiff_t stride,
340
41.8k
                              const uint8_t *above, const uint8_t *left) {
341
41.8k
  dc_predictor_rect(dst, stride, 32, 16, above, left, 4, DC_MULTIPLIER_1X2);
342
41.8k
}
343
344
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
345
void aom_dc_predictor_16x64_c(uint8_t *dst, ptrdiff_t stride,
346
3.87k
                              const uint8_t *above, const uint8_t *left) {
347
3.87k
  dc_predictor_rect(dst, stride, 16, 64, above, left, 4, DC_MULTIPLIER_1X4);
348
3.87k
}
349
350
void aom_dc_predictor_64x16_c(uint8_t *dst, ptrdiff_t stride,
351
2.69k
                              const uint8_t *above, const uint8_t *left) {
352
2.69k
  dc_predictor_rect(dst, stride, 64, 16, above, left, 4, DC_MULTIPLIER_1X4);
353
2.69k
}
354
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
355
356
void aom_dc_predictor_32x64_c(uint8_t *dst, ptrdiff_t stride,
357
1.60k
                              const uint8_t *above, const uint8_t *left) {
358
1.60k
  dc_predictor_rect(dst, stride, 32, 64, above, left, 5, DC_MULTIPLIER_1X2);
359
1.60k
}
360
361
void aom_dc_predictor_64x32_c(uint8_t *dst, ptrdiff_t stride,
362
1.96k
                              const uint8_t *above, const uint8_t *left) {
363
1.96k
  dc_predictor_rect(dst, stride, 64, 32, above, left, 5, DC_MULTIPLIER_1X2);
364
1.96k
}
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.13M
  for (r = 0; r < bh; r++) {
378
1.98M
    memcpy(dst, above, bw * sizeof(uint16_t));
379
1.98M
    dst += stride;
380
1.98M
  }
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
246k
                                      const uint16_t *left, int bd) {
386
246k
  int r;
387
246k
  (void)above;
388
246k
  (void)bd;
389
3.03M
  for (r = 0; r < bh; r++) {
390
2.79M
    aom_memset16(dst, left[r], bw);
391
2.79M
    dst += stride;
392
2.79M
  }
393
246k
}
394
395
static inline void highbd_paeth_predictor(uint16_t *dst, ptrdiff_t stride,
396
                                          int bw, int bh, const uint16_t *above,
397
769k
                                          const uint16_t *left, int bd) {
398
769k
  int r, c;
399
769k
  const uint16_t ytop_left = above[-1];
400
769k
  (void)bd;
401
402
14.9M
  for (r = 0; r < bh; r++) {
403
342M
    for (c = 0; c < bw; c++)
404
328M
      dst[c] = paeth_predictor_single(left[r], above[c], ytop_left);
405
14.2M
    dst += stride;
406
14.2M
  }
407
769k
}
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
507k
                                           const uint16_t *left, int bd) {
413
507k
  (void)bd;
414
507k
  const uint16_t below_pred = left[bh - 1];   // estimated by bottom-left pixel
415
507k
  const uint16_t right_pred = above[bw - 1];  // estimated by top-right pixel
416
507k
  const uint8_t *const sm_weights_w = smooth_weights + bw - 4;
417
507k
  const uint8_t *const sm_weights_h = smooth_weights + bh - 4;
418
  // scale = 2 * 2^SMOOTH_WEIGHT_LOG2_SCALE
419
507k
  const int log2_scale = 1 + SMOOTH_WEIGHT_LOG2_SCALE;
420
507k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
421
507k
  sm_weights_sanity_checks(sm_weights_w, sm_weights_h, scale,
422
507k
                           log2_scale + sizeof(*dst));
423
507k
  int r;
424
6.74M
  for (r = 0; r < bh; ++r) {
425
6.24M
    int c;
426
139M
    for (c = 0; c < bw; ++c) {
427
133M
      const uint16_t pixels[] = { above[c], below_pred, left[r], right_pred };
428
133M
      const uint8_t weights[] = { sm_weights_h[r], scale - sm_weights_h[r],
429
133M
                                  sm_weights_w[c], scale - sm_weights_w[c] };
430
133M
      uint32_t this_pred = 0;
431
133M
      int i;
432
133M
      assert(scale >= sm_weights_h[r] && scale >= sm_weights_w[c]);
433
666M
      for (i = 0; i < 4; ++i) {
434
533M
        this_pred += weights[i] * pixels[i];
435
533M
      }
436
133M
      dst[c] = divide_round(this_pred, log2_scale);
437
133M
    }
438
6.24M
    dst += stride;
439
6.24M
  }
440
507k
}
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
221k
                                             const uint16_t *left, int bd) {
446
221k
  (void)bd;
447
221k
  const uint16_t below_pred = left[bh - 1];  // estimated by bottom-left pixel
448
221k
  const uint8_t *const sm_weights = smooth_weights + bh - 4;
449
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
450
221k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
451
221k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
452
221k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
453
221k
                           log2_scale + sizeof(*dst));
454
455
221k
  int r;
456
3.09M
  for (r = 0; r < bh; r++) {
457
2.87M
    int c;
458
60.6M
    for (c = 0; c < bw; ++c) {
459
57.7M
      const uint16_t pixels[] = { above[c], below_pred };
460
57.7M
      const uint8_t weights[] = { sm_weights[r], scale - sm_weights[r] };
461
57.7M
      uint32_t this_pred = 0;
462
57.7M
      assert(scale >= sm_weights[r]);
463
57.7M
      int i;
464
173M
      for (i = 0; i < 2; ++i) {
465
115M
        this_pred += weights[i] * pixels[i];
466
115M
      }
467
57.7M
      dst[c] = divide_round(this_pred, log2_scale);
468
57.7M
    }
469
2.87M
    dst += stride;
470
2.87M
  }
471
221k
}
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
230k
                                             const uint16_t *left, int bd) {
477
230k
  (void)bd;
478
230k
  const uint16_t right_pred = above[bw - 1];  // estimated by top-right pixel
479
230k
  const uint8_t *const sm_weights = smooth_weights + bw - 4;
480
  // scale = 2^SMOOTH_WEIGHT_LOG2_SCALE
481
230k
  const int log2_scale = SMOOTH_WEIGHT_LOG2_SCALE;
482
230k
  const uint16_t scale = (1 << SMOOTH_WEIGHT_LOG2_SCALE);
483
230k
  sm_weights_sanity_checks(sm_weights, sm_weights, scale,
484
230k
                           log2_scale + sizeof(*dst));
485
486
230k
  int r;
487
3.20M
  for (r = 0; r < bh; r++) {
488
2.97M
    int c;
489
63.1M
    for (c = 0; c < bw; ++c) {
490
60.1M
      const uint16_t pixels[] = { left[r], right_pred };
491
60.1M
      const uint8_t weights[] = { sm_weights[c], scale - sm_weights[c] };
492
60.1M
      uint32_t this_pred = 0;
493
60.1M
      assert(scale >= sm_weights[c]);
494
60.1M
      int i;
495
180M
      for (i = 0; i < 2; ++i) {
496
120M
        this_pred += weights[i] * pixels[i];
497
120M
      }
498
60.1M
      dst[c] = divide_round(this_pred, log2_scale);
499
60.1M
    }
500
2.97M
    dst += stride;
501
2.97M
  }
502
230k
}
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
30.7k
                                           const uint16_t *left, int bd) {
508
30.7k
  int r;
509
30.7k
  (void)above;
510
30.7k
  (void)left;
511
512
902k
  for (r = 0; r < bh; r++) {
513
871k
    aom_memset16(dst, 128 << (bd - 8), bw);
514
871k
    dst += stride;
515
871k
  }
516
30.7k
}
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
133k
                                            const uint16_t *left, int bd) {
522
133k
  int i, r, expected_dc, sum = 0;
523
133k
  (void)above;
524
133k
  (void)bd;
525
526
3.58M
  for (i = 0; i < bh; i++) sum += left[i];
527
133k
  expected_dc = (sum + (bh >> 1)) / bh;
528
529
3.58M
  for (r = 0; r < bh; r++) {
530
3.45M
    aom_memset16(dst, expected_dc, bw);
531
3.45M
    dst += stride;
532
3.45M
  }
533
133k
}
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
295k
                                           const uint16_t *left, int bd) {
539
295k
  int i, r, expected_dc, sum = 0;
540
295k
  (void)left;
541
295k
  (void)bd;
542
543
5.54M
  for (i = 0; i < bw; i++) sum += above[i];
544
295k
  expected_dc = (sum + (bw >> 1)) / bw;
545
546
6.01M
  for (r = 0; r < bh; r++) {
547
5.72M
    aom_memset16(dst, expected_dc, bw);
548
5.72M
    dst += stride;
549
5.72M
  }
550
295k
}
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.02M
                                       const uint16_t *left, int bd) {
555
2.02M
  int i, r, expected_dc, sum = 0;
556
2.02M
  const int count = bw + bh;
557
2.02M
  (void)bd;
558
559
29.0M
  for (i = 0; i < bw; i++) {
560
26.9M
    sum += above[i];
561
26.9M
  }
562
29.0M
  for (i = 0; i < bh; i++) {
563
26.9M
    sum += left[i];
564
26.9M
  }
565
566
2.02M
  expected_dc = (sum + (count >> 1)) / count;
567
568
29.0M
  for (r = 0; r < bh; r++) {
569
26.9M
    aom_memset16(dst, expected_dc, bw);
570
26.9M
    dst += stride;
571
26.9M
  }
572
2.02M
}
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
701k
#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
333k
#define HIGHBD_DC_MULTIPLIER_1X4 0x6667
585
586
1.03M
#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.03M
                                            int shift1, uint32_t multiplier) {
593
1.03M
  int sum = 0;
594
1.03M
  (void)bd;
595
596
13.9M
  for (int i = 0; i < bw; i++) {
597
12.8M
    sum += above[i];
598
12.8M
  }
599
12.8M
  for (int i = 0; i < bh; i++) {
600
11.7M
    sum += left[i];
601
11.7M
  }
602
603
1.03M
  const int expected_dc = divide_using_multiply_shift(
604
1.03M
      sum + ((bw + bh) >> 1), shift1, multiplier, HIGHBD_DC_SHIFT2);
605
1.03M
  assert(expected_dc < (1 << bd));
606
607
12.8M
  for (int r = 0; r < bh; r++) {
608
11.7M
    aom_memset16(dst, expected_dc, bw);
609
11.7M
    dst += stride;
610
11.7M
  }
611
1.03M
}
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
171k
                                   int bd) {
618
171k
  highbd_dc_predictor_rect(dst, stride, 4, 8, above, left, bd, 2,
619
171k
                           HIGHBD_DC_MULTIPLIER_1X2);
620
171k
}
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
178k
                                   int bd) {
625
178k
  highbd_dc_predictor_rect(dst, stride, 8, 4, above, left, bd, 2,
626
178k
                           HIGHBD_DC_MULTIPLIER_1X2);
627
178k
}
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
75.7k
                                    int bd) {
633
75.7k
  highbd_dc_predictor_rect(dst, stride, 4, 16, above, left, bd, 2,
634
75.7k
                           HIGHBD_DC_MULTIPLIER_1X4);
635
75.7k
}
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
134k
                                    int bd) {
640
134k
  highbd_dc_predictor_rect(dst, stride, 16, 4, above, left, bd, 2,
641
134k
                           HIGHBD_DC_MULTIPLIER_1X4);
642
134k
}
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
100k
                                    int bd) {
648
100k
  highbd_dc_predictor_rect(dst, stride, 8, 16, above, left, bd, 3,
649
100k
                           HIGHBD_DC_MULTIPLIER_1X2);
650
100k
}
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
151k
                                    int bd) {
655
151k
  highbd_dc_predictor_rect(dst, stride, 16, 8, above, left, bd, 3,
656
151k
                           HIGHBD_DC_MULTIPLIER_1X2);
657
151k
}
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
56.7k
                                    int bd) {
663
56.7k
  highbd_dc_predictor_rect(dst, stride, 8, 32, above, left, bd, 3,
664
56.7k
                           HIGHBD_DC_MULTIPLIER_1X4);
665
56.7k
}
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
59.3k
                                    int bd) {
670
59.3k
  highbd_dc_predictor_rect(dst, stride, 32, 8, above, left, bd, 3,
671
59.3k
                           HIGHBD_DC_MULTIPLIER_1X4);
672
59.3k
}
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
51.1k
                                     const uint16_t *left, int bd) {
678
51.1k
  highbd_dc_predictor_rect(dst, stride, 16, 32, above, left, bd, 4,
679
51.1k
                           HIGHBD_DC_MULTIPLIER_1X2);
680
51.1k
}
681
682
void aom_highbd_dc_predictor_32x16_c(uint16_t *dst, ptrdiff_t stride,
683
                                     const uint16_t *above,
684
46.5k
                                     const uint16_t *left, int bd) {
685
46.5k
  highbd_dc_predictor_rect(dst, stride, 32, 16, above, left, bd, 4,
686
46.5k
                           HIGHBD_DC_MULTIPLIER_1X2);
687
46.5k
}
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.07k
                                     const uint16_t *left, int bd) {
693
4.07k
  highbd_dc_predictor_rect(dst, stride, 16, 64, above, left, bd, 4,
694
4.07k
                           HIGHBD_DC_MULTIPLIER_1X4);
695
4.07k
}
696
697
void aom_highbd_dc_predictor_64x16_c(uint16_t *dst, ptrdiff_t stride,
698
                                     const uint16_t *above,
699
3.06k
                                     const uint16_t *left, int bd) {
700
3.06k
  highbd_dc_predictor_rect(dst, stride, 64, 16, above, left, bd, 4,
701
3.06k
                           HIGHBD_DC_MULTIPLIER_1X4);
702
3.06k
}
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.60k
                                     const uint16_t *left, int bd) {
708
1.60k
  highbd_dc_predictor_rect(dst, stride, 32, 64, above, left, bd, 5,
709
1.60k
                           HIGHBD_DC_MULTIPLIER_1X2);
710
1.60k
}
711
712
void aom_highbd_dc_predictor_64x32_c(uint16_t *dst, ptrdiff_t stride,
713
                                     const uint16_t *above,
714
2.10k
                                     const uint16_t *left, int bd) {
715
2.10k
  highbd_dc_predictor_rect(dst, stride, 64, 32, above, left, bd, 5,
716
2.10k
                           HIGHBD_DC_MULTIPLIER_1X2);
717
2.10k
}
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
10.4M
      const uint8_t *left) {                                   \
730
10.4M
    type##_predictor(dst, stride, width, height, above, left); \
731
10.4M
  }
aom_v_predictor_4x4_c
Line
Count
Source
729
291k
      const uint8_t *left) {                                   \
730
291k
    type##_predictor(dst, stride, width, height, above, left); \
731
291k
  }
aom_v_predictor_8x8_c
Line
Count
Source
729
22.0k
      const uint8_t *left) {                                   \
730
22.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
22.0k
  }
aom_v_predictor_16x16_c
Line
Count
Source
729
15.3k
      const uint8_t *left) {                                   \
730
15.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
15.3k
  }
aom_v_predictor_32x32_c
Line
Count
Source
729
18.8k
      const uint8_t *left) {                                   \
730
18.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
18.8k
  }
aom_v_predictor_64x64_c
Line
Count
Source
729
1.24k
      const uint8_t *left) {                                   \
730
1.24k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.24k
  }
aom_v_predictor_4x8_c
Line
Count
Source
729
12.1k
      const uint8_t *left) {                                   \
730
12.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
12.1k
  }
aom_v_predictor_8x4_c
Line
Count
Source
729
17.4k
      const uint8_t *left) {                                   \
730
17.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.4k
  }
aom_v_predictor_8x16_c
Line
Count
Source
729
6.57k
      const uint8_t *left) {                                   \
730
6.57k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.57k
  }
aom_v_predictor_16x8_c
Line
Count
Source
729
9.65k
      const uint8_t *left) {                                   \
730
9.65k
    type##_predictor(dst, stride, width, height, above, left); \
731
9.65k
  }
aom_v_predictor_16x32_c
Line
Count
Source
729
3.32k
      const uint8_t *left) {                                   \
730
3.32k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.32k
  }
aom_v_predictor_32x16_c
Line
Count
Source
729
2.84k
      const uint8_t *left) {                                   \
730
2.84k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.84k
  }
aom_v_predictor_32x64_c
Line
Count
Source
729
210
      const uint8_t *left) {                                   \
730
210
    type##_predictor(dst, stride, width, height, above, left); \
731
210
  }
aom_v_predictor_64x32_c
Line
Count
Source
729
224
      const uint8_t *left) {                                   \
730
224
    type##_predictor(dst, stride, width, height, above, left); \
731
224
  }
aom_v_predictor_4x16_c
Line
Count
Source
729
4.27k
      const uint8_t *left) {                                   \
730
4.27k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.27k
  }
aom_v_predictor_16x4_c
Line
Count
Source
729
8.52k
      const uint8_t *left) {                                   \
730
8.52k
    type##_predictor(dst, stride, width, height, above, left); \
731
8.52k
  }
aom_v_predictor_8x32_c
Line
Count
Source
729
2.39k
      const uint8_t *left) {                                   \
730
2.39k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.39k
  }
aom_v_predictor_32x8_c
Line
Count
Source
729
3.53k
      const uint8_t *left) {                                   \
730
3.53k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.53k
  }
aom_v_predictor_16x64_c
Line
Count
Source
729
348
      const uint8_t *left) {                                   \
730
348
    type##_predictor(dst, stride, width, height, above, left); \
731
348
  }
aom_v_predictor_64x16_c
Line
Count
Source
729
283
      const uint8_t *left) {                                   \
730
283
    type##_predictor(dst, stride, width, height, above, left); \
731
283
  }
aom_h_predictor_4x4_c
Line
Count
Source
729
234k
      const uint8_t *left) {                                   \
730
234k
    type##_predictor(dst, stride, width, height, above, left); \
731
234k
  }
aom_h_predictor_8x8_c
Line
Count
Source
729
32.4k
      const uint8_t *left) {                                   \
730
32.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
32.4k
  }
aom_h_predictor_16x16_c
Line
Count
Source
729
25.7k
      const uint8_t *left) {                                   \
730
25.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
25.7k
  }
aom_h_predictor_32x32_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_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
19.0k
      const uint8_t *left) {                                   \
730
19.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
19.0k
  }
aom_h_predictor_8x4_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_h_predictor_8x16_c
Line
Count
Source
729
9.76k
      const uint8_t *left) {                                   \
730
9.76k
    type##_predictor(dst, stride, width, height, above, left); \
731
9.76k
  }
aom_h_predictor_16x8_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_16x32_c
Line
Count
Source
729
3.69k
      const uint8_t *left) {                                   \
730
3.69k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.69k
  }
aom_h_predictor_32x16_c
Line
Count
Source
729
4.28k
      const uint8_t *left) {                                   \
730
4.28k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.28k
  }
aom_h_predictor_32x64_c
Line
Count
Source
729
236
      const uint8_t *left) {                                   \
730
236
    type##_predictor(dst, stride, width, height, above, left); \
731
236
  }
aom_h_predictor_64x32_c
Line
Count
Source
729
314
      const uint8_t *left) {                                   \
730
314
    type##_predictor(dst, stride, width, height, above, left); \
731
314
  }
aom_h_predictor_4x16_c
Line
Count
Source
729
7.70k
      const uint8_t *left) {                                   \
730
7.70k
    type##_predictor(dst, stride, width, height, above, left); \
731
7.70k
  }
aom_h_predictor_16x4_c
Line
Count
Source
729
11.9k
      const uint8_t *left) {                                   \
730
11.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
11.9k
  }
aom_h_predictor_8x32_c
Line
Count
Source
729
3.88k
      const uint8_t *left) {                                   \
730
3.88k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.88k
  }
aom_h_predictor_32x8_c
Line
Count
Source
729
4.58k
      const uint8_t *left) {                                   \
730
4.58k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.58k
  }
aom_h_predictor_16x64_c
Line
Count
Source
729
532
      const uint8_t *left) {                                   \
730
532
    type##_predictor(dst, stride, width, height, above, left); \
731
532
  }
aom_h_predictor_64x16_c
Line
Count
Source
729
477
      const uint8_t *left) {                                   \
730
477
    type##_predictor(dst, stride, width, height, above, left); \
731
477
  }
aom_smooth_predictor_4x4_c
Line
Count
Source
729
190k
      const uint8_t *left) {                                   \
730
190k
    type##_predictor(dst, stride, width, height, above, left); \
731
190k
  }
aom_smooth_predictor_8x8_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_predictor_16x16_c
Line
Count
Source
729
60.0k
      const uint8_t *left) {                                   \
730
60.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
60.0k
  }
aom_smooth_predictor_32x32_c
Line
Count
Source
729
43.9k
      const uint8_t *left) {                                   \
730
43.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
43.9k
  }
aom_smooth_predictor_64x64_c
Line
Count
Source
729
7.55k
      const uint8_t *left) {                                   \
730
7.55k
    type##_predictor(dst, stride, width, height, above, left); \
731
7.55k
  }
aom_smooth_predictor_4x8_c
Line
Count
Source
729
32.1k
      const uint8_t *left) {                                   \
730
32.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
32.1k
  }
aom_smooth_predictor_8x4_c
Line
Count
Source
729
47.9k
      const uint8_t *left) {                                   \
730
47.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
47.9k
  }
aom_smooth_predictor_8x16_c
Line
Count
Source
729
26.3k
      const uint8_t *left) {                                   \
730
26.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
26.3k
  }
aom_smooth_predictor_16x8_c
Line
Count
Source
729
40.1k
      const uint8_t *left) {                                   \
730
40.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
40.1k
  }
aom_smooth_predictor_16x32_c
Line
Count
Source
729
9.20k
      const uint8_t *left) {                                   \
730
9.20k
    type##_predictor(dst, stride, width, height, above, left); \
731
9.20k
  }
aom_smooth_predictor_32x16_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_smooth_predictor_32x64_c
Line
Count
Source
729
799
      const uint8_t *left) {                                   \
730
799
    type##_predictor(dst, stride, width, height, above, left); \
731
799
  }
aom_smooth_predictor_64x32_c
Line
Count
Source
729
752
      const uint8_t *left) {                                   \
730
752
    type##_predictor(dst, stride, width, height, above, left); \
731
752
  }
aom_smooth_predictor_4x16_c
Line
Count
Source
729
22.7k
      const uint8_t *left) {                                   \
730
22.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
22.7k
  }
aom_smooth_predictor_16x4_c
Line
Count
Source
729
35.5k
      const uint8_t *left) {                                   \
730
35.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
35.5k
  }
aom_smooth_predictor_8x32_c
Line
Count
Source
729
9.35k
      const uint8_t *left) {                                   \
730
9.35k
    type##_predictor(dst, stride, width, height, above, left); \
731
9.35k
  }
aom_smooth_predictor_32x8_c
Line
Count
Source
729
13.0k
      const uint8_t *left) {                                   \
730
13.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.0k
  }
aom_smooth_predictor_16x64_c
Line
Count
Source
729
1.29k
      const uint8_t *left) {                                   \
730
1.29k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.29k
  }
aom_smooth_predictor_64x16_c
Line
Count
Source
729
1.03k
      const uint8_t *left) {                                   \
730
1.03k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.03k
  }
aom_smooth_v_predictor_4x4_c
Line
Count
Source
729
50.2k
      const uint8_t *left) {                                   \
730
50.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
50.2k
  }
aom_smooth_v_predictor_8x8_c
Line
Count
Source
729
36.1k
      const uint8_t *left) {                                   \
730
36.1k
    type##_predictor(dst, stride, width, height, above, left); \
731
36.1k
  }
aom_smooth_v_predictor_16x16_c
Line
Count
Source
729
16.9k
      const uint8_t *left) {                                   \
730
16.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
16.9k
  }
aom_smooth_v_predictor_32x32_c
Line
Count
Source
729
17.3k
      const uint8_t *left) {                                   \
730
17.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.3k
  }
aom_smooth_v_predictor_64x64_c
Line
Count
Source
729
2.13k
      const uint8_t *left) {                                   \
730
2.13k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.13k
  }
aom_smooth_v_predictor_4x8_c
Line
Count
Source
729
12.2k
      const uint8_t *left) {                                   \
730
12.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
12.2k
  }
aom_smooth_v_predictor_8x4_c
Line
Count
Source
729
17.9k
      const uint8_t *left) {                                   \
730
17.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.9k
  }
aom_smooth_v_predictor_8x16_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_smooth_v_predictor_16x8_c
Line
Count
Source
729
14.6k
      const uint8_t *left) {                                   \
730
14.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
14.6k
  }
aom_smooth_v_predictor_16x32_c
Line
Count
Source
729
3.54k
      const uint8_t *left) {                                   \
730
3.54k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.54k
  }
aom_smooth_v_predictor_32x16_c
Line
Count
Source
729
5.29k
      const uint8_t *left) {                                   \
730
5.29k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.29k
  }
aom_smooth_v_predictor_32x64_c
Line
Count
Source
729
270
      const uint8_t *left) {                                   \
730
270
    type##_predictor(dst, stride, width, height, above, left); \
731
270
  }
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.49k
      const uint8_t *left) {                                   \
730
8.49k
    type##_predictor(dst, stride, width, height, above, left); \
731
8.49k
  }
aom_smooth_v_predictor_16x4_c
Line
Count
Source
729
14.3k
      const uint8_t *left) {                                   \
730
14.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
14.3k
  }
aom_smooth_v_predictor_8x32_c
Line
Count
Source
729
3.60k
      const uint8_t *left) {                                   \
730
3.60k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.60k
  }
aom_smooth_v_predictor_32x8_c
Line
Count
Source
729
6.48k
      const uint8_t *left) {                                   \
730
6.48k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.48k
  }
aom_smooth_v_predictor_16x64_c
Line
Count
Source
729
299
      const uint8_t *left) {                                   \
730
299
    type##_predictor(dst, stride, width, height, above, left); \
731
299
  }
aom_smooth_v_predictor_64x16_c
Line
Count
Source
729
345
      const uint8_t *left) {                                   \
730
345
    type##_predictor(dst, stride, width, height, above, left); \
731
345
  }
aom_smooth_h_predictor_4x4_c
Line
Count
Source
729
87.6k
      const uint8_t *left) {                                   \
730
87.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
87.6k
  }
aom_smooth_h_predictor_8x8_c
Line
Count
Source
729
45.3k
      const uint8_t *left) {                                   \
730
45.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
45.3k
  }
aom_smooth_h_predictor_16x16_c
Line
Count
Source
729
34.8k
      const uint8_t *left) {                                   \
730
34.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
34.8k
  }
aom_smooth_h_predictor_32x32_c
Line
Count
Source
729
22.7k
      const uint8_t *left) {                                   \
730
22.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
22.7k
  }
aom_smooth_h_predictor_64x64_c
Line
Count
Source
729
2.54k
      const uint8_t *left) {                                   \
730
2.54k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.54k
  }
aom_smooth_h_predictor_4x8_c
Line
Count
Source
729
13.7k
      const uint8_t *left) {                                   \
730
13.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.7k
  }
aom_smooth_h_predictor_8x4_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_smooth_h_predictor_8x16_c
Line
Count
Source
729
13.7k
      const uint8_t *left) {                                   \
730
13.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
13.7k
  }
aom_smooth_h_predictor_16x8_c
Line
Count
Source
729
19.6k
      const uint8_t *left) {                                   \
730
19.6k
    type##_predictor(dst, stride, width, height, above, left); \
731
19.6k
  }
aom_smooth_h_predictor_16x32_c
Line
Count
Source
729
5.17k
      const uint8_t *left) {                                   \
730
5.17k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.17k
  }
aom_smooth_h_predictor_32x16_c
Line
Count
Source
729
5.39k
      const uint8_t *left) {                                   \
730
5.39k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.39k
  }
aom_smooth_h_predictor_32x64_c
Line
Count
Source
729
266
      const uint8_t *left) {                                   \
730
266
    type##_predictor(dst, stride, width, height, above, left); \
731
266
  }
aom_smooth_h_predictor_64x32_c
Line
Count
Source
729
267
      const uint8_t *left) {                                   \
730
267
    type##_predictor(dst, stride, width, height, above, left); \
731
267
  }
aom_smooth_h_predictor_4x16_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_h_predictor_16x4_c
Line
Count
Source
729
18.8k
      const uint8_t *left) {                                   \
730
18.8k
    type##_predictor(dst, stride, width, height, above, left); \
731
18.8k
  }
aom_smooth_h_predictor_8x32_c
Line
Count
Source
729
5.44k
      const uint8_t *left) {                                   \
730
5.44k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.44k
  }
aom_smooth_h_predictor_32x8_c
Line
Count
Source
729
6.72k
      const uint8_t *left) {                                   \
730
6.72k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.72k
  }
aom_smooth_h_predictor_16x64_c
Line
Count
Source
729
464
      const uint8_t *left) {                                   \
730
464
    type##_predictor(dst, stride, width, height, above, left); \
731
464
  }
aom_smooth_h_predictor_64x16_c
Line
Count
Source
729
276
      const uint8_t *left) {                                   \
730
276
    type##_predictor(dst, stride, width, height, above, left); \
731
276
  }
aom_paeth_predictor_4x4_c
Line
Count
Source
729
3.39M
      const uint8_t *left) {                                   \
730
3.39M
    type##_predictor(dst, stride, width, height, above, left); \
731
3.39M
  }
aom_paeth_predictor_8x8_c
Line
Count
Source
729
105k
      const uint8_t *left) {                                   \
730
105k
    type##_predictor(dst, stride, width, height, above, left); \
731
105k
  }
aom_paeth_predictor_16x16_c
Line
Count
Source
729
92.9k
      const uint8_t *left) {                                   \
730
92.9k
    type##_predictor(dst, stride, width, height, above, left); \
731
92.9k
  }
aom_paeth_predictor_32x32_c
Line
Count
Source
729
410k
      const uint8_t *left) {                                   \
730
410k
    type##_predictor(dst, stride, width, height, above, left); \
731
410k
  }
aom_paeth_predictor_64x64_c
Line
Count
Source
729
48.4k
      const uint8_t *left) {                                   \
730
48.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
48.4k
  }
aom_paeth_predictor_4x8_c
Line
Count
Source
729
40.7k
      const uint8_t *left) {                                   \
730
40.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
40.7k
  }
aom_paeth_predictor_8x4_c
Line
Count
Source
729
54.3k
      const uint8_t *left) {                                   \
730
54.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
54.3k
  }
aom_paeth_predictor_8x16_c
Line
Count
Source
729
37.0k
      const uint8_t *left) {                                   \
730
37.0k
    type##_predictor(dst, stride, width, height, above, left); \
731
37.0k
  }
aom_paeth_predictor_16x8_c
Line
Count
Source
729
53.2k
      const uint8_t *left) {                                   \
730
53.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
53.2k
  }
aom_paeth_predictor_16x32_c
Line
Count
Source
729
75.3k
      const uint8_t *left) {                                   \
730
75.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
75.3k
  }
aom_paeth_predictor_32x16_c
Line
Count
Source
729
14.4k
      const uint8_t *left) {                                   \
730
14.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
14.4k
  }
aom_paeth_predictor_32x64_c
Line
Count
Source
729
5.60k
      const uint8_t *left) {                                   \
730
5.60k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.60k
  }
aom_paeth_predictor_64x32_c
Line
Count
Source
729
1.09k
      const uint8_t *left) {                                   \
730
1.09k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.09k
  }
aom_paeth_predictor_4x16_c
Line
Count
Source
729
122k
      const uint8_t *left) {                                   \
730
122k
    type##_predictor(dst, stride, width, height, above, left); \
731
122k
  }
aom_paeth_predictor_16x4_c
Line
Count
Source
729
46.3k
      const uint8_t *left) {                                   \
730
46.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
46.3k
  }
aom_paeth_predictor_8x32_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_paeth_predictor_32x8_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_paeth_predictor_16x64_c
Line
Count
Source
729
17.7k
      const uint8_t *left) {                                   \
730
17.7k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.7k
  }
aom_paeth_predictor_64x16_c
Line
Count
Source
729
1.28k
      const uint8_t *left) {                                   \
730
1.28k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.28k
  }
aom_dc_128_predictor_4x4_c
Line
Count
Source
729
3.73k
      const uint8_t *left) {                                   \
730
3.73k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.73k
  }
aom_dc_128_predictor_8x8_c
Line
Count
Source
729
1.03k
      const uint8_t *left) {                                   \
730
1.03k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.03k
  }
aom_dc_128_predictor_16x16_c
Line
Count
Source
729
200
      const uint8_t *left) {                                   \
730
200
    type##_predictor(dst, stride, width, height, above, left); \
731
200
  }
aom_dc_128_predictor_32x32_c
Line
Count
Source
729
4.77k
      const uint8_t *left) {                                   \
730
4.77k
    type##_predictor(dst, stride, width, height, above, left); \
731
4.77k
  }
aom_dc_128_predictor_64x64_c
Line
Count
Source
729
2.07k
      const uint8_t *left) {                                   \
730
2.07k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.07k
  }
aom_dc_128_predictor_4x8_c
Line
Count
Source
729
535
      const uint8_t *left) {                                   \
730
535
    type##_predictor(dst, stride, width, height, above, left); \
731
535
  }
aom_dc_128_predictor_8x4_c
Line
Count
Source
729
36
      const uint8_t *left) {                                   \
730
36
    type##_predictor(dst, stride, width, height, above, left); \
731
36
  }
aom_dc_128_predictor_8x16_c
Line
Count
Source
729
123
      const uint8_t *left) {                                   \
730
123
    type##_predictor(dst, stride, width, height, above, left); \
731
123
  }
aom_dc_128_predictor_16x8_c
Line
Count
Source
729
1.14k
      const uint8_t *left) {                                   \
730
1.14k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.14k
  }
aom_dc_128_predictor_16x32_c
Line
Count
Source
729
1.56k
      const uint8_t *left) {                                   \
730
1.56k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.56k
  }
aom_dc_128_predictor_32x16_c
Line
Count
Source
729
1.10k
      const uint8_t *left) {                                   \
730
1.10k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.10k
  }
aom_dc_128_predictor_32x64_c
Line
Count
Source
729
210
      const uint8_t *left) {                                   \
730
210
    type##_predictor(dst, stride, width, height, above, left); \
731
210
  }
aom_dc_128_predictor_64x32_c
Line
Count
Source
729
19
      const uint8_t *left) {                                   \
730
19
    type##_predictor(dst, stride, width, height, above, left); \
731
19
  }
aom_dc_128_predictor_4x16_c
Line
Count
Source
729
139
      const uint8_t *left) {                                   \
730
139
    type##_predictor(dst, stride, width, height, above, left); \
731
139
  }
aom_dc_128_predictor_16x4_c
Line
Count
Source
729
10
      const uint8_t *left) {                                   \
730
10
    type##_predictor(dst, stride, width, height, above, left); \
731
10
  }
aom_dc_128_predictor_8x32_c
Line
Count
Source
729
104
      const uint8_t *left) {                                   \
730
104
    type##_predictor(dst, stride, width, height, above, left); \
731
104
  }
aom_dc_128_predictor_32x8_c
Line
Count
Source
729
655
      const uint8_t *left) {                                   \
730
655
    type##_predictor(dst, stride, width, height, above, left); \
731
655
  }
aom_dc_128_predictor_16x64_c
Line
Count
Source
729
30
      const uint8_t *left) {                                   \
730
30
    type##_predictor(dst, stride, width, height, above, left); \
731
30
  }
aom_dc_128_predictor_64x16_c
Line
Count
Source
729
11
      const uint8_t *left) {                                   \
730
11
    type##_predictor(dst, stride, width, height, above, left); \
731
11
  }
aom_dc_left_predictor_4x4_c
Line
Count
Source
729
93.2k
      const uint8_t *left) {                                   \
730
93.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
93.2k
  }
aom_dc_left_predictor_8x8_c
Line
Count
Source
729
3.93k
      const uint8_t *left) {                                   \
730
3.93k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.93k
  }
aom_dc_left_predictor_16x16_c
Line
Count
Source
729
6.01k
      const uint8_t *left) {                                   \
730
6.01k
    type##_predictor(dst, stride, width, height, above, left); \
731
6.01k
  }
aom_dc_left_predictor_32x32_c
Line
Count
Source
729
32.4k
      const uint8_t *left) {                                   \
730
32.4k
    type##_predictor(dst, stride, width, height, above, left); \
731
32.4k
  }
aom_dc_left_predictor_64x64_c
Line
Count
Source
729
8.57k
      const uint8_t *left) {                                   \
730
8.57k
    type##_predictor(dst, stride, width, height, above, left); \
731
8.57k
  }
aom_dc_left_predictor_4x8_c
Line
Count
Source
729
2.48k
      const uint8_t *left) {                                   \
730
2.48k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.48k
  }
aom_dc_left_predictor_8x4_c
Line
Count
Source
729
1.61k
      const uint8_t *left) {                                   \
730
1.61k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.61k
  }
aom_dc_left_predictor_8x16_c
Line
Count
Source
729
1.70k
      const uint8_t *left) {                                   \
730
1.70k
    type##_predictor(dst, stride, width, height, above, left); \
731
1.70k
  }
aom_dc_left_predictor_16x8_c
Line
Count
Source
729
2.13k
      const uint8_t *left) {                                   \
730
2.13k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.13k
  }
aom_dc_left_predictor_16x32_c
Line
Count
Source
729
2.22k
      const uint8_t *left) {                                   \
730
2.22k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.22k
  }
aom_dc_left_predictor_32x16_c
Line
Count
Source
729
2.24k
      const uint8_t *left) {                                   \
730
2.24k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.24k
  }
aom_dc_left_predictor_32x64_c
Line
Count
Source
729
411
      const uint8_t *left) {                                   \
730
411
    type##_predictor(dst, stride, width, height, above, left); \
731
411
  }
aom_dc_left_predictor_64x32_c
Line
Count
Source
729
548
      const uint8_t *left) {                                   \
730
548
    type##_predictor(dst, stride, width, height, above, left); \
731
548
  }
aom_dc_left_predictor_4x16_c
Line
Count
Source
729
2.47k
      const uint8_t *left) {                                   \
730
2.47k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.47k
  }
aom_dc_left_predictor_16x4_c
Line
Count
Source
729
983
      const uint8_t *left) {                                   \
730
983
    type##_predictor(dst, stride, width, height, above, left); \
731
983
  }
aom_dc_left_predictor_8x32_c
Line
Count
Source
729
2.71k
      const uint8_t *left) {                                   \
730
2.71k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.71k
  }
aom_dc_left_predictor_32x8_c
Line
Count
Source
729
772
      const uint8_t *left) {                                   \
730
772
    type##_predictor(dst, stride, width, height, above, left); \
731
772
  }
aom_dc_left_predictor_16x64_c
Line
Count
Source
729
701
      const uint8_t *left) {                                   \
730
701
    type##_predictor(dst, stride, width, height, above, left); \
731
701
  }
aom_dc_left_predictor_64x16_c
Line
Count
Source
729
225
      const uint8_t *left) {                                   \
730
225
    type##_predictor(dst, stride, width, height, above, left); \
731
225
  }
aom_dc_top_predictor_4x4_c
Line
Count
Source
729
113k
      const uint8_t *left) {                                   \
730
113k
    type##_predictor(dst, stride, width, height, above, left); \
731
113k
  }
aom_dc_top_predictor_8x8_c
Line
Count
Source
729
17.5k
      const uint8_t *left) {                                   \
730
17.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.5k
  }
aom_dc_top_predictor_16x16_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_dc_top_predictor_32x32_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_dc_top_predictor_64x64_c
Line
Count
Source
729
9.10k
      const uint8_t *left) {                                   \
730
9.10k
    type##_predictor(dst, stride, width, height, above, left); \
731
9.10k
  }
aom_dc_top_predictor_4x8_c
Line
Count
Source
729
47.5k
      const uint8_t *left) {                                   \
730
47.5k
    type##_predictor(dst, stride, width, height, above, left); \
731
47.5k
  }
aom_dc_top_predictor_8x4_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_dc_top_predictor_8x16_c
Line
Count
Source
729
20.3k
      const uint8_t *left) {                                   \
730
20.3k
    type##_predictor(dst, stride, width, height, above, left); \
731
20.3k
  }
aom_dc_top_predictor_16x8_c
Line
Count
Source
729
5.02k
      const uint8_t *left) {                                   \
730
5.02k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.02k
  }
aom_dc_top_predictor_16x32_c
Line
Count
Source
729
17.2k
      const uint8_t *left) {                                   \
730
17.2k
    type##_predictor(dst, stride, width, height, above, left); \
731
17.2k
  }
aom_dc_top_predictor_32x16_c
Line
Count
Source
729
5.21k
      const uint8_t *left) {                                   \
730
5.21k
    type##_predictor(dst, stride, width, height, above, left); \
731
5.21k
  }
aom_dc_top_predictor_32x64_c
Line
Count
Source
729
2.96k
      const uint8_t *left) {                                   \
730
2.96k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.96k
  }
aom_dc_top_predictor_64x32_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_top_predictor_4x16_c
Line
Count
Source
729
2.75k
      const uint8_t *left) {                                   \
730
2.75k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.75k
  }
aom_dc_top_predictor_16x4_c
Line
Count
Source
729
2.07k
      const uint8_t *left) {                                   \
730
2.07k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.07k
  }
aom_dc_top_predictor_8x32_c
Line
Count
Source
729
2.19k
      const uint8_t *left) {                                   \
730
2.19k
    type##_predictor(dst, stride, width, height, above, left); \
731
2.19k
  }
aom_dc_top_predictor_32x8_c
Line
Count
Source
729
3.00k
      const uint8_t *left) {                                   \
730
3.00k
    type##_predictor(dst, stride, width, height, above, left); \
731
3.00k
  }
aom_dc_top_predictor_16x64_c
Line
Count
Source
729
336
      const uint8_t *left) {                                   \
730
336
    type##_predictor(dst, stride, width, height, above, left); \
731
336
  }
aom_dc_top_predictor_64x16_c
Line
Count
Source
729
924
      const uint8_t *left) {                                   \
730
924
    type##_predictor(dst, stride, width, height, above, left); \
731
924
  }
aom_dc_predictor_4x4_c
Line
Count
Source
729
2.48M
      const uint8_t *left) {                                   \
730
2.48M
    type##_predictor(dst, stride, width, height, above, left); \
731
2.48M
  }
aom_dc_predictor_8x8_c
Line
Count
Source
729
305k
      const uint8_t *left) {                                   \
730
305k
    type##_predictor(dst, stride, width, height, above, left); \
731
305k
  }
aom_dc_predictor_16x16_c
Line
Count
Source
729
200k
      const uint8_t *left) {                                   \
730
200k
    type##_predictor(dst, stride, width, height, above, left); \
731
200k
  }
aom_dc_predictor_32x32_c
Line
Count
Source
729
324k
      const uint8_t *left) {                                   \
730
324k
    type##_predictor(dst, stride, width, height, above, left); \
731
324k
  }
aom_dc_predictor_64x64_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
  }
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
4.61M
      const uint16_t *left, int bd) {                                       \
738
4.61M
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.61M
  }
aom_highbd_v_predictor_4x4_c
Line
Count
Source
737
27.0k
      const uint16_t *left, int bd) {                                       \
738
27.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
27.0k
  }
aom_highbd_v_predictor_8x8_c
Line
Count
Source
737
24.7k
      const uint16_t *left, int bd) {                                       \
738
24.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
24.7k
  }
aom_highbd_v_predictor_16x16_c
Line
Count
Source
737
10.7k
      const uint16_t *left, int bd) {                                       \
738
10.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
10.7k
  }
aom_highbd_v_predictor_32x32_c
Line
Count
Source
737
18.7k
      const uint16_t *left, int bd) {                                       \
738
18.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.7k
  }
aom_highbd_v_predictor_64x64_c
Line
Count
Source
737
1.85k
      const uint16_t *left, int bd) {                                       \
738
1.85k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.85k
  }
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
14.8k
      const uint16_t *left, int bd) {                                       \
738
14.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
14.8k
  }
aom_highbd_v_predictor_8x16_c
Line
Count
Source
737
6.30k
      const uint16_t *left, int bd) {                                       \
738
6.30k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.30k
  }
aom_highbd_v_predictor_16x8_c
Line
Count
Source
737
9.65k
      const uint16_t *left, int bd) {                                       \
738
9.65k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.65k
  }
aom_highbd_v_predictor_16x32_c
Line
Count
Source
737
3.73k
      const uint16_t *left, int bd) {                                       \
738
3.73k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.73k
  }
aom_highbd_v_predictor_32x16_c
Line
Count
Source
737
3.12k
      const uint16_t *left, int bd) {                                       \
738
3.12k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.12k
  }
aom_highbd_v_predictor_32x64_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_v_predictor_64x32_c
Line
Count
Source
737
203
      const uint16_t *left, int bd) {                                       \
738
203
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
203
  }
aom_highbd_v_predictor_4x16_c
Line
Count
Source
737
3.76k
      const uint16_t *left, int bd) {                                       \
738
3.76k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.76k
  }
aom_highbd_v_predictor_16x4_c
Line
Count
Source
737
8.00k
      const uint16_t *left, int bd) {                                       \
738
8.00k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.00k
  }
aom_highbd_v_predictor_8x32_c
Line
Count
Source
737
3.01k
      const uint16_t *left, int bd) {                                       \
738
3.01k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.01k
  }
aom_highbd_v_predictor_32x8_c
Line
Count
Source
737
4.18k
      const uint16_t *left, int bd) {                                       \
738
4.18k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.18k
  }
aom_highbd_v_predictor_16x64_c
Line
Count
Source
737
526
      const uint16_t *left, int bd) {                                       \
738
526
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
526
  }
aom_highbd_v_predictor_64x16_c
Line
Count
Source
737
454
      const uint16_t *left, int bd) {                                       \
738
454
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
454
  }
aom_highbd_h_predictor_4x4_c
Line
Count
Source
737
47.9k
      const uint16_t *left, int bd) {                                       \
738
47.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
47.9k
  }
aom_highbd_h_predictor_8x8_c
Line
Count
Source
737
41.3k
      const uint16_t *left, int bd) {                                       \
738
41.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
41.3k
  }
aom_highbd_h_predictor_16x16_c
Line
Count
Source
737
20.1k
      const uint16_t *left, int bd) {                                       \
738
20.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
20.1k
  }
aom_highbd_h_predictor_32x32_c
Line
Count
Source
737
20.5k
      const uint16_t *left, int bd) {                                       \
738
20.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
20.5k
  }
aom_highbd_h_predictor_64x64_c
Line
Count
Source
737
2.06k
      const uint16_t *left, int bd) {                                       \
738
2.06k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.06k
  }
aom_highbd_h_predictor_4x8_c
Line
Count
Source
737
21.2k
      const uint16_t *left, int bd) {                                       \
738
21.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
21.2k
  }
aom_highbd_h_predictor_8x4_c
Line
Count
Source
737
28.1k
      const uint16_t *left, int bd) {                                       \
738
28.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
28.1k
  }
aom_highbd_h_predictor_8x16_c
Line
Count
Source
737
10.1k
      const uint16_t *left, int bd) {                                       \
738
10.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
10.1k
  }
aom_highbd_h_predictor_16x8_c
Line
Count
Source
737
14.7k
      const uint16_t *left, int bd) {                                       \
738
14.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
14.7k
  }
aom_highbd_h_predictor_16x32_c
Line
Count
Source
737
3.77k
      const uint16_t *left, int bd) {                                       \
738
3.77k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.77k
  }
aom_highbd_h_predictor_32x16_c
Line
Count
Source
737
4.88k
      const uint16_t *left, int bd) {                                       \
738
4.88k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.88k
  }
aom_highbd_h_predictor_32x64_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_h_predictor_64x32_c
Line
Count
Source
737
277
      const uint16_t *left, int bd) {                                       \
738
277
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
277
  }
aom_highbd_h_predictor_4x16_c
Line
Count
Source
737
6.33k
      const uint16_t *left, int bd) {                                       \
738
6.33k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.33k
  }
aom_highbd_h_predictor_16x4_c
Line
Count
Source
737
13.6k
      const uint16_t *left, int bd) {                                       \
738
13.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.6k
  }
aom_highbd_h_predictor_8x32_c
Line
Count
Source
737
4.00k
      const uint16_t *left, int bd) {                                       \
738
4.00k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.00k
  }
aom_highbd_h_predictor_32x8_c
Line
Count
Source
737
5.75k
      const uint16_t *left, int bd) {                                       \
738
5.75k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.75k
  }
aom_highbd_h_predictor_16x64_c
Line
Count
Source
737
519
      const uint16_t *left, int bd) {                                       \
738
519
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
519
  }
aom_highbd_h_predictor_64x16_c
Line
Count
Source
737
570
      const uint16_t *left, int bd) {                                       \
738
570
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
570
  }
aom_highbd_smooth_predictor_4x4_c
Line
Count
Source
737
106k
      const uint16_t *left, int bd) {                                       \
738
106k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
106k
  }
aom_highbd_smooth_predictor_8x8_c
Line
Count
Source
737
87.3k
      const uint16_t *left, int bd) {                                       \
738
87.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
87.3k
  }
aom_highbd_smooth_predictor_16x16_c
Line
Count
Source
737
42.1k
      const uint16_t *left, int bd) {                                       \
738
42.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
42.1k
  }
aom_highbd_smooth_predictor_32x32_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_smooth_predictor_64x64_c
Line
Count
Source
737
9.45k
      const uint16_t *left, int bd) {                                       \
738
9.45k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.45k
  }
aom_highbd_smooth_predictor_4x8_c
Line
Count
Source
737
28.1k
      const uint16_t *left, int bd) {                                       \
738
28.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
28.1k
  }
aom_highbd_smooth_predictor_8x4_c
Line
Count
Source
737
38.3k
      const uint16_t *left, int bd) {                                       \
738
38.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
38.3k
  }
aom_highbd_smooth_predictor_8x16_c
Line
Count
Source
737
24.3k
      const uint16_t *left, int bd) {                                       \
738
24.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
24.3k
  }
aom_highbd_smooth_predictor_16x8_c
Line
Count
Source
737
35.1k
      const uint16_t *left, int bd) {                                       \
738
35.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
35.1k
  }
aom_highbd_smooth_predictor_16x32_c
Line
Count
Source
737
10.6k
      const uint16_t *left, int bd) {                                       \
738
10.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
10.6k
  }
aom_highbd_smooth_predictor_32x16_c
Line
Count
Source
737
10.3k
      const uint16_t *left, int bd) {                                       \
738
10.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
10.3k
  }
aom_highbd_smooth_predictor_32x64_c
Line
Count
Source
737
813
      const uint16_t *left, int bd) {                                       \
738
813
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
813
  }
aom_highbd_smooth_predictor_64x32_c
Line
Count
Source
737
919
      const uint16_t *left, int bd) {                                       \
738
919
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
919
  }
aom_highbd_smooth_predictor_4x16_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_smooth_predictor_16x4_c
Line
Count
Source
737
30.9k
      const uint16_t *left, int bd) {                                       \
738
30.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
30.9k
  }
aom_highbd_smooth_predictor_8x32_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_smooth_predictor_32x8_c
Line
Count
Source
737
13.7k
      const uint16_t *left, int bd) {                                       \
738
13.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.7k
  }
aom_highbd_smooth_predictor_16x64_c
Line
Count
Source
737
1.18k
      const uint16_t *left, int bd) {                                       \
738
1.18k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.18k
  }
aom_highbd_smooth_predictor_64x16_c
Line
Count
Source
737
1.32k
      const uint16_t *left, int bd) {                                       \
738
1.32k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.32k
  }
aom_highbd_smooth_v_predictor_4x4_c
Line
Count
Source
737
29.7k
      const uint16_t *left, int bd) {                                       \
738
29.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
29.7k
  }
aom_highbd_smooth_v_predictor_8x8_c
Line
Count
Source
737
39.1k
      const uint16_t *left, int bd) {                                       \
738
39.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
39.1k
  }
aom_highbd_smooth_v_predictor_16x16_c
Line
Count
Source
737
18.3k
      const uint16_t *left, int bd) {                                       \
738
18.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.3k
  }
aom_highbd_smooth_v_predictor_32x32_c
Line
Count
Source
737
22.2k
      const uint16_t *left, int bd) {                                       \
738
22.2k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
22.2k
  }
aom_highbd_smooth_v_predictor_64x64_c
Line
Count
Source
737
2.50k
      const uint16_t *left, int bd) {                                       \
738
2.50k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.50k
  }
aom_highbd_smooth_v_predictor_4x8_c
Line
Count
Source
737
13.6k
      const uint16_t *left, int bd) {                                       \
738
13.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.6k
  }
aom_highbd_smooth_v_predictor_8x4_c
Line
Count
Source
737
17.1k
      const uint16_t *left, int bd) {                                       \
738
17.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
17.1k
  }
aom_highbd_smooth_v_predictor_8x16_c
Line
Count
Source
737
12.6k
      const uint16_t *left, int bd) {                                       \
738
12.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
12.6k
  }
aom_highbd_smooth_v_predictor_16x8_c
Line
Count
Source
737
18.8k
      const uint16_t *left, int bd) {                                       \
738
18.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.8k
  }
aom_highbd_smooth_v_predictor_16x32_c
Line
Count
Source
737
6.00k
      const uint16_t *left, int bd) {                                       \
738
6.00k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.00k
  }
aom_highbd_smooth_v_predictor_32x16_c
Line
Count
Source
737
4.76k
      const uint16_t *left, int bd) {                                       \
738
4.76k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.76k
  }
aom_highbd_smooth_v_predictor_32x64_c
Line
Count
Source
737
261
      const uint16_t *left, int bd) {                                       \
738
261
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
261
  }
aom_highbd_smooth_v_predictor_64x32_c
Line
Count
Source
737
254
      const uint16_t *left, int bd) {                                       \
738
254
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
254
  }
aom_highbd_smooth_v_predictor_4x16_c
Line
Count
Source
737
7.23k
      const uint16_t *left, int bd) {                                       \
738
7.23k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.23k
  }
aom_highbd_smooth_v_predictor_16x4_c
Line
Count
Source
737
15.0k
      const uint16_t *left, int bd) {                                       \
738
15.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
15.0k
  }
aom_highbd_smooth_v_predictor_8x32_c
Line
Count
Source
737
6.03k
      const uint16_t *left, int bd) {                                       \
738
6.03k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.03k
  }
aom_highbd_smooth_v_predictor_32x8_c
Line
Count
Source
737
7.11k
      const uint16_t *left, int bd) {                                       \
738
7.11k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.11k
  }
aom_highbd_smooth_v_predictor_16x64_c
Line
Count
Source
737
237
      const uint16_t *left, int bd) {                                       \
738
237
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
237
  }
aom_highbd_smooth_v_predictor_64x16_c
Line
Count
Source
737
378
      const uint16_t *left, int bd) {                                       \
738
378
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
378
  }
aom_highbd_smooth_h_predictor_4x4_c
Line
Count
Source
737
34.4k
      const uint16_t *left, int bd) {                                       \
738
34.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
34.4k
  }
aom_highbd_smooth_h_predictor_8x8_c
Line
Count
Source
737
46.0k
      const uint16_t *left, int bd) {                                       \
738
46.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
46.0k
  }
aom_highbd_smooth_h_predictor_16x16_c
Line
Count
Source
737
19.7k
      const uint16_t *left, int bd) {                                       \
738
19.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
19.7k
  }
aom_highbd_smooth_h_predictor_32x32_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_smooth_h_predictor_64x64_c
Line
Count
Source
737
2.52k
      const uint16_t *left, int bd) {                                       \
738
2.52k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.52k
  }
aom_highbd_smooth_h_predictor_4x8_c
Line
Count
Source
737
13.3k
      const uint16_t *left, int bd) {                                       \
738
13.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.3k
  }
aom_highbd_smooth_h_predictor_8x4_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_smooth_h_predictor_8x16_c
Line
Count
Source
737
13.0k
      const uint16_t *left, int bd) {                                       \
738
13.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.0k
  }
aom_highbd_smooth_h_predictor_16x8_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_h_predictor_16x32_c
Line
Count
Source
737
5.51k
      const uint16_t *left, int bd) {                                       \
738
5.51k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.51k
  }
aom_highbd_smooth_h_predictor_32x16_c
Line
Count
Source
737
5.27k
      const uint16_t *left, int bd) {                                       \
738
5.27k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.27k
  }
aom_highbd_smooth_h_predictor_32x64_c
Line
Count
Source
737
315
      const uint16_t *left, int bd) {                                       \
738
315
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
315
  }
aom_highbd_smooth_h_predictor_64x32_c
Line
Count
Source
737
277
      const uint16_t *left, int bd) {                                       \
738
277
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
277
  }
aom_highbd_smooth_h_predictor_4x16_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_smooth_h_predictor_16x4_c
Line
Count
Source
737
13.5k
      const uint16_t *left, int bd) {                                       \
738
13.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.5k
  }
aom_highbd_smooth_h_predictor_8x32_c
Line
Count
Source
737
5.37k
      const uint16_t *left, int bd) {                                       \
738
5.37k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.37k
  }
aom_highbd_smooth_h_predictor_32x8_c
Line
Count
Source
737
6.92k
      const uint16_t *left, int bd) {                                       \
738
6.92k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.92k
  }
aom_highbd_smooth_h_predictor_16x64_c
Line
Count
Source
737
452
      const uint16_t *left, int bd) {                                       \
738
452
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
452
  }
aom_highbd_smooth_h_predictor_64x16_c
Line
Count
Source
737
444
      const uint16_t *left, int bd) {                                       \
738
444
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
444
  }
aom_highbd_paeth_predictor_4x4_c
Line
Count
Source
737
133k
      const uint16_t *left, int bd) {                                       \
738
133k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
133k
  }
aom_highbd_paeth_predictor_8x8_c
Line
Count
Source
737
73.0k
      const uint16_t *left, int bd) {                                       \
738
73.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
73.0k
  }
aom_highbd_paeth_predictor_16x16_c
Line
Count
Source
737
39.4k
      const uint16_t *left, int bd) {                                       \
738
39.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
39.4k
  }
aom_highbd_paeth_predictor_32x32_c
Line
Count
Source
737
147k
      const uint16_t *left, int bd) {                                       \
738
147k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
147k
  }
aom_highbd_paeth_predictor_64x64_c
Line
Count
Source
737
17.6k
      const uint16_t *left, int bd) {                                       \
738
17.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
17.6k
  }
aom_highbd_paeth_predictor_4x8_c
Line
Count
Source
737
25.5k
      const uint16_t *left, int bd) {                                       \
738
25.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
25.5k
  }
aom_highbd_paeth_predictor_8x4_c
Line
Count
Source
737
33.3k
      const uint16_t *left, int bd) {                                       \
738
33.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
33.3k
  }
aom_highbd_paeth_predictor_8x16_c
Line
Count
Source
737
26.8k
      const uint16_t *left, int bd) {                                       \
738
26.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
26.8k
  }
aom_highbd_paeth_predictor_16x8_c
Line
Count
Source
737
33.5k
      const uint16_t *left, int bd) {                                       \
738
33.5k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
33.5k
  }
aom_highbd_paeth_predictor_16x32_c
Line
Count
Source
737
60.6k
      const uint16_t *left, int bd) {                                       \
738
60.6k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
60.6k
  }
aom_highbd_paeth_predictor_32x16_c
Line
Count
Source
737
9.16k
      const uint16_t *left, int bd) {                                       \
738
9.16k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
9.16k
  }
aom_highbd_paeth_predictor_32x64_c
Line
Count
Source
737
5.00k
      const uint16_t *left, int bd) {                                       \
738
5.00k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.00k
  }
aom_highbd_paeth_predictor_64x32_c
Line
Count
Source
737
934
      const uint16_t *left, int bd) {                                       \
738
934
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
934
  }
aom_highbd_paeth_predictor_4x16_c
Line
Count
Source
737
88.3k
      const uint16_t *left, int bd) {                                       \
738
88.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
88.3k
  }
aom_highbd_paeth_predictor_16x4_c
Line
Count
Source
737
28.0k
      const uint16_t *left, int bd) {                                       \
738
28.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
28.0k
  }
aom_highbd_paeth_predictor_8x32_c
Line
Count
Source
737
18.3k
      const uint16_t *left, int bd) {                                       \
738
18.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
18.3k
  }
aom_highbd_paeth_predictor_32x8_c
Line
Count
Source
737
13.4k
      const uint16_t *left, int bd) {                                       \
738
13.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.4k
  }
aom_highbd_paeth_predictor_16x64_c
Line
Count
Source
737
14.3k
      const uint16_t *left, int bd) {                                       \
738
14.3k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
14.3k
  }
aom_highbd_paeth_predictor_64x16_c
Line
Count
Source
737
1.06k
      const uint16_t *left, int bd) {                                       \
738
1.06k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.06k
  }
aom_highbd_dc_128_predictor_4x4_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_128_predictor_8x8_c
Line
Count
Source
737
2.46k
      const uint16_t *left, int bd) {                                       \
738
2.46k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.46k
  }
aom_highbd_dc_128_predictor_16x16_c
Line
Count
Source
737
1.59k
      const uint16_t *left, int bd) {                                       \
738
1.59k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.59k
  }
aom_highbd_dc_128_predictor_32x32_c
Line
Count
Source
737
11.8k
      const uint16_t *left, int bd) {                                       \
738
11.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
11.8k
  }
aom_highbd_dc_128_predictor_64x64_c
Line
Count
Source
737
4.69k
      const uint16_t *left, int bd) {                                       \
738
4.69k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.69k
  }
aom_highbd_dc_128_predictor_4x8_c
Line
Count
Source
737
524
      const uint16_t *left, int bd) {                                       \
738
524
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
524
  }
aom_highbd_dc_128_predictor_8x4_c
Line
Count
Source
737
27
      const uint16_t *left, int bd) {                                       \
738
27
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
27
  }
aom_highbd_dc_128_predictor_8x16_c
Line
Count
Source
737
208
      const uint16_t *left, int bd) {                                       \
738
208
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
208
  }
aom_highbd_dc_128_predictor_16x8_c
Line
Count
Source
737
126
      const uint16_t *left, int bd) {                                       \
738
126
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
126
  }
aom_highbd_dc_128_predictor_16x32_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_dc_128_predictor_32x16_c
Line
Count
Source
737
2.01k
      const uint16_t *left, int bd) {                                       \
738
2.01k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.01k
  }
aom_highbd_dc_128_predictor_32x64_c
Line
Count
Source
737
366
      const uint16_t *left, int bd) {                                       \
738
366
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
366
  }
aom_highbd_dc_128_predictor_64x32_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_4x16_c
Line
Count
Source
737
133
      const uint16_t *left, int bd) {                                       \
738
133
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
133
  }
aom_highbd_dc_128_predictor_16x4_c
Line
Count
Source
737
24
      const uint16_t *left, int bd) {                                       \
738
24
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
24
  }
aom_highbd_dc_128_predictor_8x32_c
Line
Count
Source
737
320
      const uint16_t *left, int bd) {                                       \
738
320
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
320
  }
aom_highbd_dc_128_predictor_32x8_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_16x64_c
Line
Count
Source
737
133
      const uint16_t *left, int bd) {                                       \
738
133
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
133
  }
aom_highbd_dc_128_predictor_64x16_c
Line
Count
Source
737
186
      const uint16_t *left, int bd) {                                       \
738
186
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
186
  }
aom_highbd_dc_left_predictor_4x4_c
Line
Count
Source
737
15.7k
      const uint16_t *left, int bd) {                                       \
738
15.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
15.7k
  }
aom_highbd_dc_left_predictor_8x8_c
Line
Count
Source
737
7.09k
      const uint16_t *left, int bd) {                                       \
738
7.09k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
7.09k
  }
aom_highbd_dc_left_predictor_16x16_c
Line
Count
Source
737
8.64k
      const uint16_t *left, int bd) {                                       \
738
8.64k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.64k
  }
aom_highbd_dc_left_predictor_32x32_c
Line
Count
Source
737
52.8k
      const uint16_t *left, int bd) {                                       \
738
52.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
52.8k
  }
aom_highbd_dc_left_predictor_64x64_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_dc_left_predictor_4x8_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_left_predictor_8x4_c
Line
Count
Source
737
2.14k
      const uint16_t *left, int bd) {                                       \
738
2.14k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.14k
  }
aom_highbd_dc_left_predictor_8x16_c
Line
Count
Source
737
2.94k
      const uint16_t *left, int bd) {                                       \
738
2.94k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.94k
  }
aom_highbd_dc_left_predictor_16x8_c
Line
Count
Source
737
5.46k
      const uint16_t *left, int bd) {                                       \
738
5.46k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.46k
  }
aom_highbd_dc_left_predictor_16x32_c
Line
Count
Source
737
4.11k
      const uint16_t *left, int bd) {                                       \
738
4.11k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.11k
  }
aom_highbd_dc_left_predictor_32x16_c
Line
Count
Source
737
4.80k
      const uint16_t *left, int bd) {                                       \
738
4.80k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.80k
  }
aom_highbd_dc_left_predictor_32x64_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_dc_left_predictor_64x32_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_dc_left_predictor_4x16_c
Line
Count
Source
737
4.43k
      const uint16_t *left, int bd) {                                       \
738
4.43k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
4.43k
  }
aom_highbd_dc_left_predictor_16x4_c
Line
Count
Source
737
984
      const uint16_t *left, int bd) {                                       \
738
984
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
984
  }
aom_highbd_dc_left_predictor_8x32_c
Line
Count
Source
737
2.94k
      const uint16_t *left, int bd) {                                       \
738
2.94k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.94k
  }
aom_highbd_dc_left_predictor_32x8_c
Line
Count
Source
737
1.44k
      const uint16_t *left, int bd) {                                       \
738
1.44k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.44k
  }
aom_highbd_dc_left_predictor_16x64_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_dc_left_predictor_64x16_c
Line
Count
Source
737
306
      const uint16_t *left, int bd) {                                       \
738
306
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
306
  }
aom_highbd_dc_top_predictor_4x4_c
Line
Count
Source
737
67.1k
      const uint16_t *left, int bd) {                                       \
738
67.1k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
67.1k
  }
aom_highbd_dc_top_predictor_8x8_c
Line
Count
Source
737
13.8k
      const uint16_t *left, int bd) {                                       \
738
13.8k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
13.8k
  }
aom_highbd_dc_top_predictor_16x16_c
Line
Count
Source
737
8.50k
      const uint16_t *left, int bd) {                                       \
738
8.50k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
8.50k
  }
aom_highbd_dc_top_predictor_32x32_c
Line
Count
Source
737
81.7k
      const uint16_t *left, int bd) {                                       \
738
81.7k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
81.7k
  }
aom_highbd_dc_top_predictor_64x64_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_dc_top_predictor_4x8_c
Line
Count
Source
737
39.4k
      const uint16_t *left, int bd) {                                       \
738
39.4k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
39.4k
  }
aom_highbd_dc_top_predictor_8x4_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_8x16_c
Line
Count
Source
737
19.0k
      const uint16_t *left, int bd) {                                       \
738
19.0k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
19.0k
  }
aom_highbd_dc_top_predictor_16x8_c
Line
Count
Source
737
3.87k
      const uint16_t *left, int bd) {                                       \
738
3.87k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.87k
  }
aom_highbd_dc_top_predictor_16x32_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_dc_top_predictor_32x16_c
Line
Count
Source
737
6.06k
      const uint16_t *left, int bd) {                                       \
738
6.06k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
6.06k
  }
aom_highbd_dc_top_predictor_32x64_c
Line
Count
Source
737
5.36k
      const uint16_t *left, int bd) {                                       \
738
5.36k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
5.36k
  }
aom_highbd_dc_top_predictor_64x32_c
Line
Count
Source
737
512
      const uint16_t *left, int bd) {                                       \
738
512
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
512
  }
aom_highbd_dc_top_predictor_4x16_c
Line
Count
Source
737
2.06k
      const uint16_t *left, int bd) {                                       \
738
2.06k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.06k
  }
aom_highbd_dc_top_predictor_16x4_c
Line
Count
Source
737
2.58k
      const uint16_t *left, int bd) {                                       \
738
2.58k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.58k
  }
aom_highbd_dc_top_predictor_8x32_c
Line
Count
Source
737
3.97k
      const uint16_t *left, int bd) {                                       \
738
3.97k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
3.97k
  }
aom_highbd_dc_top_predictor_32x8_c
Line
Count
Source
737
2.71k
      const uint16_t *left, int bd) {                                       \
738
2.71k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
2.71k
  }
aom_highbd_dc_top_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_dc_top_predictor_64x16_c
Line
Count
Source
737
1.40k
      const uint16_t *left, int bd) {                                       \
738
1.40k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
1.40k
  }
aom_highbd_dc_predictor_4x4_c
Line
Count
Source
737
997k
      const uint16_t *left, int bd) {                                       \
738
997k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
997k
  }
aom_highbd_dc_predictor_8x8_c
Line
Count
Source
737
362k
      const uint16_t *left, int bd) {                                       \
738
362k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
362k
  }
aom_highbd_dc_predictor_16x16_c
Line
Count
Source
737
163k
      const uint16_t *left, int bd) {                                       \
738
163k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
163k
  }
aom_highbd_dc_predictor_32x32_c
Line
Count
Source
737
458k
      const uint16_t *left, int bd) {                                       \
738
458k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
458k
  }
aom_highbd_dc_predictor_64x64_c
Line
Count
Source
737
43.9k
      const uint16_t *left, int bd) {                                       \
738
43.9k
    highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \
739
43.9k
  }
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