Searched refs:qlp_coeff (Results 1 – 6 of 6) sorted by relevance
/external/flac/libFLAC/ |
D | lpc.c | 167 …nst FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], int *shift) in FLAC__lpc_quantize_coefficients() argument 227 qlp_coeff[i] = q; in FLAC__lpc_quantize_coefficients() 255 qlp_coeff[i] = q; in FLAC__lpc_quantize_coefficients() 268 …lac_restrict data, unsigned data_len, const FLAC__int32 * flac_restrict qlp_coeff, unsigned order,… in FLAC__lpc_compute_residual_from_qlp_coefficients() argument 279 fprintf(stderr,", q[%u]=%d",i,qlp_coeff[i]); in FLAC__lpc_compute_residual_from_qlp_coefficients() 289 sum += qlp_coeff[j] * (*(--history)); in FLAC__lpc_compute_residual_from_qlp_coefficients() 290 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history); in FLAC__lpc_compute_residual_from_qlp_coefficients() 292 …coefficients: OVERFLOW, i=%u, j=%u, c=%d, d=%d, sumo=%" PRId64 "\n",i,j,qlp_coeff[j],*history,sumo… in FLAC__lpc_compute_residual_from_qlp_coefficients() 325 sum += qlp_coeff[11] * data[i-12]; 326 sum += qlp_coeff[10] * data[i-11]; [all …]
|
D | stream_encoder.c | 360 …ficients)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 361 …ts_64bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 362 …ts_16bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 3777 …FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; /* WATCHOUT: the size is important; some x86 intrinsic… in evaluate_lpc_subframe_() local 3789 …ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, qlp_coeff, &quantizati… in evaluate_lpc_subframe_() 3795 …te_residual_from_qlp_coefficients_16bit(signal+order, residual_samples, qlp_coeff, order, quantiza… in evaluate_lpc_subframe_() 3797 …_compute_residual_from_qlp_coefficients(signal+order, residual_samples, qlp_coeff, order, quantiza… in evaluate_lpc_subframe_() 3799 …te_residual_from_qlp_coefficients_64bit(signal+order, residual_samples, qlp_coeff, order, quantiza… in evaluate_lpc_subframe_() 3828 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER); in evaluate_lpc_subframe_()
|
D | stream_decoder.c | 140 …nal)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 142 …bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 144 …bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 2682 subframe->qlp_coeff[u] = i32; in read_subframe_lpc_() 2724 …al[channel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe… in read_subframe_lpc_() 2726 …al[channel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe… in read_subframe_lpc_() 2728 …al[channel], decoder->private_->frame.header.blocksize-order, subframe->qlp_coeff, order, subframe… in read_subframe_lpc_()
|
D | stream_encoder_framing.c | 432 if(!FLAC__bitwriter_write_raw_int32(bw, subframe->qlp_coeff[i], subframe->qlp_coeff_precision)) in FLAC__subframe_add_lpc()
|
/external/flac/libFLAC/include/private/ |
D | lpc.h | 139 …st FLAC__real lp_coeff[], unsigned order, unsigned precision, FLAC__int32 qlp_coeff[], int *shift); 154 …fficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 155 …ents_wide(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 159 …_asm_ia32(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 160 …_ia32_mmx(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 161 …_asm_ia32(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 166 …trin_sse2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 167 …trin_sse2(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 170 …rin_sse41(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… 171 …rin_sse41(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned orde… [all …]
|
/external/flac/include/FLAC/ |
D | format.h | 328 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER]; member
|