Fixed reconstruct_chroma() stride values

This commit is contained in:
Marko Viitanen 2014-02-27 16:48:51 +02:00
parent 6e11eda133
commit 4027de6e1f

View file

@ -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;