Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dg711.c2155 #define QUANT_MASK (0xf) /* Quantization field mask. */ macro
2228 aval |= (pcm_val >> 1) & QUANT_MASK; in sox_13linear2alaw()
2230 aval |= (pcm_val >> seg) & QUANT_MASK; in sox_13linear2alaw()
2247 t = (a_val & QUANT_MASK) << 4; in sox_alaw2linear16()
2357 t = ((u_val & QUANT_MASK) << 3) + BIAS; in sox_ulaw2linear16()
/OK3568_Linux_fs/kernel/sound/core/oss/
H A Dmulaw.c30 #define QUANT_MASK (0xf) /* Quantization field mask. */ macro
131 t = ((u_val & QUANT_MASK) << 3) + BIAS; in ulaw2linear()