Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/media/test-drivers/vicodec/
Dcodec-fwht.c195 static void quantize_intra(s16 *coeff, s16 *de_coeff, u16 qp) in quantize_intra() argument
201 for (i = 0; i < 8; i++, quant++, coeff++, de_coeff++) { in quantize_intra()
204 *coeff = *de_coeff = 0; in quantize_intra()
206 *de_coeff = *coeff << *quant; in quantize_intra()
221 static void quantize_inter(s16 *coeff, s16 *de_coeff, u16 qp) in quantize_inter() argument
227 for (i = 0; i < 8; i++, quant++, coeff++, de_coeff++) { in quantize_inter()
230 *coeff = *de_coeff = 0; in quantize_inter()
232 *de_coeff = *coeff << *quant; in quantize_inter()