Home
last modified time | relevance | path

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

/Linux-v6.6/drivers/media/test-drivers/vicodec/
Dcodec-fwht.c196 static void quantize_intra(s16 *coeff, s16 *de_coeff, u16 qp) in quantize_intra() argument
202 for (i = 0; i < 8; i++, quant++, coeff++, de_coeff++) { in quantize_intra()
205 *coeff = *de_coeff = 0; in quantize_intra()
207 *de_coeff = *coeff << *quant; in quantize_intra()
222 static void quantize_inter(s16 *coeff, s16 *de_coeff, u16 qp) in quantize_inter() argument
228 for (i = 0; i < 8; i++, quant++, coeff++, de_coeff++) { in quantize_inter()
231 *coeff = *de_coeff = 0; in quantize_inter()
233 *de_coeff = *coeff << *quant; in quantize_inter()