Home
last modified time | relevance | path

Searched refs:alf_coeff (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/external/mpp/mpp/codec/dec/avs2/
H A Davs2d_ps.c402 static MPP_RET read_pic_alf_coeff(BitReadCtx_t *bitctx, RK_S32 *alf_coeff) in read_pic_alf_coeff() argument
409 READ_SE(bitctx, &alf_coeff[j]); in read_pic_alf_coeff()
410 if ((j <= 7 && (alf_coeff[j] < -64 || alf_coeff[j] > 63)) || in read_pic_alf_coeff()
411 (j == 8 && (alf_coeff[j] < -1088 || alf_coeff[j] > 1071))) { in read_pic_alf_coeff()
413 mpp_err_f("invalid alf coeff(%d).\n", alf_coeff[j]); in read_pic_alf_coeff()
418 alf_sum += (2 * alf_coeff[j]); //!< avs2 9.12.2 in read_pic_alf_coeff()
421 alf_coeff[8] += (64 - alf_sum); in read_pic_alf_coeff()