mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 11:24:05 +00:00
Fixed reconstruct_chroma() stride values
This commit is contained in:
parent
6e11eda133
commit
4027de6e1f
|
@ -1745,8 +1745,8 @@ static void reconstruct_chroma(encoder_control *encoder, cu_info *cur_cu,
|
|||
coefficient *pre_quant_coeff, coefficient *block)
|
||||
{
|
||||
int8_t width_c = LCU_WIDTH >> (depth + 1);
|
||||
int pred_stride = encoder->in.width;
|
||||
int recbase_stride = encoder->in.width;
|
||||
const int pred_stride = LCU_WIDTH;
|
||||
const int recbase_stride = LCU_WIDTH;
|
||||
|
||||
int i, y, x;
|
||||
|
||||
|
|
Loading…
Reference in a new issue