quantize 378 libavcodec/aptx.c int32_t cw = ((channel->quantize[0].quantized_sample & 3) << 0) + quantize 379 libavcodec/aptx.c ((channel->quantize[1].quantized_sample & 2) << 1) + quantize 380 libavcodec/aptx.c ((channel->quantize[2].quantized_sample & 1) << 3); quantize 502 libavcodec/aptx.c channel->quantize[subband].quantized_sample, quantize 89 libavcodec/aptx.h Quantize quantize[NB_SUBBANDS]; quantize 197 libavcodec/aptx.h parity ^= channel->quantize[subband].quantized_sample; quantize 91 libavcodec/aptxdec.c channel->quantize[0].quantized_sample = sign_extend(codeword >> 0, 7); quantize 92 libavcodec/aptxdec.c channel->quantize[1].quantized_sample = sign_extend(codeword >> 7, 4); quantize 93 libavcodec/aptxdec.c channel->quantize[2].quantized_sample = sign_extend(codeword >> 11, 2); quantize 94 libavcodec/aptxdec.c channel->quantize[3].quantized_sample = sign_extend(codeword >> 13, 3); quantize 95 libavcodec/aptxdec.c channel->quantize[3].quantized_sample = (channel->quantize[3].quantized_sample & ~1) quantize 101 libavcodec/aptxdec.c channel->quantize[0].quantized_sample = sign_extend(codeword >> 0, 9); quantize 102 libavcodec/aptxdec.c channel->quantize[1].quantized_sample = sign_extend(codeword >> 9, 6); quantize 103 libavcodec/aptxdec.c channel->quantize[2].quantized_sample = sign_extend(codeword >> 15, 4); quantize 104 libavcodec/aptxdec.c channel->quantize[3].quantized_sample = sign_extend(codeword >> 19, 5); quantize 105 libavcodec/aptxdec.c channel->quantize[3].quantized_sample = (channel->quantize[3].quantized_sample & ~1) quantize 95 libavcodec/aptxenc.c static void aptx_quantize_difference(Quantize *quantize, quantize 122 libavcodec/aptxenc.c quantize->error = FFABS(rshift64(error, 23)); quantize 131 libavcodec/aptxenc.c quantize->quantized_sample = quantized_sample ^ inv; quantize 132 libavcodec/aptxenc.c quantize->quantized_sample_parity_change = parity_change ^ inv; quantize 143 libavcodec/aptxenc.c aptx_quantize_difference(&channel->quantize[subband], diff, quantize 156 libavcodec/aptxenc.c Quantize *min = &channels[NB_CHANNELS-1].quantize[map[0]]; quantize 159 libavcodec/aptxenc.c if (c->quantize[map[i]].error < min->error) quantize 160 libavcodec/aptxenc.c min = &c->quantize[map[i]]; quantize 171 libavcodec/aptxenc.c return (((channel->quantize[3].quantized_sample & 0x06) | parity) << 13) quantize 172 libavcodec/aptxenc.c | (((channel->quantize[2].quantized_sample & 0x03) ) << 11) quantize 173 libavcodec/aptxenc.c | (((channel->quantize[1].quantized_sample & 0x0F) ) << 7) quantize 174 libavcodec/aptxenc.c | (((channel->quantize[0].quantized_sample & 0x7F) ) << 0); quantize 180 libavcodec/aptxenc.c return (((channel->quantize[3].quantized_sample & 0x01E) | parity) << 19) quantize 181 libavcodec/aptxenc.c | (((channel->quantize[2].quantized_sample & 0x00F) ) << 15) quantize 182 libavcodec/aptxenc.c | (((channel->quantize[1].quantized_sample & 0x03F) ) << 9) quantize 183 libavcodec/aptxenc.c | (((channel->quantize[0].quantized_sample & 0x1FF) ) << 0); quantize 906 libavcodec/cinepakenc.c info.v1_size = quantize(s, h, data, linesize, 1, quantize 920 libavcodec/cinepakenc.c info.v4_size = quantize(s, h, data, linesize, 0, quantize 938 libavcodec/cinepakenc.c new_v1_size = quantize(s, h, data, linesize, 1, &info, ENC_V1); quantize 943 libavcodec/cinepakenc.c new_v4_size = quantize(s, h, data, linesize, 0, &info, ENC_V4); quantize 959 libavcodec/cinepakenc.c new_v1_size = quantize(s, h, data, linesize, 1, &info, ENC_V1); quantize 965 libavcodec/cinepakenc.c new_v4_size = quantize(s, h, data, linesize, 0, &info, ENC_V4); quantize 473 libavcodec/ra144enc.c energy = ff_energy_tab[quantize(ff_t_sqrt(energy >> 5) >> 10, ff_energy_tab, quantize 500 libavcodec/ra144enc.c idx = quantize(lpc_refl[i], ff_lpc_refl_cb[i], sizes[i]); quantize 513 libavcodec/ra144enc.c put_bits(&pb, 5, quantize(energy, ff_energy_tab, 32)); quantize 1815 libavcodec/snowenc.c quantize(s, b, b->ibuf, b->buf, b->stride, s->qbias); quantize 73 libavresample/dither.c void (*quantize)(int16_t *dst, const float *src, float *dither, int len); quantize 231 libavresample/dither.c c->quantize(dst[ch], src[ch], quantize 285 libavresample/dither.c c->quantize = c->ddsp.quantize; quantize 288 libavresample/dither.c c->quantize = quantize_c; quantize 332 libavresample/dither.c ddsp->quantize = quantize_c; quantize 38 libavresample/dither.h void (*quantize)(int16_t *dst, const float *src, float *dither, int len); quantize 40 libavresample/x86/dither_init.c ddsp->quantize = ff_quantize_sse2;