Coverage Report

Created: 2026-03-08 06:41

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/aom/av1/common/cfl.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 "av1/common/av1_common_int.h"
13
#include "av1/common/cfl.h"
14
#include "av1/common/common_data.h"
15
16
#include "config/av1_rtcd.h"
17
18
19.0k
void cfl_init(CFL_CTX *cfl, const SequenceHeader *seq_params) {
19
19.0k
  assert(block_size_wide[CFL_MAX_BLOCK_SIZE] == CFL_BUF_LINE);
20
19.0k
  assert(block_size_high[CFL_MAX_BLOCK_SIZE] == CFL_BUF_LINE);
21
22
19.0k
  memset(&cfl->recon_buf_q3, 0, sizeof(cfl->recon_buf_q3));
23
19.0k
  memset(&cfl->ac_buf_q3, 0, sizeof(cfl->ac_buf_q3));
24
19.0k
  cfl->subsampling_x = seq_params->subsampling_x;
25
19.0k
  cfl->subsampling_y = seq_params->subsampling_y;
26
19.0k
  cfl->are_parameters_computed = 0;
27
19.0k
  cfl->store_y = 0;
28
  // The DC_PRED cache is disabled by default and is only enabled in
29
  // cfl_rd_pick_alpha
30
19.0k
  cfl->use_dc_pred_cache = 0;
31
19.0k
  cfl->dc_pred_is_cached[CFL_PRED_U] = 0;
32
19.0k
  cfl->dc_pred_is_cached[CFL_PRED_V] = 0;
33
19.0k
}
34
35
void cfl_store_dc_pred(MACROBLOCKD *const xd, const uint8_t *input,
36
76.8k
                       CFL_PRED_TYPE pred_plane, int width) {
37
76.8k
  assert(pred_plane < CFL_PRED_PLANES);
38
76.8k
  assert(width <= CFL_BUF_LINE);
39
40
76.8k
  if (is_cur_buf_hbd(xd)) {
41
0
    uint16_t *const input_16 = CONVERT_TO_SHORTPTR(input);
42
0
    memcpy(xd->cfl.dc_pred_cache[pred_plane], input_16, width << 1);
43
0
    return;
44
0
  }
45
46
76.8k
  memcpy(xd->cfl.dc_pred_cache[pred_plane], input, width);
47
76.8k
}
48
49
static void cfl_load_dc_pred_lbd(const int16_t *dc_pred_cache, uint8_t *dst,
50
230k
                                 int dst_stride, int width, int height) {
51
2.48M
  for (int j = 0; j < height; j++) {
52
2.25M
    memcpy(dst, dc_pred_cache, width);
53
2.25M
    dst += dst_stride;
54
2.25M
  }
55
230k
}
56
57
static void cfl_load_dc_pred_hbd(const int16_t *dc_pred_cache, uint16_t *dst,
58
0
                                 int dst_stride, int width, int height) {
59
0
  const size_t num_bytes = width << 1;
60
0
  for (int j = 0; j < height; j++) {
61
0
    memcpy(dst, dc_pred_cache, num_bytes);
62
0
    dst += dst_stride;
63
0
  }
64
0
}
65
void cfl_load_dc_pred(MACROBLOCKD *const xd, uint8_t *dst, int dst_stride,
66
230k
                      TX_SIZE tx_size, CFL_PRED_TYPE pred_plane) {
67
230k
  const int width = tx_size_wide[tx_size];
68
230k
  const int height = tx_size_high[tx_size];
69
230k
  assert(pred_plane < CFL_PRED_PLANES);
70
230k
  assert(width <= CFL_BUF_LINE);
71
230k
  assert(height <= CFL_BUF_LINE);
72
230k
  if (is_cur_buf_hbd(xd)) {
73
0
    uint16_t *dst_16 = CONVERT_TO_SHORTPTR(dst);
74
0
    cfl_load_dc_pred_hbd(xd->cfl.dc_pred_cache[pred_plane], dst_16, dst_stride,
75
0
                         width, height);
76
0
    return;
77
0
  }
78
230k
  cfl_load_dc_pred_lbd(xd->cfl.dc_pred_cache[pred_plane], dst, dst_stride,
79
230k
                       width, height);
80
230k
}
81
82
// Due to frame boundary issues, it is possible that the total area covered by
83
// chroma exceeds that of luma. When this happens, we fill the missing pixels by
84
// repeating the last columns and/or rows.
85
630k
static INLINE void cfl_pad(CFL_CTX *cfl, int width, int height) {
86
630k
  const int diff_width = width - cfl->buf_width;
87
630k
  const int diff_height = height - cfl->buf_height;
88
89
630k
  if (diff_width > 0) {
90
43
    const int min_height = height - diff_height;
91
43
    uint16_t *recon_buf_q3 = cfl->recon_buf_q3 + (width - diff_width);
92
699
    for (int j = 0; j < min_height; j++) {
93
656
      const uint16_t last_pixel = recon_buf_q3[-1];
94
656
      assert(recon_buf_q3 + diff_width <= cfl->recon_buf_q3 + CFL_BUF_SQUARE);
95
4.62k
      for (int i = 0; i < diff_width; i++) {
96
3.96k
        recon_buf_q3[i] = last_pixel;
97
3.96k
      }
98
656
      recon_buf_q3 += CFL_BUF_LINE;
99
656
    }
100
43
    cfl->buf_width = width;
101
43
  }
102
630k
  if (diff_height > 0) {
103
567
    uint16_t *recon_buf_q3 =
104
567
        cfl->recon_buf_q3 + ((height - diff_height) * CFL_BUF_LINE);
105
2.85k
    for (int j = 0; j < diff_height; j++) {
106
2.28k
      const uint16_t *last_row_q3 = recon_buf_q3 - CFL_BUF_LINE;
107
2.28k
      assert(recon_buf_q3 + width <= cfl->recon_buf_q3 + CFL_BUF_SQUARE);
108
21.6k
      for (int i = 0; i < width; i++) {
109
19.3k
        recon_buf_q3[i] = last_row_q3[i];
110
19.3k
      }
111
2.28k
      recon_buf_q3 += CFL_BUF_LINE;
112
2.28k
    }
113
567
    cfl->buf_height = height;
114
567
  }
115
630k
}
116
117
static void subtract_average_c(const uint16_t *src, int16_t *dst, int width,
118
630k
                               int height, int round_offset, int num_pel_log2) {
119
630k
  int sum = round_offset;
120
630k
  const uint16_t *recon = src;
121
4.93M
  for (int j = 0; j < height; j++) {
122
39.4M
    for (int i = 0; i < width; i++) {
123
35.1M
      sum += recon[i];
124
35.1M
    }
125
4.30M
    recon += CFL_BUF_LINE;
126
4.30M
  }
127
630k
  const int avg = sum >> num_pel_log2;
128
4.93M
  for (int j = 0; j < height; j++) {
129
39.4M
    for (int i = 0; i < width; i++) {
130
35.1M
      dst[i] = src[i] - avg;
131
35.1M
    }
132
4.30M
    src += CFL_BUF_LINE;
133
4.30M
    dst += CFL_BUF_LINE;
134
4.30M
  }
135
630k
}
136
137
630k
CFL_SUB_AVG_FN(c)
138
139
static INLINE int cfl_idx_to_alpha(uint8_t alpha_idx, int8_t joint_sign,
140
1.49M
                                   CFL_PRED_TYPE pred_type) {
141
1.49M
  const int alpha_sign = (pred_type == CFL_PRED_U) ? CFL_SIGN_U(joint_sign)
142
1.49M
                                                   : CFL_SIGN_V(joint_sign);
143
1.49M
  if (alpha_sign == CFL_SIGN_ZERO) return 0;
144
1.07M
  const int abs_alpha_q3 =
145
1.07M
      (pred_type == CFL_PRED_U) ? CFL_IDX_U(alpha_idx) : CFL_IDX_V(alpha_idx);
146
1.07M
  return (alpha_sign == CFL_SIGN_POS) ? abs_alpha_q3 + 1 : -abs_alpha_q3 - 1;
147
1.49M
}
148
149
static INLINE void cfl_predict_lbd_c(const int16_t *ac_buf_q3, uint8_t *dst,
150
                                     int dst_stride, int alpha_q3, int width,
151
1.09M
                                     int height) {
152
9.35M
  for (int j = 0; j < height; j++) {
153
85.6M
    for (int i = 0; i < width; i++) {
154
77.3M
      dst[i] = clip_pixel(get_scaled_luma_q0(alpha_q3, ac_buf_q3[i]) + dst[i]);
155
77.3M
    }
156
8.25M
    dst += dst_stride;
157
8.25M
    ac_buf_q3 += CFL_BUF_LINE;
158
8.25M
  }
159
1.09M
}
160
161
1.09M
CFL_PREDICT_FN(c, lbd)
162
163
#if CONFIG_AV1_HIGHBITDEPTH
164
void cfl_predict_hbd_c(const int16_t *ac_buf_q3, uint16_t *dst, int dst_stride,
165
391k
                       int alpha_q3, int bit_depth, int width, int height) {
166
2.99M
  for (int j = 0; j < height; j++) {
167
23.2M
    for (int i = 0; i < width; i++) {
168
20.6M
      dst[i] = clip_pixel_highbd(
169
20.6M
          get_scaled_luma_q0(alpha_q3, ac_buf_q3[i]) + dst[i], bit_depth);
170
20.6M
    }
171
2.60M
    dst += dst_stride;
172
2.60M
    ac_buf_q3 += CFL_BUF_LINE;
173
2.60M
  }
174
391k
}
175
176
391k
CFL_PREDICT_FN(c, hbd)
177
#endif
178
179
630k
static void cfl_compute_parameters(MACROBLOCKD *const xd, TX_SIZE tx_size) {
180
630k
  CFL_CTX *const cfl = &xd->cfl;
181
  // Do not call cfl_compute_parameters multiple time on the same values.
182
630k
  assert(cfl->are_parameters_computed == 0);
183
184
630k
  cfl_pad(cfl, tx_size_wide[tx_size], tx_size_high[tx_size]);
185
630k
  cfl_get_subtract_average_fn(tx_size)(cfl->recon_buf_q3, cfl->ac_buf_q3);
186
630k
  cfl->are_parameters_computed = 1;
187
630k
}
188
189
void cfl_predict_block(MACROBLOCKD *const xd, uint8_t *dst, int dst_stride,
190
1.49M
                       TX_SIZE tx_size, int plane) {
191
1.49M
  CFL_CTX *const cfl = &xd->cfl;
192
1.49M
  MB_MODE_INFO *mbmi = xd->mi[0];
193
1.49M
  assert(is_cfl_allowed(xd));
194
195
1.49M
  if (!cfl->are_parameters_computed) cfl_compute_parameters(xd, tx_size);
196
197
1.49M
  const int alpha_q3 =
198
1.49M
      cfl_idx_to_alpha(mbmi->cfl_alpha_idx, mbmi->cfl_alpha_signs, plane - 1);
199
1.49M
  assert((tx_size_high[tx_size] - 1) * CFL_BUF_LINE + tx_size_wide[tx_size] <=
200
1.49M
         CFL_BUF_SQUARE);
201
1.49M
#if CONFIG_AV1_HIGHBITDEPTH
202
1.49M
  if (is_cur_buf_hbd(xd)) {
203
391k
    uint16_t *dst_16 = CONVERT_TO_SHORTPTR(dst);
204
391k
    cfl_get_predict_hbd_fn(tx_size)(cfl->ac_buf_q3, dst_16, dst_stride,
205
391k
                                    alpha_q3, xd->bd);
206
391k
    return;
207
391k
  }
208
1.09M
#endif
209
1.09M
  cfl_get_predict_lbd_fn(tx_size)(cfl->ac_buf_q3, dst, dst_stride, alpha_q3);
210
1.09M
}
211
212
static void cfl_luma_subsampling_420_lbd_c(const uint8_t *input,
213
                                           int input_stride,
214
                                           uint16_t *output_q3, int width,
215
1.03M
                                           int height) {
216
5.56M
  for (int j = 0; j < height; j += 2) {
217
32.2M
    for (int i = 0; i < width; i += 2) {
218
27.6M
      const int bot = i + input_stride;
219
27.6M
      output_q3[i >> 1] =
220
27.6M
          (input[i] + input[i + 1] + input[bot] + input[bot + 1]) << 1;
221
27.6M
    }
222
4.52M
    input += input_stride << 1;
223
4.52M
    output_q3 += CFL_BUF_LINE;
224
4.52M
  }
225
1.03M
}
226
227
static void cfl_luma_subsampling_422_lbd_c(const uint8_t *input,
228
                                           int input_stride,
229
                                           uint16_t *output_q3, int width,
230
0
                                           int height) {
231
0
  assert((height - 1) * CFL_BUF_LINE + width <= CFL_BUF_SQUARE);
232
0
  for (int j = 0; j < height; j++) {
233
0
    for (int i = 0; i < width; i += 2) {
234
0
      output_q3[i >> 1] = (input[i] + input[i + 1]) << 2;
235
0
    }
236
0
    input += input_stride;
237
0
    output_q3 += CFL_BUF_LINE;
238
0
  }
239
0
}
240
241
static void cfl_luma_subsampling_444_lbd_c(const uint8_t *input,
242
                                           int input_stride,
243
                                           uint16_t *output_q3, int width,
244
866
                                           int height) {
245
866
  assert((height - 1) * CFL_BUF_LINE + width <= CFL_BUF_SQUARE);
246
12.3k
  for (int j = 0; j < height; j++) {
247
160k
    for (int i = 0; i < width; i++) {
248
148k
      output_q3[i] = input[i] << 3;
249
148k
    }
250
11.5k
    input += input_stride;
251
11.5k
    output_q3 += CFL_BUF_LINE;
252
11.5k
  }
253
866
}
254
255
#if CONFIG_AV1_HIGHBITDEPTH
256
static void cfl_luma_subsampling_420_hbd_c(const uint16_t *input,
257
                                           int input_stride,
258
                                           uint16_t *output_q3, int width,
259
424k
                                           int height) {
260
2.33M
  for (int j = 0; j < height; j += 2) {
261
13.2M
    for (int i = 0; i < width; i += 2) {
262
11.3M
      const int bot = i + input_stride;
263
11.3M
      output_q3[i >> 1] =
264
11.3M
          (input[i] + input[i + 1] + input[bot] + input[bot + 1]) << 1;
265
11.3M
    }
266
1.90M
    input += input_stride << 1;
267
1.90M
    output_q3 += CFL_BUF_LINE;
268
1.90M
  }
269
424k
}
270
271
static void cfl_luma_subsampling_422_hbd_c(const uint16_t *input,
272
                                           int input_stride,
273
                                           uint16_t *output_q3, int width,
274
181
                                           int height) {
275
181
  assert((height - 1) * CFL_BUF_LINE + width <= CFL_BUF_SQUARE);
276
1.94k
  for (int j = 0; j < height; j++) {
277
18.0k
    for (int i = 0; i < width; i += 2) {
278
16.2k
      output_q3[i >> 1] = (input[i] + input[i + 1]) << 2;
279
16.2k
    }
280
1.76k
    input += input_stride;
281
1.76k
    output_q3 += CFL_BUF_LINE;
282
1.76k
  }
283
181
}
284
285
static void cfl_luma_subsampling_444_hbd_c(const uint16_t *input,
286
                                           int input_stride,
287
                                           uint16_t *output_q3, int width,
288
2.49k
                                           int height) {
289
2.49k
  assert((height - 1) * CFL_BUF_LINE + width <= CFL_BUF_SQUARE);
290
30.0k
  for (int j = 0; j < height; j++) {
291
373k
    for (int i = 0; i < width; i++) {
292
346k
      output_q3[i] = input[i] << 3;
293
346k
    }
294
27.6k
    input += input_stride;
295
27.6k
    output_q3 += CFL_BUF_LINE;
296
27.6k
  }
297
2.49k
}
298
#endif
299
300
7.31M
CFL_GET_SUBSAMPLE_FUNCTION(c)
cfl_get_luma_subsampling_420_lbd_c
Line
Count
Source
300
CFL_GET_SUBSAMPLE_FUNCTION(c)
Unexecuted instantiation: cfl_get_luma_subsampling_422_lbd_c
cfl_get_luma_subsampling_444_lbd_c
Line
Count
Source
300
CFL_GET_SUBSAMPLE_FUNCTION(c)
cfl_get_luma_subsampling_420_hbd_c
Line
Count
Source
300
CFL_GET_SUBSAMPLE_FUNCTION(c)
cfl_get_luma_subsampling_422_hbd_c
Line
Count
Source
300
CFL_GET_SUBSAMPLE_FUNCTION(c)
cfl_get_luma_subsampling_444_hbd_c
Line
Count
Source
300
CFL_GET_SUBSAMPLE_FUNCTION(c)
301
7.31M
302
7.31M
#if CONFIG_AV1_HIGHBITDEPTH
303
7.31M
static INLINE cfl_subsample_hbd_fn cfl_subsampling_hbd(TX_SIZE tx_size,
304
7.31M
                                                       int sub_x, int sub_y) {
305
427k
  if (sub_x == 1) {
306
424k
    if (sub_y == 1) {
307
424k
      return cfl_get_luma_subsampling_420_hbd(tx_size);
308
424k
    }
309
181
    return cfl_get_luma_subsampling_422_hbd(tx_size);
310
424k
  }
311
2.49k
  return cfl_get_luma_subsampling_444_hbd(tx_size);
312
427k
}
313
#endif
314
315
static INLINE cfl_subsample_lbd_fn cfl_subsampling_lbd(TX_SIZE tx_size,
316
1.03M
                                                       int sub_x, int sub_y) {
317
1.03M
  if (sub_x == 1) {
318
1.03M
    if (sub_y == 1) {
319
1.03M
      return cfl_get_luma_subsampling_420_lbd(tx_size);
320
1.03M
    }
321
0
    return cfl_get_luma_subsampling_422_lbd(tx_size);
322
1.03M
  }
323
866
  return cfl_get_luma_subsampling_444_lbd(tx_size);
324
1.03M
}
325
326
static void cfl_store(CFL_CTX *cfl, const uint8_t *input, int input_stride,
327
1.46M
                      int row, int col, TX_SIZE tx_size, int use_hbd) {
328
1.46M
  const int width = tx_size_wide[tx_size];
329
1.46M
  const int height = tx_size_high[tx_size];
330
1.46M
  const int tx_off_log2 = MI_SIZE_LOG2;
331
1.46M
  const int sub_x = cfl->subsampling_x;
332
1.46M
  const int sub_y = cfl->subsampling_y;
333
1.46M
  const int store_row = row << (tx_off_log2 - sub_y);
334
1.46M
  const int store_col = col << (tx_off_log2 - sub_x);
335
1.46M
  const int store_height = height >> sub_y;
336
1.46M
  const int store_width = width >> sub_x;
337
338
  // Invalidate current parameters
339
1.46M
  cfl->are_parameters_computed = 0;
340
341
  // Store the surface of the pixel buffer that was written to, this way we
342
  // can manage chroma overrun (e.g. when the chroma surfaces goes beyond the
343
  // frame boundary)
344
1.46M
  if (col == 0 && row == 0) {
345
1.00M
    cfl->buf_width = store_width;
346
1.00M
    cfl->buf_height = store_height;
347
1.00M
  } else {
348
461k
    cfl->buf_width = OD_MAXI(store_col + store_width, cfl->buf_width);
349
461k
    cfl->buf_height = OD_MAXI(store_row + store_height, cfl->buf_height);
350
461k
  }
351
352
  // Check that we will remain inside the pixel buffer.
353
1.46M
  assert(store_row + store_height <= CFL_BUF_LINE);
354
1.46M
  assert(store_col + store_width <= CFL_BUF_LINE);
355
356
  // Store the input into the CfL pixel buffer
357
1.46M
  uint16_t *recon_buf_q3 =
358
1.46M
      cfl->recon_buf_q3 + (store_row * CFL_BUF_LINE + store_col);
359
1.46M
#if CONFIG_AV1_HIGHBITDEPTH
360
1.46M
  if (use_hbd) {
361
427k
    cfl_subsampling_hbd(tx_size, sub_x, sub_y)(CONVERT_TO_SHORTPTR(input),
362
427k
                                               input_stride, recon_buf_q3);
363
1.03M
  } else {
364
1.03M
    cfl_subsampling_lbd(tx_size, sub_x, sub_y)(input, input_stride,
365
1.03M
                                               recon_buf_q3);
366
1.03M
  }
367
#else
368
  (void)use_hbd;
369
  cfl_subsampling_lbd(tx_size, sub_x, sub_y)(input, input_stride, recon_buf_q3);
370
#endif
371
1.46M
}
372
373
// Adjust the row and column of blocks smaller than 8X8, as chroma-referenced
374
// and non-chroma-referenced blocks are stored together in the CfL buffer.
375
static INLINE void sub8x8_adjust_offset(const CFL_CTX *cfl, int mi_row,
376
                                        int mi_col, int *row_out,
377
760k
                                        int *col_out) {
378
  // Increment row index for bottom: 8x4, 16x4 or both bottom 4x4s.
379
760k
  if ((mi_row & 0x01) && cfl->subsampling_y) {
380
133k
    assert(*row_out == 0);
381
133k
    (*row_out)++;
382
133k
  }
383
384
  // Increment col index for right: 4x8, 4x16 or both right 4x4s.
385
760k
  if ((mi_col & 0x01) && cfl->subsampling_x) {
386
106k
    assert(*col_out == 0);
387
106k
    (*col_out)++;
388
106k
  }
389
760k
}
390
391
void cfl_store_tx(MACROBLOCKD *const xd, int row, int col, TX_SIZE tx_size,
392
1.46M
                  BLOCK_SIZE bsize) {
393
1.46M
  CFL_CTX *const cfl = &xd->cfl;
394
1.46M
  struct macroblockd_plane *const pd = &xd->plane[AOM_PLANE_Y];
395
1.46M
  uint8_t *dst = &pd->dst.buf[(row * pd->dst.stride + col) << MI_SIZE_LOG2];
396
397
1.46M
  if (block_size_high[bsize] == 4 || block_size_wide[bsize] == 4) {
398
    // Only dimensions of size 4 can have an odd offset.
399
759k
    assert(!((col & 1) && tx_size_wide[tx_size] != 4));
400
759k
    assert(!((row & 1) && tx_size_high[tx_size] != 4));
401
759k
    sub8x8_adjust_offset(cfl, xd->mi_row, xd->mi_col, &row, &col);
402
759k
  }
403
1.46M
  cfl_store(cfl, dst, pd->dst.stride, row, col, tx_size, is_cur_buf_hbd(xd));
404
1.46M
}
405
406
static INLINE int max_intra_block_width(const MACROBLOCKD *xd,
407
                                        BLOCK_SIZE plane_bsize, int plane,
408
506
                                        TX_SIZE tx_size) {
409
506
  const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane)
410
506
                              << MI_SIZE_LOG2;
411
506
  return ALIGN_POWER_OF_TWO(max_blocks_wide, tx_size_wide_log2[tx_size]);
412
506
}
413
414
static INLINE int max_intra_block_height(const MACROBLOCKD *xd,
415
                                         BLOCK_SIZE plane_bsize, int plane,
416
506
                                         TX_SIZE tx_size) {
417
506
  const int max_blocks_high = max_block_high(xd, plane_bsize, plane)
418
506
                              << MI_SIZE_LOG2;
419
506
  return ALIGN_POWER_OF_TWO(max_blocks_high, tx_size_high_log2[tx_size]);
420
506
}
421
422
506
void cfl_store_block(MACROBLOCKD *const xd, BLOCK_SIZE bsize, TX_SIZE tx_size) {
423
506
  CFL_CTX *const cfl = &xd->cfl;
424
506
  struct macroblockd_plane *const pd = &xd->plane[AOM_PLANE_Y];
425
506
  int row = 0;
426
506
  int col = 0;
427
428
506
  if (block_size_high[bsize] == 4 || block_size_wide[bsize] == 4) {
429
506
    sub8x8_adjust_offset(cfl, xd->mi_row, xd->mi_col, &row, &col);
430
506
  }
431
506
  const int width = max_intra_block_width(xd, bsize, AOM_PLANE_Y, tx_size);
432
506
  const int height = max_intra_block_height(xd, bsize, AOM_PLANE_Y, tx_size);
433
506
  tx_size = get_tx_size(width, height);
434
506
  cfl_store(cfl, pd->dst.buf, pd->dst.stride, row, col, tx_size,
435
506
            is_cur_buf_hbd(xd));
436
506
}