mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Fixed stride values in transform_chroma()
This commit is contained in:
parent
4027de6e1f
commit
0a6d9bda41
|
@ -1711,8 +1711,8 @@ static void transform_chroma(encoder_control *encoder, cu_info *cur_cu,
|
|||
coefficient *coeff_u, int8_t scan_idx_chroma,
|
||||
coefficient *pre_quant_coeff, coefficient *block)
|
||||
{
|
||||
int base_stride = encoder->in.width;
|
||||
int pred_stride = encoder->in.width;
|
||||
int base_stride = LCU_WIDTH;
|
||||
int pred_stride = LCU_WIDTH;
|
||||
|
||||
int8_t width_c = LCU_WIDTH >> (depth + 1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue