Coverage Report

Created: 2026-02-14 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/av1/common/cfl.h
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
#ifndef AOM_AV1_COMMON_CFL_H_
13
#define AOM_AV1_COMMON_CFL_H_
14
15
#include "av1/common/av1_common_int.h"
16
#include "av1/common/blockd.h"
17
18
// Can we use CfL for the current block?
19
10.3M
static inline CFL_ALLOWED_TYPE is_cfl_allowed(const MACROBLOCKD *xd) {
20
10.3M
  const MB_MODE_INFO *mbmi = xd->mi[0];
21
10.3M
  const BLOCK_SIZE bsize = mbmi->bsize;
22
10.3M
  assert(bsize < BLOCK_SIZES_ALL);
23
10.3M
  if (xd->lossless[mbmi->segment_id]) {
24
    // In lossless, CfL is available when the partition size is equal to the
25
    // transform size.
26
40.9k
    const int ssx = xd->plane[AOM_PLANE_U].subsampling_x;
27
40.9k
    const int ssy = xd->plane[AOM_PLANE_U].subsampling_y;
28
40.9k
    const int plane_bsize = get_plane_block_size(bsize, ssx, ssy);
29
40.9k
    return (CFL_ALLOWED_TYPE)(plane_bsize == BLOCK_4X4);
30
40.9k
  }
31
  // Spec: CfL is available to luma partitions lesser than or equal to 32x32
32
10.3M
  return (CFL_ALLOWED_TYPE)(block_size_wide[bsize] <= 32 &&
33
9.51M
                            block_size_high[bsize] <= 32);
34
10.3M
}
Unexecuted instantiation: decodeframe.c:is_cfl_allowed
decodemv.c:is_cfl_allowed
Line
Count
Source
19
8.02M
static inline CFL_ALLOWED_TYPE is_cfl_allowed(const MACROBLOCKD *xd) {
20
8.02M
  const MB_MODE_INFO *mbmi = xd->mi[0];
21
8.02M
  const BLOCK_SIZE bsize = mbmi->bsize;
22
8.02M
  assert(bsize < BLOCK_SIZES_ALL);
23
8.02M
  if (xd->lossless[mbmi->segment_id]) {
24
    // In lossless, CfL is available when the partition size is equal to the
25
    // transform size.
26
40.5k
    const int ssx = xd->plane[AOM_PLANE_U].subsampling_x;
27
40.5k
    const int ssy = xd->plane[AOM_PLANE_U].subsampling_y;
28
40.5k
    const int plane_bsize = get_plane_block_size(bsize, ssx, ssy);
29
40.5k
    return (CFL_ALLOWED_TYPE)(plane_bsize == BLOCK_4X4);
30
40.5k
  }
31
  // Spec: CfL is available to luma partitions lesser than or equal to 32x32
32
7.97M
  return (CFL_ALLOWED_TYPE)(block_size_wide[bsize] <= 32 &&
33
7.15M
                            block_size_high[bsize] <= 32);
34
8.02M
}
cfl.c:is_cfl_allowed
Line
Count
Source
19
2.36M
static inline CFL_ALLOWED_TYPE is_cfl_allowed(const MACROBLOCKD *xd) {
20
2.36M
  const MB_MODE_INFO *mbmi = xd->mi[0];
21
2.36M
  const BLOCK_SIZE bsize = mbmi->bsize;
22
2.36M
  assert(bsize < BLOCK_SIZES_ALL);
23
2.36M
  if (xd->lossless[mbmi->segment_id]) {
24
    // In lossless, CfL is available when the partition size is equal to the
25
    // transform size.
26
480
    const int ssx = xd->plane[AOM_PLANE_U].subsampling_x;
27
480
    const int ssy = xd->plane[AOM_PLANE_U].subsampling_y;
28
480
    const int plane_bsize = get_plane_block_size(bsize, ssx, ssy);
29
480
    return (CFL_ALLOWED_TYPE)(plane_bsize == BLOCK_4X4);
30
480
  }
31
  // Spec: CfL is available to luma partitions lesser than or equal to 32x32
32
2.36M
  return (CFL_ALLOWED_TYPE)(block_size_wide[bsize] <= 32 &&
33
2.36M
                            block_size_high[bsize] <= 32);
34
2.36M
}
Unexecuted instantiation: reconintra.c:is_cfl_allowed
Unexecuted instantiation: cfl_sse2.c:is_cfl_allowed
Unexecuted instantiation: cfl_ssse3.c:is_cfl_allowed
Unexecuted instantiation: cfl_avx2.c:is_cfl_allowed
35
36
// Do we need to save the luma pixels from the current block,
37
// for a possible future CfL prediction?
38
static inline CFL_ALLOWED_TYPE store_cfl_required(const AV1_COMMON *cm,
39
42.8M
                                                  const MACROBLOCKD *xd) {
40
42.8M
  const MB_MODE_INFO *mbmi = xd->mi[0];
41
42
42.8M
  if (cm->seq_params->monochrome) return CFL_DISALLOWED;
43
44
40.9M
  if (!xd->is_chroma_ref) {
45
    // For non-chroma-reference blocks, we should always store the luma pixels,
46
    // in case the corresponding chroma-reference block uses CfL.
47
    // Note that this can only happen for block sizes which are <8 on
48
    // their shortest side, as otherwise they would be chroma reference
49
    // blocks.
50
2.42M
    return CFL_ALLOWED;
51
2.42M
  }
52
53
  // If this block has chroma information, we know whether we're
54
  // actually going to perform a CfL prediction
55
38.5M
  return (CFL_ALLOWED_TYPE)(!is_inter_block(mbmi) &&
56
32.5M
                            mbmi->uv_mode == UV_CFL_PRED);
57
40.9M
}
decodeframe.c:store_cfl_required
Line
Count
Source
39
29.7M
                                                  const MACROBLOCKD *xd) {
40
29.7M
  const MB_MODE_INFO *mbmi = xd->mi[0];
41
42
29.7M
  if (cm->seq_params->monochrome) return CFL_DISALLOWED;
43
44
28.5M
  if (!xd->is_chroma_ref) {
45
    // For non-chroma-reference blocks, we should always store the luma pixels,
46
    // in case the corresponding chroma-reference block uses CfL.
47
    // Note that this can only happen for block sizes which are <8 on
48
    // their shortest side, as otherwise they would be chroma reference
49
    // blocks.
50
1.19M
    return CFL_ALLOWED;
51
1.19M
  }
52
53
  // If this block has chroma information, we know whether we're
54
  // actually going to perform a CfL prediction
55
27.3M
  return (CFL_ALLOWED_TYPE)(!is_inter_block(mbmi) &&
56
24.4M
                            mbmi->uv_mode == UV_CFL_PRED);
57
28.5M
}
decodemv.c:store_cfl_required
Line
Count
Source
39
13.1M
                                                  const MACROBLOCKD *xd) {
40
13.1M
  const MB_MODE_INFO *mbmi = xd->mi[0];
41
42
13.1M
  if (cm->seq_params->monochrome) return CFL_DISALLOWED;
43
44
12.3M
  if (!xd->is_chroma_ref) {
45
    // For non-chroma-reference blocks, we should always store the luma pixels,
46
    // in case the corresponding chroma-reference block uses CfL.
47
    // Note that this can only happen for block sizes which are <8 on
48
    // their shortest side, as otherwise they would be chroma reference
49
    // blocks.
50
1.22M
    return CFL_ALLOWED;
51
1.22M
  }
52
53
  // If this block has chroma information, we know whether we're
54
  // actually going to perform a CfL prediction
55
11.1M
  return (CFL_ALLOWED_TYPE)(!is_inter_block(mbmi) &&
56
8.02M
                            mbmi->uv_mode == UV_CFL_PRED);
57
12.3M
}
Unexecuted instantiation: cfl.c:store_cfl_required
Unexecuted instantiation: reconintra.c:store_cfl_required
Unexecuted instantiation: cfl_sse2.c:store_cfl_required
Unexecuted instantiation: cfl_ssse3.c:store_cfl_required
Unexecuted instantiation: cfl_avx2.c:store_cfl_required
58
59
0
static inline int get_scaled_luma_q0(int alpha_q3, int16_t pred_buf_q3) {
60
0
  int scaled_luma_q6 = alpha_q3 * pred_buf_q3;
61
0
  return ROUND_POWER_OF_TWO_SIGNED(scaled_luma_q6, 6);
62
0
}
Unexecuted instantiation: decodeframe.c:get_scaled_luma_q0
Unexecuted instantiation: decodemv.c:get_scaled_luma_q0
Unexecuted instantiation: cfl.c:get_scaled_luma_q0
Unexecuted instantiation: reconintra.c:get_scaled_luma_q0
Unexecuted instantiation: cfl_sse2.c:get_scaled_luma_q0
Unexecuted instantiation: cfl_ssse3.c:get_scaled_luma_q0
Unexecuted instantiation: cfl_avx2.c:get_scaled_luma_q0
63
64
2.36M
static inline CFL_PRED_TYPE get_cfl_pred_type(int plane) {
65
2.36M
  assert(plane > 0);
66
2.36M
  return (CFL_PRED_TYPE)(plane - 1);
67
2.36M
}
Unexecuted instantiation: decodeframe.c:get_cfl_pred_type
Unexecuted instantiation: decodemv.c:get_cfl_pred_type
Unexecuted instantiation: cfl.c:get_cfl_pred_type
reconintra.c:get_cfl_pred_type
Line
Count
Source
64
2.36M
static inline CFL_PRED_TYPE get_cfl_pred_type(int plane) {
65
2.36M
  assert(plane > 0);
66
2.36M
  return (CFL_PRED_TYPE)(plane - 1);
67
2.36M
}
Unexecuted instantiation: cfl_sse2.c:get_cfl_pred_type
Unexecuted instantiation: cfl_ssse3.c:get_cfl_pred_type
Unexecuted instantiation: cfl_avx2.c:get_cfl_pred_type
68
69
236k
static inline void clear_cfl_dc_pred_cache_flags(CFL_CTX *cfl) {
70
236k
  cfl->use_dc_pred_cache = false;
71
236k
  cfl->dc_pred_is_cached[CFL_PRED_U] = false;
72
236k
  cfl->dc_pred_is_cached[CFL_PRED_V] = false;
73
236k
}
Unexecuted instantiation: decodeframe.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: decodemv.c:clear_cfl_dc_pred_cache_flags
cfl.c:clear_cfl_dc_pred_cache_flags
Line
Count
Source
69
236k
static inline void clear_cfl_dc_pred_cache_flags(CFL_CTX *cfl) {
70
236k
  cfl->use_dc_pred_cache = false;
71
236k
  cfl->dc_pred_is_cached[CFL_PRED_U] = false;
72
  cfl->dc_pred_is_cached[CFL_PRED_V] = false;
73
236k
}
Unexecuted instantiation: reconintra.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: cfl_sse2.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: cfl_ssse3.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: cfl_avx2.c:clear_cfl_dc_pred_cache_flags
74
75
void av1_cfl_predict_block(MACROBLOCKD *const xd, uint8_t *dst, int dst_stride,
76
                           TX_SIZE tx_size, int plane);
77
78
void cfl_store_block(MACROBLOCKD *const xd, BLOCK_SIZE bsize, TX_SIZE tx_size);
79
80
void cfl_store_tx(MACROBLOCKD *const xd, int row, int col, TX_SIZE tx_size,
81
                  BLOCK_SIZE bsize);
82
83
void cfl_store_dc_pred(MACROBLOCKD *const xd, const uint8_t *input,
84
                       CFL_PRED_TYPE pred_plane, int width);
85
86
void cfl_load_dc_pred(MACROBLOCKD *const xd, uint8_t *dst, int dst_stride,
87
                      TX_SIZE tx_size, CFL_PRED_TYPE pred_plane);
88
89
// Allows the CFL_SUBSAMPLE function to switch types depending on the bitdepth.
90
#define CFL_lbd_TYPE uint8_t *cfl_type
91
#define CFL_hbd_TYPE uint16_t *cfl_type
92
93
// Declare a size-specific wrapper for the size-generic function. The compiler
94
// will inline the size generic function in here, the advantage is that the size
95
// will be constant allowing for loop unrolling and other constant propagated
96
// goodness.
97
#define CFL_SUBSAMPLE(arch, sub, bd, width, height)                       \
98
  void cfl_subsample_##bd##_##sub##_##width##x##height##_##arch(          \
99
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3);      \
100
  void cfl_subsample_##bd##_##sub##_##width##x##height##_##arch(          \
101
2.48M
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
2.48M
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
2.48M
                                               output_q3, width, height); \
104
2.48M
  }
Unexecuted instantiation: cfl_subsample_lbd_420_4x4_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x8_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_32x32_c
Unexecuted instantiation: cfl_subsample_lbd_420_4x8_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x4_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x8_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x32_c
Unexecuted instantiation: cfl_subsample_lbd_420_32x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_4x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x4_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x32_c
Unexecuted instantiation: cfl_subsample_lbd_420_32x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_4x4_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_32x32_c
Unexecuted instantiation: cfl_subsample_lbd_422_4x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x4_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x32_c
Unexecuted instantiation: cfl_subsample_lbd_422_32x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_4x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x4_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x32_c
Unexecuted instantiation: cfl_subsample_lbd_422_32x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_4x4_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_32x32_c
Unexecuted instantiation: cfl_subsample_lbd_444_4x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x4_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x32_c
Unexecuted instantiation: cfl_subsample_lbd_444_32x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_4x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x4_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x32_c
Unexecuted instantiation: cfl_subsample_lbd_444_32x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_4x4_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_32x32_c
Unexecuted instantiation: cfl_subsample_hbd_420_4x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x4_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x32_c
Unexecuted instantiation: cfl_subsample_hbd_420_32x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_4x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x4_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x32_c
Unexecuted instantiation: cfl_subsample_hbd_420_32x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_4x4_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_32x32_c
Unexecuted instantiation: cfl_subsample_hbd_422_4x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x4_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x32_c
Unexecuted instantiation: cfl_subsample_hbd_422_32x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_4x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x4_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x32_c
Unexecuted instantiation: cfl_subsample_hbd_422_32x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_4x4_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_32x32_c
Unexecuted instantiation: cfl_subsample_hbd_444_4x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x4_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x32_c
Unexecuted instantiation: cfl_subsample_hbd_444_32x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_4x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x4_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x32_c
Unexecuted instantiation: cfl_subsample_hbd_444_32x8_c
cfl_subsample_lbd_420_4x4_ssse3
Line
Count
Source
101
157k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
157k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
157k
                                               output_q3, width, height); \
104
157k
  }
cfl_subsample_lbd_420_8x8_ssse3
Line
Count
Source
101
71.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
71.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
71.8k
                                               output_q3, width, height); \
104
71.8k
  }
cfl_subsample_lbd_420_16x16_ssse3
Line
Count
Source
101
42.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
42.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
42.2k
                                               output_q3, width, height); \
104
42.2k
  }
Unexecuted instantiation: cfl_subsample_lbd_420_32x32_ssse3
cfl_subsample_lbd_420_4x8_ssse3
Line
Count
Source
101
100k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
100k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
100k
                                               output_q3, width, height); \
104
100k
  }
cfl_subsample_lbd_420_8x4_ssse3
Line
Count
Source
101
110k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
110k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
110k
                                               output_q3, width, height); \
104
110k
  }
cfl_subsample_lbd_420_8x16_ssse3
Line
Count
Source
101
20.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
20.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
20.1k
                                               output_q3, width, height); \
104
20.1k
  }
cfl_subsample_lbd_420_16x8_ssse3
Line
Count
Source
101
31.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
31.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
31.3k
                                               output_q3, width, height); \
104
31.3k
  }
cfl_subsample_lbd_420_16x32_ssse3
Line
Count
Source
101
7.01k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
7.01k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
7.01k
                                               output_q3, width, height); \
104
7.01k
  }
Unexecuted instantiation: cfl_subsample_lbd_420_32x16_ssse3
cfl_subsample_lbd_420_4x16_ssse3
Line
Count
Source
101
107k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
107k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
107k
                                               output_q3, width, height); \
104
107k
  }
cfl_subsample_lbd_420_16x4_ssse3
Line
Count
Source
101
154k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
154k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
154k
                                               output_q3, width, height); \
104
154k
  }
cfl_subsample_lbd_420_8x32_ssse3
Line
Count
Source
101
10.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
10.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
10.1k
                                               output_q3, width, height); \
104
10.1k
  }
Unexecuted instantiation: cfl_subsample_lbd_420_32x8_ssse3
cfl_subsample_lbd_422_4x4_ssse3
Line
Count
Source
101
227
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
227
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
227
                                               output_q3, width, height); \
104
227
  }
cfl_subsample_lbd_422_8x8_ssse3
Line
Count
Source
101
2.07k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
2.07k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
2.07k
                                               output_q3, width, height); \
104
2.07k
  }
cfl_subsample_lbd_422_16x16_ssse3
Line
Count
Source
101
168
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
168
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
168
                                               output_q3, width, height); \
104
168
  }
Unexecuted instantiation: cfl_subsample_lbd_422_32x32_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_4x8_ssse3
cfl_subsample_lbd_422_8x4_ssse3
Line
Count
Source
101
82
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
82
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
82
                                               output_q3, width, height); \
104
82
  }
Unexecuted instantiation: cfl_subsample_lbd_422_8x16_ssse3
cfl_subsample_lbd_422_16x8_ssse3
Line
Count
Source
101
113
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
113
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
113
                                               output_q3, width, height); \
104
113
  }
Unexecuted instantiation: cfl_subsample_lbd_422_16x32_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_32x16_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_4x16_ssse3
cfl_subsample_lbd_422_16x4_ssse3
Line
Count
Source
101
165
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
165
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
165
                                               output_q3, width, height); \
104
165
  }
Unexecuted instantiation: cfl_subsample_lbd_422_8x32_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_32x8_ssse3
cfl_subsample_lbd_444_4x4_ssse3
Line
Count
Source
101
46.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
46.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
46.3k
                                               output_q3, width, height); \
104
46.3k
  }
cfl_subsample_lbd_444_8x8_ssse3
Line
Count
Source
101
58.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
58.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
58.1k
                                               output_q3, width, height); \
104
58.1k
  }
cfl_subsample_lbd_444_16x16_ssse3
Line
Count
Source
101
34.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
34.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
34.4k
                                               output_q3, width, height); \
104
34.4k
  }
Unexecuted instantiation: cfl_subsample_lbd_444_32x32_ssse3
cfl_subsample_lbd_444_4x8_ssse3
Line
Count
Source
101
12.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
12.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
12.6k
                                               output_q3, width, height); \
104
12.6k
  }
cfl_subsample_lbd_444_8x4_ssse3
Line
Count
Source
101
19.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
19.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
19.2k
                                               output_q3, width, height); \
104
19.2k
  }
cfl_subsample_lbd_444_8x16_ssse3
Line
Count
Source
101
20.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
20.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
20.6k
                                               output_q3, width, height); \
104
20.6k
  }
cfl_subsample_lbd_444_16x8_ssse3
Line
Count
Source
101
28.9k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
28.9k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
28.9k
                                               output_q3, width, height); \
104
28.9k
  }
cfl_subsample_lbd_444_16x32_ssse3
Line
Count
Source
101
8.21k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
8.21k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
8.21k
                                               output_q3, width, height); \
104
8.21k
  }
Unexecuted instantiation: cfl_subsample_lbd_444_32x16_ssse3
cfl_subsample_lbd_444_4x16_ssse3
Line
Count
Source
101
27.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
27.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
27.5k
                                               output_q3, width, height); \
104
27.5k
  }
cfl_subsample_lbd_444_16x4_ssse3
Line
Count
Source
101
36.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
36.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
36.0k
                                               output_q3, width, height); \
104
36.0k
  }
cfl_subsample_lbd_444_8x32_ssse3
Line
Count
Source
101
14.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
14.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
14.3k
                                               output_q3, width, height); \
104
14.3k
  }
Unexecuted instantiation: cfl_subsample_lbd_444_32x8_ssse3
cfl_subsample_hbd_420_4x4_ssse3
Line
Count
Source
101
148k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
148k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
148k
                                               output_q3, width, height); \
104
148k
  }
cfl_subsample_hbd_420_8x8_ssse3
Line
Count
Source
101
62.9k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
62.9k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
62.9k
                                               output_q3, width, height); \
104
62.9k
  }
cfl_subsample_hbd_420_16x16_ssse3
Line
Count
Source
101
31.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
31.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
31.3k
                                               output_q3, width, height); \
104
31.3k
  }
Unexecuted instantiation: cfl_subsample_hbd_420_32x32_ssse3
cfl_subsample_hbd_420_4x8_ssse3
Line
Count
Source
101
98.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
98.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
98.2k
                                               output_q3, width, height); \
104
98.2k
  }
cfl_subsample_hbd_420_8x4_ssse3
Line
Count
Source
101
133k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
133k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
133k
                                               output_q3, width, height); \
104
133k
  }
cfl_subsample_hbd_420_8x16_ssse3
Line
Count
Source
101
12.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
12.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
12.6k
                                               output_q3, width, height); \
104
12.6k
  }
cfl_subsample_hbd_420_16x8_ssse3
Line
Count
Source
101
27.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
27.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
27.3k
                                               output_q3, width, height); \
104
27.3k
  }
cfl_subsample_hbd_420_16x32_ssse3
Line
Count
Source
101
4.53k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
4.53k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
4.53k
                                               output_q3, width, height); \
104
4.53k
  }
Unexecuted instantiation: cfl_subsample_hbd_420_32x16_ssse3
cfl_subsample_hbd_420_4x16_ssse3
Line
Count
Source
101
125k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
125k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
125k
                                               output_q3, width, height); \
104
125k
  }
cfl_subsample_hbd_420_16x4_ssse3
Line
Count
Source
101
179k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
179k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
179k
                                               output_q3, width, height); \
104
179k
  }
cfl_subsample_hbd_420_8x32_ssse3
Line
Count
Source
101
7.95k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
7.95k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
7.95k
                                               output_q3, width, height); \
104
7.95k
  }
Unexecuted instantiation: cfl_subsample_hbd_420_32x8_ssse3
cfl_subsample_hbd_422_4x4_ssse3
Line
Count
Source
101
1.12k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
1.12k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
1.12k
                                               output_q3, width, height); \
104
1.12k
  }
cfl_subsample_hbd_422_8x8_ssse3
Line
Count
Source
101
143
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
143
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
143
                                               output_q3, width, height); \
104
143
  }
cfl_subsample_hbd_422_16x16_ssse3
Line
Count
Source
101
25
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
25
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
25
                                               output_q3, width, height); \
104
25
  }
Unexecuted instantiation: cfl_subsample_hbd_422_32x32_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_4x8_ssse3
cfl_subsample_hbd_422_8x4_ssse3
Line
Count
Source
101
117
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
117
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
117
                                               output_q3, width, height); \
104
117
  }
Unexecuted instantiation: cfl_subsample_hbd_422_8x16_ssse3
cfl_subsample_hbd_422_16x8_ssse3
Line
Count
Source
101
85
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
85
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
85
                                               output_q3, width, height); \
104
85
  }
Unexecuted instantiation: cfl_subsample_hbd_422_16x32_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_32x16_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_4x16_ssse3
cfl_subsample_hbd_422_16x4_ssse3
Line
Count
Source
101
46
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
46
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
46
                                               output_q3, width, height); \
104
46
  }
Unexecuted instantiation: cfl_subsample_hbd_422_8x32_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_32x8_ssse3
cfl_subsample_hbd_444_4x4_ssse3
Line
Count
Source
101
65.9k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
65.9k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
65.9k
                                               output_q3, width, height); \
104
65.9k
  }
cfl_subsample_hbd_444_8x8_ssse3
Line
Count
Source
101
83.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
83.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
83.1k
                                               output_q3, width, height); \
104
83.1k
  }
cfl_subsample_hbd_444_16x16_ssse3
Line
Count
Source
101
33.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
33.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
33.0k
                                               output_q3, width, height); \
104
33.0k
  }
Unexecuted instantiation: cfl_subsample_hbd_444_32x32_ssse3
cfl_subsample_hbd_444_4x8_ssse3
Line
Count
Source
101
19.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
19.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
19.6k
                                               output_q3, width, height); \
104
19.6k
  }
cfl_subsample_hbd_444_8x4_ssse3
Line
Count
Source
101
32.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
32.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
32.8k
                                               output_q3, width, height); \
104
32.8k
  }
cfl_subsample_hbd_444_8x16_ssse3
Line
Count
Source
101
28.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
28.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
28.1k
                                               output_q3, width, height); \
104
28.1k
  }
cfl_subsample_hbd_444_16x8_ssse3
Line
Count
Source
101
34.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
34.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
34.6k
                                               output_q3, width, height); \
104
34.6k
  }
cfl_subsample_hbd_444_16x32_ssse3
Line
Count
Source
101
7.43k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
7.43k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
7.43k
                                               output_q3, width, height); \
104
7.43k
  }
Unexecuted instantiation: cfl_subsample_hbd_444_32x16_ssse3
cfl_subsample_hbd_444_4x16_ssse3
Line
Count
Source
101
31.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
31.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
31.4k
                                               output_q3, width, height); \
104
31.4k
  }
cfl_subsample_hbd_444_16x4_ssse3
Line
Count
Source
101
30.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
30.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
30.3k
                                               output_q3, width, height); \
104
30.3k
  }
cfl_subsample_hbd_444_8x32_ssse3
Line
Count
Source
101
13.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
13.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
13.4k
                                               output_q3, width, height); \
104
13.4k
  }
Unexecuted instantiation: cfl_subsample_hbd_444_32x8_ssse3
cfl_subsample_lbd_420_32x32_avx2
Line
Count
Source
101
21.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
21.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
21.5k
                                               output_q3, width, height); \
104
21.5k
  }
cfl_subsample_lbd_420_32x16_avx2
Line
Count
Source
101
7.28k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
7.28k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
7.28k
                                               output_q3, width, height); \
104
7.28k
  }
cfl_subsample_lbd_420_32x8_avx2
Line
Count
Source
101
12.7k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
12.7k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
12.7k
                                               output_q3, width, height); \
104
12.7k
  }
cfl_subsample_lbd_422_32x32_avx2
Line
Count
Source
101
393
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
393
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
393
                                               output_q3, width, height); \
104
393
  }
cfl_subsample_lbd_422_32x16_avx2
Line
Count
Source
101
71
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
71
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
71
                                               output_q3, width, height); \
104
71
  }
cfl_subsample_lbd_422_32x8_avx2
Line
Count
Source
101
476
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
476
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
476
                                               output_q3, width, height); \
104
476
  }
cfl_subsample_lbd_444_32x32_avx2
Line
Count
Source
101
13.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
13.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
13.1k
                                               output_q3, width, height); \
104
13.1k
  }
cfl_subsample_lbd_444_32x16_avx2
Line
Count
Source
101
6.58k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
6.58k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
6.58k
                                               output_q3, width, height); \
104
6.58k
  }
cfl_subsample_lbd_444_32x8_avx2
Line
Count
Source
101
13.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
13.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
13.2k
                                               output_q3, width, height); \
104
13.2k
  }
cfl_subsample_hbd_420_32x32_avx2
Line
Count
Source
101
17.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
17.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
17.3k
                                               output_q3, width, height); \
104
17.3k
  }
cfl_subsample_hbd_420_32x16_avx2
Line
Count
Source
101
6.04k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
6.04k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
6.04k
                                               output_q3, width, height); \
104
6.04k
  }
cfl_subsample_hbd_420_32x8_avx2
Line
Count
Source
101
9.95k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
9.95k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
9.95k
                                               output_q3, width, height); \
104
9.95k
  }
cfl_subsample_hbd_422_32x32_avx2
Line
Count
Source
101
13
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
13
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
13
                                               output_q3, width, height); \
104
13
  }
cfl_subsample_hbd_422_32x16_avx2
Line
Count
Source
101
50
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
50
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
50
                                               output_q3, width, height); \
104
50
  }
cfl_subsample_hbd_422_32x8_avx2
Line
Count
Source
101
52
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
52
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
52
                                               output_q3, width, height); \
104
52
  }
cfl_subsample_hbd_444_32x32_avx2
Line
Count
Source
101
14.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
14.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
14.8k
                                               output_q3, width, height); \
104
14.8k
  }
cfl_subsample_hbd_444_32x16_avx2
Line
Count
Source
101
9.76k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
9.76k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
9.76k
                                               output_q3, width, height); \
104
9.76k
  }
cfl_subsample_hbd_444_32x8_avx2
Line
Count
Source
101
13.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
13.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
13.6k
                                               output_q3, width, height); \
104
13.6k
  }
105
106
// Declare size-specific wrappers for all valid CfL sizes.
107
#define CFL_SUBSAMPLE_FUNCTIONS(arch, sub, bd)                            \
108
  CFL_SUBSAMPLE(arch, sub, bd, 4, 4)                                      \
109
  CFL_SUBSAMPLE(arch, sub, bd, 8, 8)                                      \
110
  CFL_SUBSAMPLE(arch, sub, bd, 16, 16)                                    \
111
  CFL_SUBSAMPLE(arch, sub, bd, 32, 32)                                    \
112
  CFL_SUBSAMPLE(arch, sub, bd, 4, 8)                                      \
113
  CFL_SUBSAMPLE(arch, sub, bd, 8, 4)                                      \
114
  CFL_SUBSAMPLE(arch, sub, bd, 8, 16)                                     \
115
  CFL_SUBSAMPLE(arch, sub, bd, 16, 8)                                     \
116
  CFL_SUBSAMPLE(arch, sub, bd, 16, 32)                                    \
117
  CFL_SUBSAMPLE(arch, sub, bd, 32, 16)                                    \
118
  CFL_SUBSAMPLE(arch, sub, bd, 4, 16)                                     \
119
  CFL_SUBSAMPLE(arch, sub, bd, 16, 4)                                     \
120
  CFL_SUBSAMPLE(arch, sub, bd, 8, 32)                                     \
121
  CFL_SUBSAMPLE(arch, sub, bd, 32, 8)                                     \
122
  cfl_subsample_##bd##_fn cfl_get_luma_subsampling_##sub##_##bd##_##arch( \
123
0
      TX_SIZE tx_size) {                                                  \
124
0
    CFL_SUBSAMPLE_FUNCTION_ARRAY(arch, sub, bd)                           \
125
0
    return subfn_##sub[tx_size];                                          \
126
0
  }
127
128
// Declare an architecture-specific array of function pointers for size-specific
129
// wrappers.
130
#define CFL_SUBSAMPLE_FUNCTION_ARRAY(arch, sub, bd)                           \
131
0
  static const cfl_subsample_##bd##_fn subfn_##sub[TX_SIZES_ALL] = {          \
132
0
    cfl_subsample_##bd##_##sub##_4x4_##arch,   /* 4x4 */                      \
133
0
    cfl_subsample_##bd##_##sub##_8x8_##arch,   /* 8x8 */                      \
134
0
    cfl_subsample_##bd##_##sub##_16x16_##arch, /* 16x16 */                    \
135
0
    cfl_subsample_##bd##_##sub##_32x32_##arch, /* 32x32 */                    \
136
0
    NULL,                                      /* 64x64 (invalid CFL size) */ \
137
0
    cfl_subsample_##bd##_##sub##_4x8_##arch,   /* 4x8 */                      \
138
0
    cfl_subsample_##bd##_##sub##_8x4_##arch,   /* 8x4 */                      \
139
0
    cfl_subsample_##bd##_##sub##_8x16_##arch,  /* 8x16 */                     \
140
0
    cfl_subsample_##bd##_##sub##_16x8_##arch,  /* 16x8 */                     \
141
0
    cfl_subsample_##bd##_##sub##_16x32_##arch, /* 16x32 */                    \
142
0
    cfl_subsample_##bd##_##sub##_32x16_##arch, /* 32x16 */                    \
143
0
    NULL,                                      /* 32x64 (invalid CFL size) */ \
144
0
    NULL,                                      /* 64x32 (invalid CFL size) */ \
145
0
    cfl_subsample_##bd##_##sub##_4x16_##arch,  /* 4x16  */                    \
146
0
    cfl_subsample_##bd##_##sub##_16x4_##arch,  /* 16x4  */                    \
147
0
    cfl_subsample_##bd##_##sub##_8x32_##arch,  /* 8x32  */                    \
148
0
    cfl_subsample_##bd##_##sub##_32x8_##arch,  /* 32x8  */                    \
149
0
    NULL,                                      /* 16x64 (invalid CFL size) */ \
150
0
    NULL,                                      /* 64x16 (invalid CFL size) */ \
151
0
  };
152
153
// The RTCD script does not support passing in an array, so we wrap it in this
154
// function.
155
#if CONFIG_AV1_HIGHBITDEPTH
156
#define CFL_GET_SUBSAMPLE_FUNCTION(arch)  \
157
  CFL_SUBSAMPLE_FUNCTIONS(arch, 420, lbd) \
158
  CFL_SUBSAMPLE_FUNCTIONS(arch, 422, lbd) \
159
  CFL_SUBSAMPLE_FUNCTIONS(arch, 444, lbd) \
160
  CFL_SUBSAMPLE_FUNCTIONS(arch, 420, hbd) \
161
  CFL_SUBSAMPLE_FUNCTIONS(arch, 422, hbd) \
162
  CFL_SUBSAMPLE_FUNCTIONS(arch, 444, hbd)
163
#else
164
#define CFL_GET_SUBSAMPLE_FUNCTION(arch)  \
165
  CFL_SUBSAMPLE_FUNCTIONS(arch, 420, lbd) \
166
  CFL_SUBSAMPLE_FUNCTIONS(arch, 422, lbd) \
167
  CFL_SUBSAMPLE_FUNCTIONS(arch, 444, lbd)
168
#endif
169
170
// Declare a size-specific wrapper for the size-generic function. The compiler
171
// will inline the size generic function in here, the advantage is that the size
172
// will be constant allowing for loop unrolling and other constant propagated
173
// goodness.
174
#define CFL_SUB_AVG_X(arch, width, height, round_offset, num_pel_log2)       \
175
  void cfl_subtract_average_##width##x##height##_##arch(const uint16_t *src, \
176
                                                        int16_t *dst);       \
177
  void cfl_subtract_average_##width##x##height##_##arch(const uint16_t *src, \
178
1.18M
                                                        int16_t *dst) {      \
179
1.18M
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
1.18M
                            num_pel_log2);                                   \
181
1.18M
  }
Unexecuted instantiation: cfl_subtract_average_4x4_c
Unexecuted instantiation: cfl_subtract_average_4x8_c
Unexecuted instantiation: cfl_subtract_average_4x16_c
Unexecuted instantiation: cfl_subtract_average_8x4_c
Unexecuted instantiation: cfl_subtract_average_8x8_c
Unexecuted instantiation: cfl_subtract_average_8x16_c
Unexecuted instantiation: cfl_subtract_average_8x32_c
Unexecuted instantiation: cfl_subtract_average_16x4_c
Unexecuted instantiation: cfl_subtract_average_16x8_c
Unexecuted instantiation: cfl_subtract_average_16x16_c
Unexecuted instantiation: cfl_subtract_average_16x32_c
Unexecuted instantiation: cfl_subtract_average_32x8_c
Unexecuted instantiation: cfl_subtract_average_32x16_c
Unexecuted instantiation: cfl_subtract_average_32x32_c
cfl_subtract_average_4x4_sse2
Line
Count
Source
178
223k
                                                        int16_t *dst) {      \
179
223k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
223k
                            num_pel_log2);                                   \
181
223k
  }
cfl_subtract_average_4x8_sse2
Line
Count
Source
178
87.0k
                                                        int16_t *dst) {      \
179
87.0k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
87.0k
                            num_pel_log2);                                   \
181
87.0k
  }
cfl_subtract_average_4x16_sse2
Line
Count
Source
178
81.0k
                                                        int16_t *dst) {      \
179
81.0k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
81.0k
                            num_pel_log2);                                   \
181
81.0k
  }
cfl_subtract_average_8x4_sse2
Line
Count
Source
178
139k
                                                        int16_t *dst) {      \
179
139k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
139k
                            num_pel_log2);                                   \
181
139k
  }
cfl_subtract_average_8x8_sse2
Line
Count
Source
178
190k
                                                        int16_t *dst) {      \
179
190k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
190k
                            num_pel_log2);                                   \
181
190k
  }
cfl_subtract_average_8x16_sse2
Line
Count
Source
178
61.4k
                                                        int16_t *dst) {      \
179
61.4k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
61.4k
                            num_pel_log2);                                   \
181
61.4k
  }
cfl_subtract_average_8x32_sse2
Line
Count
Source
178
29.1k
                                                        int16_t *dst) {      \
179
29.1k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
29.1k
                            num_pel_log2);                                   \
181
29.1k
  }
Unexecuted instantiation: cfl_subtract_average_16x4_sse2
Unexecuted instantiation: cfl_subtract_average_16x8_sse2
Unexecuted instantiation: cfl_subtract_average_16x16_sse2
Unexecuted instantiation: cfl_subtract_average_16x32_sse2
Unexecuted instantiation: cfl_subtract_average_32x8_sse2
Unexecuted instantiation: cfl_subtract_average_32x16_sse2
Unexecuted instantiation: cfl_subtract_average_32x32_sse2
cfl_subtract_average_16x4_avx2
Line
Count
Source
178
92.3k
                                                        int16_t *dst) {      \
179
92.3k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
92.3k
                            num_pel_log2);                                   \
181
92.3k
  }
cfl_subtract_average_16x8_avx2
Line
Count
Source
178
79.2k
                                                        int16_t *dst) {      \
179
79.2k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
79.2k
                            num_pel_log2);                                   \
181
79.2k
  }
cfl_subtract_average_16x16_avx2
Line
Count
Source
178
110k
                                                        int16_t *dst) {      \
179
110k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
110k
                            num_pel_log2);                                   \
181
110k
  }
cfl_subtract_average_16x32_avx2
Line
Count
Source
178
16.5k
                                                        int16_t *dst) {      \
179
16.5k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
16.5k
                            num_pel_log2);                                   \
181
16.5k
  }
cfl_subtract_average_32x8_avx2
Line
Count
Source
178
27.2k
                                                        int16_t *dst) {      \
179
27.2k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
27.2k
                            num_pel_log2);                                   \
181
27.2k
  }
cfl_subtract_average_32x16_avx2
Line
Count
Source
178
16.4k
                                                        int16_t *dst) {      \
179
16.4k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
16.4k
                            num_pel_log2);                                   \
181
16.4k
  }
cfl_subtract_average_32x32_avx2
Line
Count
Source
178
28.4k
                                                        int16_t *dst) {      \
179
28.4k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
28.4k
                            num_pel_log2);                                   \
181
28.4k
  }
182
183
// Declare size-specific wrappers for all valid CfL sizes.
184
#define CFL_SUB_AVG_FN(arch)                                              \
185
  CFL_SUB_AVG_X(arch, 4, 4, 8, 4)                                         \
186
  CFL_SUB_AVG_X(arch, 4, 8, 16, 5)                                        \
187
  CFL_SUB_AVG_X(arch, 4, 16, 32, 6)                                       \
188
  CFL_SUB_AVG_X(arch, 8, 4, 16, 5)                                        \
189
  CFL_SUB_AVG_X(arch, 8, 8, 32, 6)                                        \
190
  CFL_SUB_AVG_X(arch, 8, 16, 64, 7)                                       \
191
  CFL_SUB_AVG_X(arch, 8, 32, 128, 8)                                      \
192
  CFL_SUB_AVG_X(arch, 16, 4, 32, 6)                                       \
193
  CFL_SUB_AVG_X(arch, 16, 8, 64, 7)                                       \
194
  CFL_SUB_AVG_X(arch, 16, 16, 128, 8)                                     \
195
  CFL_SUB_AVG_X(arch, 16, 32, 256, 9)                                     \
196
  CFL_SUB_AVG_X(arch, 32, 8, 128, 8)                                      \
197
  CFL_SUB_AVG_X(arch, 32, 16, 256, 9)                                     \
198
  CFL_SUB_AVG_X(arch, 32, 32, 512, 10)                                    \
199
  cfl_subtract_average_fn cfl_get_subtract_average_fn_##arch(             \
200
0
      TX_SIZE tx_size) {                                                  \
201
0
    static const cfl_subtract_average_fn sub_avg[TX_SIZES_ALL] = {        \
202
0
      cfl_subtract_average_4x4_##arch,   /* 4x4 */                        \
203
0
      cfl_subtract_average_8x8_##arch,   /* 8x8 */                        \
204
0
      cfl_subtract_average_16x16_##arch, /* 16x16 */                      \
205
0
      cfl_subtract_average_32x32_##arch, /* 32x32 */                      \
206
0
      NULL,                              /* 64x64 (invalid CFL size) */   \
207
0
      cfl_subtract_average_4x8_##arch,   /* 4x8 */                        \
208
0
      cfl_subtract_average_8x4_##arch,   /* 8x4 */                        \
209
0
      cfl_subtract_average_8x16_##arch,  /* 8x16 */                       \
210
0
      cfl_subtract_average_16x8_##arch,  /* 16x8 */                       \
211
0
      cfl_subtract_average_16x32_##arch, /* 16x32 */                      \
212
0
      cfl_subtract_average_32x16_##arch, /* 32x16 */                      \
213
0
      NULL,                              /* 32x64 (invalid CFL size) */   \
214
0
      NULL,                              /* 64x32 (invalid CFL size) */   \
215
0
      cfl_subtract_average_4x16_##arch,  /* 4x16 (invalid CFL size) */    \
216
0
      cfl_subtract_average_16x4_##arch,  /* 16x4 (invalid CFL size) */    \
217
0
      cfl_subtract_average_8x32_##arch,  /* 8x32 (invalid CFL size) */    \
218
0
      cfl_subtract_average_32x8_##arch,  /* 32x8 (invalid CFL size) */    \
219
0
      NULL,                              /* 16x64 (invalid CFL size) */   \
220
0
      NULL,                              /* 64x16 (invalid CFL size) */   \
221
0
    };                                                                    \
222
0
    /* Modulo TX_SIZES_ALL to ensure that an attacker won't be able to */ \
223
0
    /* index the function pointer array out of bounds. */                 \
224
0
    return sub_avg[tx_size % TX_SIZES_ALL];                               \
225
0
  }
226
227
#define CFL_PREDICT_lbd(arch, width, height)                                   \
228
  void cfl_predict_lbd_##width##x##height##_##arch(                            \
229
      const int16_t *pred_buf_q3, uint8_t *dst, int dst_stride, int alpha_q3); \
230
  void cfl_predict_lbd_##width##x##height##_##arch(                            \
231
      const int16_t *pred_buf_q3, uint8_t *dst, int dst_stride,                \
232
1.19M
      int alpha_q3) {                                                          \
233
1.19M
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
1.19M
                           height);                                            \
235
1.19M
  }
Unexecuted instantiation: cfl_predict_lbd_4x4_c
Unexecuted instantiation: cfl_predict_lbd_4x8_c
Unexecuted instantiation: cfl_predict_lbd_4x16_c
Unexecuted instantiation: cfl_predict_lbd_8x4_c
Unexecuted instantiation: cfl_predict_lbd_8x8_c
Unexecuted instantiation: cfl_predict_lbd_8x16_c
Unexecuted instantiation: cfl_predict_lbd_8x32_c
Unexecuted instantiation: cfl_predict_lbd_16x4_c
Unexecuted instantiation: cfl_predict_lbd_16x8_c
Unexecuted instantiation: cfl_predict_lbd_16x16_c
Unexecuted instantiation: cfl_predict_lbd_16x32_c
Unexecuted instantiation: cfl_predict_lbd_32x8_c
Unexecuted instantiation: cfl_predict_lbd_32x16_c
Unexecuted instantiation: cfl_predict_lbd_32x32_c
cfl_predict_lbd_4x4_ssse3
Line
Count
Source
232
235k
      int alpha_q3) {                                                          \
233
235k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
235k
                           height);                                            \
235
235k
  }
cfl_predict_lbd_4x8_ssse3
Line
Count
Source
232
93.5k
      int alpha_q3) {                                                          \
233
93.5k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
93.5k
                           height);                                            \
235
93.5k
  }
cfl_predict_lbd_4x16_ssse3
Line
Count
Source
232
77.8k
      int alpha_q3) {                                                          \
233
77.8k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
77.8k
                           height);                                            \
235
77.8k
  }
cfl_predict_lbd_8x4_ssse3
Line
Count
Source
232
137k
      int alpha_q3) {                                                          \
233
137k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
137k
                           height);                                            \
235
137k
  }
cfl_predict_lbd_8x8_ssse3
Line
Count
Source
232
191k
      int alpha_q3) {                                                          \
233
191k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
191k
                           height);                                            \
235
191k
  }
cfl_predict_lbd_8x16_ssse3
Line
Count
Source
232
56.5k
      int alpha_q3) {                                                          \
233
56.5k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
56.5k
                           height);                                            \
235
56.5k
  }
cfl_predict_lbd_8x32_ssse3
Line
Count
Source
232
29.0k
      int alpha_q3) {                                                          \
233
29.0k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
29.0k
                           height);                                            \
235
29.0k
  }
cfl_predict_lbd_16x4_ssse3
Line
Count
Source
232
98.3k
      int alpha_q3) {                                                          \
233
98.3k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
98.3k
                           height);                                            \
235
98.3k
  }
cfl_predict_lbd_16x8_ssse3
Line
Count
Source
232
74.9k
      int alpha_q3) {                                                          \
233
74.9k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
74.9k
                           height);                                            \
235
74.9k
  }
cfl_predict_lbd_16x16_ssse3
Line
Count
Source
232
114k
      int alpha_q3) {                                                          \
233
114k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
114k
                           height);                                            \
235
114k
  }
cfl_predict_lbd_16x32_ssse3
Line
Count
Source
232
17.3k
      int alpha_q3) {                                                          \
233
17.3k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
17.3k
                           height);                                            \
235
17.3k
  }
Unexecuted instantiation: cfl_predict_lbd_32x8_ssse3
Unexecuted instantiation: cfl_predict_lbd_32x16_ssse3
Unexecuted instantiation: cfl_predict_lbd_32x32_ssse3
cfl_predict_lbd_32x8_avx2
Line
Count
Source
232
26.5k
      int alpha_q3) {                                                          \
233
26.5k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
26.5k
                           height);                                            \
235
26.5k
  }
cfl_predict_lbd_32x16_avx2
Line
Count
Source
232
13.2k
      int alpha_q3) {                                                          \
233
13.2k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
13.2k
                           height);                                            \
235
13.2k
  }
cfl_predict_lbd_32x32_avx2
Line
Count
Source
232
26.5k
      int alpha_q3) {                                                          \
233
26.5k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
26.5k
                           height);                                            \
235
26.5k
  }
236
237
#if CONFIG_AV1_HIGHBITDEPTH
238
#define CFL_PREDICT_hbd(arch, width, height)                                   \
239
  void cfl_predict_hbd_##width##x##height##_##arch(                            \
240
      const int16_t *pred_buf_q3, uint16_t *dst, int dst_stride, int alpha_q3, \
241
      int bd);                                                                 \
242
  void cfl_predict_hbd_##width##x##height##_##arch(                            \
243
      const int16_t *pred_buf_q3, uint16_t *dst, int dst_stride, int alpha_q3, \
244
1.17M
      int bd) {                                                                \
245
1.17M
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
1.17M
                           height);                                            \
247
1.17M
  }
Unexecuted instantiation: cfl_predict_hbd_4x4_c
Unexecuted instantiation: cfl_predict_hbd_4x8_c
Unexecuted instantiation: cfl_predict_hbd_4x16_c
Unexecuted instantiation: cfl_predict_hbd_8x4_c
Unexecuted instantiation: cfl_predict_hbd_8x8_c
Unexecuted instantiation: cfl_predict_hbd_8x16_c
Unexecuted instantiation: cfl_predict_hbd_8x32_c
Unexecuted instantiation: cfl_predict_hbd_16x4_c
Unexecuted instantiation: cfl_predict_hbd_16x8_c
Unexecuted instantiation: cfl_predict_hbd_16x16_c
Unexecuted instantiation: cfl_predict_hbd_16x32_c
Unexecuted instantiation: cfl_predict_hbd_32x8_c
Unexecuted instantiation: cfl_predict_hbd_32x16_c
Unexecuted instantiation: cfl_predict_hbd_32x32_c
cfl_predict_hbd_4x4_ssse3
Line
Count
Source
244
211k
      int bd) {                                                                \
245
211k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
211k
                           height);                                            \
247
211k
  }
cfl_predict_hbd_4x8_ssse3
Line
Count
Source
244
80.5k
      int bd) {                                                                \
245
80.5k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
80.5k
                           height);                                            \
247
80.5k
  }
cfl_predict_hbd_4x16_ssse3
Line
Count
Source
244
84.1k
      int bd) {                                                                \
245
84.1k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
84.1k
                           height);                                            \
247
84.1k
  }
cfl_predict_hbd_8x4_ssse3
Line
Count
Source
244
141k
      int bd) {                                                                \
245
141k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
141k
                           height);                                            \
247
141k
  }
cfl_predict_hbd_8x8_ssse3
Line
Count
Source
244
190k
      int bd) {                                                                \
245
190k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
190k
                           height);                                            \
247
190k
  }
cfl_predict_hbd_8x16_ssse3
Line
Count
Source
244
66.3k
      int bd) {                                                                \
245
66.3k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
66.3k
                           height);                                            \
247
66.3k
  }
cfl_predict_hbd_8x32_ssse3
Line
Count
Source
244
29.1k
      int bd) {                                                                \
245
29.1k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
29.1k
                           height);                                            \
247
29.1k
  }
Unexecuted instantiation: cfl_predict_hbd_16x4_ssse3
Unexecuted instantiation: cfl_predict_hbd_16x8_ssse3
Unexecuted instantiation: cfl_predict_hbd_16x16_ssse3
Unexecuted instantiation: cfl_predict_hbd_16x32_ssse3
Unexecuted instantiation: cfl_predict_hbd_32x8_ssse3
Unexecuted instantiation: cfl_predict_hbd_32x16_ssse3
Unexecuted instantiation: cfl_predict_hbd_32x32_ssse3
cfl_predict_hbd_16x4_avx2
Line
Count
Source
244
86.3k
      int bd) {                                                                \
245
86.3k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
86.3k
                           height);                                            \
247
86.3k
  }
cfl_predict_hbd_16x8_avx2
Line
Count
Source
244
83.6k
      int bd) {                                                                \
245
83.6k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
83.6k
                           height);                                            \
247
83.6k
  }
cfl_predict_hbd_16x16_avx2
Line
Count
Source
244
106k
      int bd) {                                                                \
245
106k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
106k
                           height);                                            \
247
106k
  }
cfl_predict_hbd_16x32_avx2
Line
Count
Source
244
15.7k
      int bd) {                                                                \
245
15.7k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
15.7k
                           height);                                            \
247
15.7k
  }
cfl_predict_hbd_32x8_avx2
Line
Count
Source
244
27.7k
      int bd) {                                                                \
245
27.7k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
27.7k
                           height);                                            \
247
27.7k
  }
cfl_predict_hbd_32x16_avx2
Line
Count
Source
244
19.7k
      int bd) {                                                                \
245
19.7k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
19.7k
                           height);                                            \
247
19.7k
  }
cfl_predict_hbd_32x32_avx2
Line
Count
Source
244
30.2k
      int bd) {                                                                \
245
30.2k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
30.2k
                           height);                                            \
247
30.2k
  }
248
#endif
249
250
// This wrapper exists because clang format does not like calling macros with
251
// lowercase letters.
252
#define CFL_PREDICT_X(arch, width, height, bd) \
253
  CFL_PREDICT_##bd(arch, width, height)
254
255
#define CFL_PREDICT_FN(arch, bd)                                            \
256
  CFL_PREDICT_X(arch, 4, 4, bd)                                             \
257
  CFL_PREDICT_X(arch, 4, 8, bd)                                             \
258
  CFL_PREDICT_X(arch, 4, 16, bd)                                            \
259
  CFL_PREDICT_X(arch, 8, 4, bd)                                             \
260
  CFL_PREDICT_X(arch, 8, 8, bd)                                             \
261
  CFL_PREDICT_X(arch, 8, 16, bd)                                            \
262
  CFL_PREDICT_X(arch, 8, 32, bd)                                            \
263
  CFL_PREDICT_X(arch, 16, 4, bd)                                            \
264
  CFL_PREDICT_X(arch, 16, 8, bd)                                            \
265
  CFL_PREDICT_X(arch, 16, 16, bd)                                           \
266
  CFL_PREDICT_X(arch, 16, 32, bd)                                           \
267
  CFL_PREDICT_X(arch, 32, 8, bd)                                            \
268
  CFL_PREDICT_X(arch, 32, 16, bd)                                           \
269
  CFL_PREDICT_X(arch, 32, 32, bd)                                           \
270
0
  cfl_predict_##bd##_fn cfl_get_predict_##bd##_fn_##arch(TX_SIZE tx_size) { \
271
0
    static const cfl_predict_##bd##_fn pred[TX_SIZES_ALL] = {               \
272
0
      cfl_predict_##bd##_4x4_##arch,   /* 4x4 */                            \
273
0
      cfl_predict_##bd##_8x8_##arch,   /* 8x8 */                            \
274
0
      cfl_predict_##bd##_16x16_##arch, /* 16x16 */                          \
275
0
      cfl_predict_##bd##_32x32_##arch, /* 32x32 */                          \
276
0
      NULL,                            /* 64x64 (invalid CFL size) */       \
277
0
      cfl_predict_##bd##_4x8_##arch,   /* 4x8 */                            \
278
0
      cfl_predict_##bd##_8x4_##arch,   /* 8x4 */                            \
279
0
      cfl_predict_##bd##_8x16_##arch,  /* 8x16 */                           \
280
0
      cfl_predict_##bd##_16x8_##arch,  /* 16x8 */                           \
281
0
      cfl_predict_##bd##_16x32_##arch, /* 16x32 */                          \
282
0
      cfl_predict_##bd##_32x16_##arch, /* 32x16 */                          \
283
0
      NULL,                            /* 32x64 (invalid CFL size) */       \
284
0
      NULL,                            /* 64x32 (invalid CFL size) */       \
285
0
      cfl_predict_##bd##_4x16_##arch,  /* 4x16  */                          \
286
0
      cfl_predict_##bd##_16x4_##arch,  /* 16x4  */                          \
287
0
      cfl_predict_##bd##_8x32_##arch,  /* 8x32  */                          \
288
0
      cfl_predict_##bd##_32x8_##arch,  /* 32x8  */                          \
289
0
      NULL,                            /* 16x64 (invalid CFL size) */       \
290
0
      NULL,                            /* 64x16 (invalid CFL size) */       \
291
0
    };                                                                      \
292
0
    /* Modulo TX_SIZES_ALL to ensure that an attacker won't be able to */   \
293
0
    /* index the function pointer array out of bounds. */                   \
294
0
    return pred[tx_size % TX_SIZES_ALL];                                    \
295
0
  }
296
297
#endif  // AOM_AV1_COMMON_CFL_H_